From 2f27f7b3a49628c2384655d93e1d9e2444c59e91 Mon Sep 17 00:00:00 2001 From: Piotr Monwid-Olechnowicz Date: Tue, 26 Sep 2023 15:19:12 +0200 Subject: [PATCH 1/7] fix(core): filter array scales from Theme type given in .sx --- packages/components/src/Box.tsx | 4 +- packages/core/src/index.ts | 1 - packages/core/src/types.ts | 28 +- packages/core/test/react-jsx.tsx | 23 +- packages/css/src/index.ts | 13 +- packages/css/src/types.ts | 108 +- packages/css/test/errors-and-inference.ts | 2 +- packages/css/test/utils.ts | 2 +- packages/global/src/index.tsx | 12 +- packages/theme-ui/src/index.ts | 6 +- packages/theme-ui/test/index.tsx | 2 +- pnpm-lock.yaml | 1798 +++++++++++++++------ 12 files changed, 1440 insertions(+), 559 deletions(-) diff --git a/packages/components/src/Box.tsx b/packages/components/src/Box.tsx index 7c11b0447..405e676f8 100644 --- a/packages/components/src/Box.tsx +++ b/packages/components/src/Box.tsx @@ -2,7 +2,6 @@ import { ArrayInterpolation, CSSObject, Interpolation, - jsx, useTheme, } from '@emotion/react' import React, { forwardRef } from 'react' @@ -12,6 +11,7 @@ import { ThemeUICSSProperties, ThemeUIStyleObject, } from '@theme-ui/css' +import { Theme } from '@theme-ui/core' import type { Assign, ForwardRef } from './types' import type { __ThemeUIComponentsInternalProps } from './util' @@ -59,7 +59,7 @@ export interface BoxOwnProps extends BoxSystemProps { as?: React.ElementType variant?: string css?: Interpolation - sx?: ThemeUIStyleObject + sx?: ThemeUIStyleObject } export interface BoxProps diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index d20909db2..881011fa1 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -23,7 +23,6 @@ export type { Scale, StylePropertyValue, TLengthStyledSystem, - Theme, ThemeDerivedStyles, ThemeStyles, ThemeUICSSObject, diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 2484ee901..abc4f7d82 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -1,5 +1,29 @@ import { Interpolation } from '@emotion/react' -import { ThemeUIStyleObject, Theme as ThemeUITheme } from '@theme-ui/css' +import { + Scale, + ScaleDict, + ThemeUIStyleObject, + Theme as ThemeUITheme, +} from '@theme-ui/css' + +export interface UserThemes {} + +/** @internal */ +export type _UserTheme = UserThemes[keyof UserThemes] + +/** Theme without array scales, so it's easier to read from inside of .sx prop */ +export type WidenedTheme = { + [P in keyof ThemeUITheme]: ThemeUITheme[P] extends Scale | undefined + ? ScaleDict + : ThemeUITheme[P] +} & ThemeUITheme + +export type Theme = _UserTheme extends never + ? ThemeUITheme + : _UserTheme + +/** @internal */ +export type _JSXTheme = _UserTheme extends never ? WidenedTheme : _UserTheme export interface SxProp { /** @@ -8,7 +32,7 @@ export interface SxProp { * * @see https://theme-ui.com/sx-prop/ */ - sx?: ThemeUIStyleObject + sx?: ThemeUIStyleObject<_JSXTheme> /** * Theme UI uses Emotion's JSX function. You can pass styles to it directly * using `css` prop. diff --git a/packages/core/test/react-jsx.tsx b/packages/core/test/react-jsx.tsx index 822a55e15..fb79e223f 100644 --- a/packages/core/test/react-jsx.tsx +++ b/packages/core/test/react-jsx.tsx @@ -4,8 +4,11 @@ */ /* eslint-disable no-lone-blocks */ import { renderJSON, NotHas, Assert, expecter } from '@theme-ui/test-utils' +import { matchers } from '@emotion/jest' -import { SxProp, ThemeUIJSX } from '../src' +import { SxProp, ThemeProvider, ThemeUIJSX } from '../src' + +expect.extend(matchers) describe('JSX', () => { test('accepts sx prop', () => { @@ -30,6 +33,24 @@ describe('JSX', () => { ).toMatchSnapshot() }) + test('sx prop gives a theme that can be read as array or object', () => { + const json = renderJSON( + +
({ + boxShadow: t.shadows?.small, + '&:hover': { + boxShadow: t.shadows?.[2], + }, + })} + /> + + ) + expect(json).toHaveStyleRule('box-shadow', '0 0 4px rgba(0, 0, 0, .125)') + }) + test('accepts css prop', () => { const expectSnippet = expecter( `/** @jsxImportSource ./packages/core */ diff --git a/packages/css/src/index.ts b/packages/css/src/index.ts index 3bacc0a0f..b6503a0ee 100644 --- a/packages/css/src/index.ts +++ b/packages/css/src/index.ts @@ -304,9 +304,12 @@ const transforms = [ ) const responsive = - (styles: Exclude) => + (styles: Exclude, ThemeDerivedStyles>) => (theme?: Theme) => { - const next: Exclude = {} + const next: Exclude< + ThemeUIStyleObject, + ThemeDerivedStyles + > = {} const breakpoints = (theme && (theme.breakpoints as string[])) || defaultBreakpoints const mediaQueries = [ @@ -347,12 +350,12 @@ const responsive = type CssPropsArgument = { theme: Theme } | Theme export const css = - (args: ThemeUIStyleObject = {}) => + >(args: ThemeUIStyleObject = {}) => (props: CssPropsArgument = {}): CSSObject => { - const theme: Theme = { + const theme = { ...defaultTheme, ...('theme' in props ? props.theme : props), - } + } as TTheme // insert variant props before responsive styles, so they can be merged // we need to maintain order of the style props, so if a variant is place in the middle // of other props, it will extends its props at that same location order. diff --git a/packages/css/src/types.ts b/packages/css/src/types.ts index 7cc12f05f..3b295bf20 100644 --- a/packages/css/src/types.ts +++ b/packages/css/src/types.ts @@ -32,7 +32,9 @@ export interface CSSProperties /** * Map of all CSS pseudo selectors (`:hover`, `:focus`, ...) */ -export type CSSPseudoSelectorProps = { [K in CSS.Pseudos]?: ThemeUIStyleObject } +export type CSSPseudoSelectorProps = { + [K in CSS.Pseudos]?: ThemeUIStyleObject +} interface AliasesCSSProperties { /** @@ -437,10 +439,10 @@ export interface ThemeUIExtendedCSSProperties type ThemeUIStyleValue = ResponsiveStyleValue | T[]> -export type StylePropertyValue = +export type StylePropertyValue = | ThemeUIStyleValue> - | ((theme: Theme) => ThemeUIStyleValue> | undefined) - | ThemeUIStyleObject + | ((theme: TTheme) => ThemeUIStyleValue> | undefined) + | ThemeUIStyleObject | ThemeUIEmpty export type ThemeUICSSProperties = { @@ -474,8 +476,8 @@ export interface VariantProperty { variant?: string } -export interface ThemeDerivedStyles { - (theme: Theme): ThemeUICSSObject +export interface ThemeDerivedStyles { + (theme: TTheme): ThemeUICSSObject } export interface Label { @@ -497,7 +499,7 @@ export interface CSSOthersObject { export interface ThemeUICSSObject extends ThemeUICSSProperties, - CSSPseudoSelectorProps, + CSSPseudoSelectorProps, CSSOthersObject, VariantProperty, Label {} @@ -507,7 +509,9 @@ export interface ThemeUICSSObject * such that properties that are part of the `Theme` will be transformed to * their corresponding values. Other valid CSS properties are also allowed. */ -export type ThemeUIStyleObject = ThemeUICSSObject | ThemeDerivedStyles +export type ThemeUIStyleObject = + | ThemeUICSSObject + | ThemeDerivedStyles export type TLengthStyledSystem = string | 0 | number @@ -565,7 +569,7 @@ export interface ColorMode extends ScaleDict { text?: ColorOrNestedColorScale /** - * Primary brand color for links, buttons, etc. + * Primary brand coloThr for links, buttons, etc. */ primary?: ColorOrNestedColorScale @@ -601,40 +605,40 @@ export type ColorModesScale = ColorMode & { } } -export interface ThemeStyles { - tr?: ThemeUIStyleObject - th?: ThemeUIStyleObject - td?: ThemeUIStyleObject - em?: ThemeUIStyleObject - strong?: ThemeUIStyleObject - div?: ThemeUIStyleObject - p?: ThemeUIStyleObject - b?: ThemeUIStyleObject - i?: ThemeUIStyleObject - a?: ThemeUIStyleObject - h1?: ThemeUIStyleObject - h2?: ThemeUIStyleObject - h3?: ThemeUIStyleObject - h4?: ThemeUIStyleObject - h5?: ThemeUIStyleObject - h6?: ThemeUIStyleObject - img?: ThemeUIStyleObject - pre?: ThemeUIStyleObject - code?: ThemeUIStyleObject - ol?: ThemeUIStyleObject - ul?: ThemeUIStyleObject - li?: ThemeUIStyleObject - blockquote?: ThemeUIStyleObject - hr?: ThemeUIStyleObject - table?: ThemeUIStyleObject - delete?: ThemeUIStyleObject - inlineCode?: ThemeUIStyleObject - thematicBreak?: ThemeUIStyleObject - root?: ThemeUIStyleObject - [key: string]: ThemeUIStyleObject | undefined +export interface ThemeStyles { + tr?: ThemeUIStyleObject + th?: ThemeUIStyleObject + td?: ThemeUIStyleObject + em?: ThemeUIStyleObject + strong?: ThemeUIStyleObject + div?: ThemeUIStyleObject + p?: ThemeUIStyleObject + b?: ThemeUIStyleObject + i?: ThemeUIStyleObject + a?: ThemeUIStyleObject + h1?: ThemeUIStyleObject + h2?: ThemeUIStyleObject + h3?: ThemeUIStyleObject + h4?: ThemeUIStyleObject + h5?: ThemeUIStyleObject + h6?: ThemeUIStyleObject + img?: ThemeUIStyleObject + pre?: ThemeUIStyleObject + code?: ThemeUIStyleObject + ol?: ThemeUIStyleObject + ul?: ThemeUIStyleObject + li?: ThemeUIStyleObject + blockquote?: ThemeUIStyleObject + hr?: ThemeUIStyleObject + table?: ThemeUIStyleObject + delete?: ThemeUIStyleObject + inlineCode?: ThemeUIStyleObject + thematicBreak?: ThemeUIStyleObject + root?: ThemeUIStyleObject + [key: string]: ThemeUIStyleObject | undefined } -export interface Theme { +export interface Theme { breakpoints?: Array mediaQueries?: { [size: string]: string } space?: Scale> @@ -742,7 +746,7 @@ export interface Theme { * @see https://theme-ui.com/components/variants * @see https://theme-ui.com/components/grid#variants */ - grids?: Record + grids?: Record> /** * Button variants can be defined in the `theme.buttons` object. The `Button` @@ -752,7 +756,7 @@ export interface Theme { * @see https://theme-ui.com/components/variants * @see https://theme-ui.com/components/button#variants */ - buttons?: Record + buttons?: Record> /** * Text style variants can be defined in the `theme.text` object. The `Text` @@ -762,7 +766,7 @@ export interface Theme { * @see https://theme-ui.com/components/variants * @see https://theme-ui.com/components/text#variants */ - text?: Record + text?: Record> /** * Link variants can be defined in the `theme.links` object. By default the @@ -772,7 +776,7 @@ export interface Theme { * @see https://theme-ui.com/components/variants * @see https://theme-ui.com/components/link#variants */ - links?: Record + links?: Record> /** * Image style variants can be defined in the `theme.images` object. @@ -781,7 +785,7 @@ export interface Theme { * @see https://theme-ui.com/components/variants * @see https://theme-ui.com/components/image#variants */ - images?: Record + images?: Record> /** * Card style variants can be defined in `the theme.cards` object. By default @@ -791,7 +795,7 @@ export interface Theme { * @see https://theme-ui.com/components/variants * @see https://theme-ui.com/components/card#variants */ - cards?: Record + cards?: Record> /** * Container variants can be defined in the `theme.layout` object. The @@ -802,7 +806,7 @@ export interface Theme { * @see https://theme-ui.com/components/variants * @see https://theme-ui.com/components/container#variants */ - layout?: Record + layout?: Record> /** * Label variants can be defined in `theme.forms` and the component uses the @@ -836,7 +840,7 @@ export interface Theme { * @see https://theme-ui.com/components/checkbox#variants * @see https://theme-ui.com/components/slider#variants */ - forms?: Record + forms?: Record> /** * Badge variants can be defined in `theme.badges`. The `Badge` component uses @@ -846,7 +850,7 @@ export interface Theme { * @see https://theme-ui.com/components/variants * @see https://theme-ui.com/components/badge#variants */ - badges?: Record + badges?: Record> /** * Alert variants can be defined in `theme.alerts`. The `Alert` component uses @@ -856,7 +860,7 @@ export interface Theme { * @see https://theme-ui.com/components/variants * @see https://theme-ui.com/components/alert#variants */ - alerts?: Record + alerts?: Record> /** * Message variants can be defined in the `theme.messages` object. @@ -865,5 +869,5 @@ export interface Theme { * @see https://theme-ui.com/components/variants * @see https://theme-ui.com/components/message#variants */ - messages?: Record + messages?: Record> } diff --git a/packages/css/test/errors-and-inference.ts b/packages/css/test/errors-and-inference.ts index 6c4915db2..2fc453bc2 100644 --- a/packages/css/test/errors-and-inference.ts +++ b/packages/css/test/errors-and-inference.ts @@ -59,7 +59,7 @@ describe('Theme', () => { return get(t, 'sizes.5') } }) - `).toInfer('theme', 'Theme') + `).toInfer('theme', 'Theme<{}>') }) test('accepts additional properties by declaration merging', () => { diff --git a/packages/css/test/utils.ts b/packages/css/test/utils.ts index a2028dd38..7d027b614 100644 --- a/packages/css/test/utils.ts +++ b/packages/css/test/utils.ts @@ -26,7 +26,7 @@ describe(makeTheme, () => { expecter('import { makeTheme } from "./packages/css/utils"', { jsx: false, })('const t = makeTheme("banana")').toFail( - /Type '"banana"' has no properties in common with type 'Theme'./ + /Type '"banana"' has no properties in common with type 'Theme<{}>'./ ) }) }) diff --git a/packages/global/src/index.tsx b/packages/global/src/index.tsx index c0d91da5b..d05677501 100644 --- a/packages/global/src/index.tsx +++ b/packages/global/src/index.tsx @@ -1,14 +1,18 @@ -import { jsx, type ThemeUIStyleObject } from '@theme-ui/core' -import { css, type Theme } from '@theme-ui/css' +import { + jsx, + type ThemeUIStyleObject, + type Theme as CoreTheme, +} from '@theme-ui/core' +import { css, type Theme as GeneralTheme } from '@theme-ui/css' import { Global as EmotionGlobal } from '@emotion/react' export interface GlobalProps { - styles: ThemeUIStyleObject + styles: ThemeUIStyleObject } const Global = ({ styles }: GlobalProps): JSX.Element => jsx(EmotionGlobal, { styles: (emotionTheme: unknown) => { - const theme = emotionTheme as Theme + const theme = emotionTheme as GeneralTheme return css(styles)(theme) }, }) diff --git a/packages/theme-ui/src/index.ts b/packages/theme-ui/src/index.ts index 3d08ecf36..d8038bcdd 100644 --- a/packages/theme-ui/src/index.ts +++ b/packages/theme-ui/src/index.ts @@ -1,5 +1,6 @@ import { jsx as coreJsx } from '@theme-ui/core' import type { ThemeUIJSX, ThemeUIStyleObject } from '@theme-ui/core' +import type { Theme } from '@theme-ui/core' export { __ThemeUIContext, @@ -19,11 +20,12 @@ export type { ThemeUICSSProperties, ThemeUIStyleObject, ThemeUICSSObject, - Theme, ThemeStyles, TLengthStyledSystem, StylePropertyValue, } from '@theme-ui/core' +export type { Theme } from '@theme-ui/core' + export { useColorMode, InitializeColorMode } from '@theme-ui/color-modes' export { ThemeUIProvider, ThemeProvider } from '@theme-ui/theme-provider' export { default as Global } from '@theme-ui/global' @@ -31,7 +33,7 @@ export * from '@theme-ui/components' export { css, get } from '@theme-ui/css' export const BaseStyles = ( - props: Record & { sx?: ThemeUIStyleObject } + props: Record & { sx?: ThemeUIStyleObject } ): JSX.Element => jsx('div', { ...props, diff --git a/packages/theme-ui/test/index.tsx b/packages/theme-ui/test/index.tsx index 337277fa3..3cebb8c0b 100644 --- a/packages/theme-ui/test/index.tsx +++ b/packages/theme-ui/test/index.tsx @@ -108,7 +108,7 @@ test('functional themes can be used at the top level', () => { jsx( ThemeUIProvider, { - theme: (_): Theme => ({ + theme: (_) => ({ config: { useCustomProperties: false, }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2827f0aa9..8c4024513 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -110,7 +110,7 @@ importers: version: 29.5.0(@babel/core@7.22.5) babel-preset-gatsby: specifier: ^3.10.0 - version: 3.10.0(@babel/core@7.22.5)(core-js@3.31.0) + version: 3.10.0(@babel/core@7.22.5)(core-js@3.32.2) cross-env: specifier: ^7.0.3 version: 7.0.3 @@ -122,7 +122,7 @@ importers: version: 8.42.0 eslint-config-react-app: specifier: ^7.0.1 - version: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.5)(eslint@8.42.0)(jest@29.5.0)(typescript@5.1.3) + version: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.42.0)(jest@29.5.0)(typescript@5.1.3) jest: specifier: ^29.5.0 version: 29.5.0(@types/node@20.3.1) @@ -137,7 +137,7 @@ importers: version: 2.0.0(jest@29.5.0) jest-ts-webcompat-resolver: specifier: ^1.0.0 - version: 1.0.0(jest-resolve@29.5.0) + version: 1.0.0(jest-resolve@29.7.0) postinstall-postinstall: specifier: ^2.1.0 version: 2.1.0 @@ -182,10 +182,10 @@ importers: version: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) gatsby-plugin-mdx: specifier: ^5 - version: 5.0.0(@mdx-js/react@2.3.0)(gatsby-source-filesystem@5.11.0)(gatsby@5.10.0)(graphql@15.8.0)(react-dom@18.2.0)(react@18.2.0) + version: 5.0.0(@mdx-js/react@2.3.0)(gatsby-source-filesystem@5.12.0)(gatsby@5.10.0)(graphql@15.8.0)(react-dom@18.2.0)(react@18.2.0) gatsby-source-filesystem: specifier: latest - version: 5.11.0(gatsby@5.10.0) + version: 5.12.0(gatsby@5.10.0) react: specifier: ^18.1.0 version: 18.2.0 @@ -201,7 +201,7 @@ importers: version: 18.2.12 babel-eslint: specifier: ^10 - version: 10.1.0(eslint@8.42.0) + version: 10.1.0(eslint@8.49.0) graphql: specifier: ^15 version: 15.8.0 @@ -219,7 +219,7 @@ importers: version: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) gatsby-plugin-mdx: specifier: ^5 - version: 5.0.0(@mdx-js/react@2.3.0)(gatsby-source-filesystem@5.11.0)(gatsby@5.10.0)(react-dom@18.2.0)(react@18.2.0) + version: 5.0.0(@mdx-js/react@2.3.0)(gatsby-source-filesystem@5.12.0)(gatsby@5.10.0)(react-dom@18.2.0)(react@18.2.0) gatsby-plugin-theme-ui: specifier: workspace:^ version: link:../../packages/gatsby-plugin-theme-ui @@ -238,7 +238,7 @@ importers: version: 18.2.12 babel-eslint: specifier: ^10 - version: 10.1.0(eslint@8.42.0) + version: 10.1.0(eslint@8.49.0) typescript: specifier: ^5 version: 5.1.3 @@ -480,7 +480,7 @@ importers: version: 11.11.1(@types/react@18.2.12)(react@18.2.0) '@mdx-js/loader': specifier: ^2.3.0 - version: 2.3.0(webpack@5.86.0) + version: 2.3.0(webpack@5.88.2) '@mdx-js/react': specifier: ^2.3.0 version: 2.3.0(react@18.2.0) @@ -736,22 +736,22 @@ importers: optionalDependencies: '@bahmutov/cypress-esbuild-preprocessor': specifier: ^2.1.2 - version: 2.1.2(esbuild@0.15.6) + version: 2.2.0(esbuild@0.15.18) '@percy/cli': specifier: ^1.1.0 - version: 1.1.0 + version: 1.27.1(typescript@5.1.3) '@percy/cypress': specifier: ^3.1.1 - version: 3.1.1(cypress@10.4.0) + version: 3.1.2(cypress@10.4.0) '@testing-library/cypress': specifier: ^8.0.2 - version: 8.0.2(cypress@10.4.0) + version: 8.0.7(cypress@10.4.0) cypress: specifier: 10.4.0 version: 10.4.0 esbuild: specifier: ^0.15.6 - version: 0.15.6 + version: 0.15.18 wait-on: specifier: ^6.0.1 version: 6.0.1 @@ -824,7 +824,7 @@ importers: devDependencies: babel-eslint: specifier: ^10 - version: 10.1.0(eslint@8.42.0) + version: 10.1.0(eslint@8.49.0) gatsby: specifier: ^5 version: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) @@ -1162,7 +1162,7 @@ importers: version: 5.1.1 tailwindcss: specifier: ^3.0.15 - version: 3.1.8(postcss@8.4.24) + version: 3.1.8(postcss@8.4.30) packages/test-utils: dependencies: @@ -1401,6 +1401,10 @@ importers: packages: + /@aashutoshrathi/word-wrap@1.2.6: + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + /@ampproject/remapping@2.2.1: resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} engines: {node: '>=6.0.0'} @@ -1420,7 +1424,7 @@ packages: '@babel/core': 7.22.5 '@babel/generator': 7.22.5 '@babel/parser': 7.22.5 - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 '@babel/traverse': 7.22.5 '@babel/types': 7.22.5 babel-preset-fbjs: 3.4.0(@babel/core@7.22.5) @@ -1672,7 +1676,7 @@ packages: engines: {node: '>=6.9.0'} hasBin: true peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@jridgewell/trace-mapping': 0.3.18 @@ -1728,7 +1732,7 @@ packages: resolution: {integrity: sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: - '@babel/core': '>=7.11.0' + '@babel/core': 7.22.5 eslint: ^7.5.0 || ^8.0.0 || 8 dependencies: '@babel/core': 7.22.5 @@ -1742,7 +1746,7 @@ packages: resolution: {integrity: sha512-C69RWYNYtrgIRE5CmTd77ZiLDXqgBipahJc/jHP3sLcAGj6AJzxNIuKNpVnICqbyK7X3pFUfEvL++rvtbQpZkQ==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: - '@babel/core': '>=7.11.0' + '@babel/core': 7.22.5 eslint: ^7.5.0 || ^8.0.0 || 8 dependencies: '@babel/core': 7.22.5 @@ -1776,7 +1780,7 @@ packages: resolution: {integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/compat-data': 7.22.5 '@babel/core': 7.22.5 @@ -1789,7 +1793,7 @@ packages: resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-annotate-as-pure': 7.22.5 @@ -1808,7 +1812,7 @@ packages: resolution: {integrity: sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-annotate-as-pure': 7.22.5 @@ -1818,7 +1822,7 @@ packages: /@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.22.5): resolution: {integrity: sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==} peerDependencies: - '@babel/core': ^7.4.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.22.5) @@ -1853,6 +1857,13 @@ packages: dependencies: '@babel/types': 7.22.5 + /@babel/helper-module-imports@7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.19 + dev: false + /@babel/helper-module-imports@7.22.5: resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} engines: {node: '>=6.9.0'} @@ -1888,7 +1899,7 @@ packages: resolution: {integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-annotate-as-pure': 7.22.5 @@ -1933,6 +1944,11 @@ packages: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + engines: {node: '>=6.9.0'} + dev: false + /@babel/helper-validator-identifier@7.22.5: resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} engines: {node: '>=6.9.0'} @@ -1981,7 +1997,7 @@ packages: resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -1990,7 +2006,7 @@ packages: resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.13.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2001,7 +2017,7 @@ packages: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2013,7 +2029,7 @@ packages: resolution: {integrity: sha512-wdGTwWF5QtpTY/gbBtQLAiCnoxfD4qMbN87NYZle1dOZ9Os8Y6zXcKrIaOU8W+TIvFUWVGG9tUgNww3CjXRVVw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2029,7 +2045,7 @@ packages: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2039,7 +2055,7 @@ packages: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2049,7 +2065,7 @@ packages: resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/compat-data': 7.22.5 '@babel/core': 7.22.5 @@ -2062,7 +2078,7 @@ packages: resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2073,7 +2089,7 @@ packages: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2086,7 +2102,7 @@ packages: resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 @@ -2094,7 +2110,7 @@ packages: resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-annotate-as-pure': 7.22.5 @@ -2109,7 +2125,7 @@ packages: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2118,7 +2134,7 @@ packages: /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.5): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2126,7 +2142,7 @@ packages: /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.5): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2135,7 +2151,7 @@ packages: /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.5): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2144,7 +2160,7 @@ packages: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2153,7 +2169,7 @@ packages: resolution: {integrity: sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2162,7 +2178,7 @@ packages: /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.5): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2170,7 +2186,7 @@ packages: /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.5): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2179,7 +2195,7 @@ packages: resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2188,7 +2204,7 @@ packages: resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2197,7 +2213,7 @@ packages: resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2206,7 +2222,7 @@ packages: resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2214,7 +2230,7 @@ packages: /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.5): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2222,7 +2238,7 @@ packages: /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.5): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2231,7 +2247,7 @@ packages: resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2239,7 +2255,7 @@ packages: /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.5): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2247,7 +2263,7 @@ packages: /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.5): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2255,7 +2271,7 @@ packages: /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.5): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2263,7 +2279,7 @@ packages: /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.5): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2271,7 +2287,7 @@ packages: /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.5): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2279,7 +2295,7 @@ packages: /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.5): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2288,7 +2304,7 @@ packages: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2297,7 +2313,7 @@ packages: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2306,7 +2322,7 @@ packages: resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2315,7 +2331,7 @@ packages: resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2325,7 +2341,7 @@ packages: resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2334,7 +2350,7 @@ packages: resolution: {integrity: sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 @@ -2348,7 +2364,7 @@ packages: resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-module-imports': 7.22.5 @@ -2361,7 +2377,7 @@ packages: resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2370,7 +2386,7 @@ packages: resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2379,7 +2395,7 @@ packages: resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2391,7 +2407,7 @@ packages: resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.12.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2404,7 +2420,7 @@ packages: resolution: {integrity: sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-annotate-as-pure': 7.22.5 @@ -2423,7 +2439,7 @@ packages: resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2433,7 +2449,7 @@ packages: resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2442,7 +2458,7 @@ packages: resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2452,7 +2468,7 @@ packages: resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2461,7 +2477,7 @@ packages: resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2471,7 +2487,7 @@ packages: resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 @@ -2481,7 +2497,7 @@ packages: resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2491,7 +2507,7 @@ packages: resolution: {integrity: sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2501,7 +2517,7 @@ packages: resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2510,7 +2526,7 @@ packages: resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.22.5) @@ -2521,7 +2537,7 @@ packages: resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2531,7 +2547,7 @@ packages: resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2540,7 +2556,7 @@ packages: resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2550,7 +2566,7 @@ packages: resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2559,7 +2575,7 @@ packages: resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-module-transforms': 7.22.5 @@ -2571,7 +2587,7 @@ packages: resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-module-transforms': 7.22.5 @@ -2584,7 +2600,7 @@ packages: resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-hoist-variables': 7.22.5 @@ -2598,7 +2614,7 @@ packages: resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-module-transforms': 7.22.5 @@ -2610,7 +2626,7 @@ packages: resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2620,7 +2636,7 @@ packages: resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2629,7 +2645,7 @@ packages: resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2639,7 +2655,7 @@ packages: resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2649,7 +2665,7 @@ packages: resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/compat-data': 7.22.5 '@babel/core': 7.22.5 @@ -2662,7 +2678,7 @@ packages: resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2674,7 +2690,7 @@ packages: resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2684,7 +2700,7 @@ packages: resolution: {integrity: sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2695,7 +2711,7 @@ packages: resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2704,7 +2720,7 @@ packages: resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2716,7 +2732,7 @@ packages: resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-annotate-as-pure': 7.22.5 @@ -2730,7 +2746,7 @@ packages: resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2739,7 +2755,7 @@ packages: resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2748,16 +2764,30 @@ packages: resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.5) + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.5): + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': 7.22.5 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.5) + '@babel/types': 7.22.19 + dev: false + /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.5): resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-annotate-as-pure': 7.22.5 @@ -2770,7 +2800,7 @@ packages: resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-annotate-as-pure': 7.22.5 @@ -2780,7 +2810,7 @@ packages: resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2790,7 +2820,7 @@ packages: resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2799,7 +2829,7 @@ packages: resolution: {integrity: sha512-bg4Wxd1FWeFx3daHFTWk1pkSWK/AyQuiyAoeZAOkAOUBjnZPH6KT7eMxouV47tQ6hl6ax2zyAWBdWZXbrvXlaw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-module-imports': 7.22.5 @@ -2815,7 +2845,7 @@ packages: resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2824,7 +2854,7 @@ packages: resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2834,7 +2864,7 @@ packages: resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2843,7 +2873,7 @@ packages: resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2852,7 +2882,7 @@ packages: resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2861,7 +2891,7 @@ packages: resolution: {integrity: sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-annotate-as-pure': 7.22.5 @@ -2875,7 +2905,7 @@ packages: resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2884,7 +2914,7 @@ packages: resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2894,7 +2924,7 @@ packages: resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2904,7 +2934,7 @@ packages: resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.5) @@ -2914,7 +2944,7 @@ packages: resolution: {integrity: sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/compat-data': 7.22.5 '@babel/core': 7.22.5 @@ -3003,7 +3033,7 @@ packages: /@babel/preset-modules@0.1.5(@babel/core@7.22.5): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -3016,7 +3046,7 @@ packages: resolution: {integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -3030,7 +3060,7 @@ packages: resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -3045,7 +3075,7 @@ packages: resolution: {integrity: sha512-vV6pm/4CijSQ8Y47RH5SopXzursN35RQINfGJkmOlcpAtGuf94miFvIPhCKGQN7WGIcsgG1BHEX2KVdTYwTwUQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 clone-deep: 4.0.1 @@ -3066,6 +3096,12 @@ packages: regenerator-runtime: 0.13.11 dev: false + /@babel/runtime@7.22.15: + resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.14.0 + /@babel/runtime@7.22.5: resolution: {integrity: sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==} engines: {node: '>=6.9.0'} @@ -3097,6 +3133,15 @@ packages: transitivePeerDependencies: - supports-color + /@babel/types@7.22.19: + resolution: {integrity: sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 + dev: false + /@babel/types@7.22.5: resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==} engines: {node: '>=6.9.0'} @@ -3105,14 +3150,14 @@ packages: '@babel/helper-validator-identifier': 7.22.5 to-fast-properties: 2.0.0 - /@bahmutov/cypress-esbuild-preprocessor@2.1.2(esbuild@0.15.6): - resolution: {integrity: sha512-ZLIPvDwM1e6GiS6Cy8OiPz2tDmVa4++2DBNh3NB1rsjABumIKPRqVczIb4ynhRxpOwLDVxwN/c0nrEOaFAPodw==} + /@bahmutov/cypress-esbuild-preprocessor@2.2.0(esbuild@0.15.18): + resolution: {integrity: sha512-pTvxRi6+OFsXy6uCn/HlO5zi0fUZWbiCtTiLTDf/+kgEfZ/Y8WIxZ2pjuir9MEM8prQenBw60TLcM0wcazh7+Q==} requiresBuild: true peerDependencies: - esbuild: '*' + esbuild: '>=0.17.0' dependencies: - debug: 4.3.3 - esbuild: 0.15.6 + debug: 4.3.4(supports-color@8.1.1) + esbuild: 0.15.18 transitivePeerDependencies: - supports-color dev: false @@ -3187,6 +3232,7 @@ packages: /@cypress/request@2.88.10: resolution: {integrity: sha512-Zp7F+R93N0yZyG34GutyTNr+okam7s/Fzc1+i3kcqOP8vk6OuajuE9qZJ6Rs+10/1JFtXFYMdyarnU1rZuJesg==} engines: {node: '>= 6'} + requiresBuild: true dependencies: aws-sign2: 0.7.0 aws4: 1.11.0 @@ -3211,6 +3257,7 @@ packages: /@cypress/xvfb@1.2.4(supports-color@8.1.1): resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} + requiresBuild: true dependencies: debug: 3.2.7(supports-color@8.1.1) lodash.once: 4.1.1 @@ -3352,8 +3399,17 @@ packages: - typescript dev: false - /@esbuild/linux-loong64@0.15.6: - resolution: {integrity: sha512-hqmVU2mUjH6J2ZivHphJ/Pdse2ZD+uGCHK0uvsiLDk/JnSedEVj77CiVUnbMKuU4tih1TZZL8tG9DExQg/GZsw==} + /@esbuild/android-arm@0.15.18: + resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-loong64@0.15.18: + resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -3370,10 +3426,23 @@ packages: eslint: 8.42.0 eslint-visitor-keys: 3.4.1 + /@eslint-community/eslint-utils@4.4.0(eslint@8.49.0): + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 || 8 + dependencies: + eslint: 8.49.0 + eslint-visitor-keys: 3.4.1 + /@eslint-community/regexpp@4.5.1: resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + /@eslint-community/regexpp@4.8.1: + resolution: {integrity: sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + /@eslint/eslintrc@0.4.3: resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} engines: {node: ^10.12.0 || >=12.0.0} @@ -3406,18 +3475,38 @@ packages: transitivePeerDependencies: - supports-color + /@eslint/eslintrc@2.1.2: + resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 9.6.1 + globals: 13.22.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + /@eslint/js@8.42.0: resolution: {integrity: sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@eslint/js@8.49.0: + resolution: {integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@gatsbyjs/parcel-namer-relative-to-cwd@2.10.0(@parcel/core@2.8.3): resolution: {integrity: sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==} engines: {node: '>=18.0.0', parcel: 2.x} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 '@parcel/namer-default': 2.8.3(@parcel/core@2.8.3) '@parcel/plugin': 2.8.3(@parcel/core@2.8.3) - gatsby-core-utils: 4.11.0 + gatsby-core-utils: 4.12.0 transitivePeerDependencies: - '@parcel/core' @@ -3724,6 +3813,16 @@ packages: transitivePeerDependencies: - supports-color + /@humanwhocodes/config-array@0.11.11: + resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4(supports-color@8.1.1) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + /@humanwhocodes/config-array@0.5.0: resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} engines: {node: '>=10.10.0'} @@ -3923,6 +4022,13 @@ packages: '@sinclair/typebox': 0.25.24 dev: false + /@jest/schemas@29.6.3: + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@sinclair/typebox': 0.27.8 + dev: false + /@jest/source-map@29.4.3: resolution: {integrity: sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -3987,6 +4093,18 @@ packages: chalk: 4.1.2 dev: false + /@jest/types@29.6.3: + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 + '@types/node': 20.6.3 + '@types/yargs': 17.0.24 + chalk: 4.1.2 + dev: false + /@jridgewell/gen-mapping@0.3.3: resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} engines: {node: '>=6.0.0'} @@ -4137,6 +4255,18 @@ packages: - supports-color dev: false + /@mdx-js/loader@2.3.0(webpack@5.88.2): + resolution: {integrity: sha512-IqsscXh7Q3Rzb+f5DXYk0HU71PK+WuFsEhf+mSV3fOhpLcEpgsHvTQ2h0T6TlZ5gHOaBeFjkXwB52by7ypMyNg==} + peerDependencies: + webpack: '>=4' + dependencies: + '@mdx-js/mdx': 2.3.0 + source-map: 0.7.4 + webpack: 5.88.2 + transitivePeerDependencies: + - supports-color + dev: false + /@mdx-js/mdx@2.3.0: resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} dependencies: @@ -4792,154 +4922,189 @@ packages: chrome-trace-event: 1.0.3 nullthrows: 1.1.1 - /@percy/cli-build@1.1.0: - resolution: {integrity: sha512-99LDYYE5LPyRH6TL5mYapb0dNIQZkSrLq2I4ZyfTIUueoZ598QW1hg9IHo+URawFtjdFoMhaLlFGydMnizxCTw==} + /@percy/cli-app@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-Pat2BogPUmyciURUWbI1PQtUdPlhUrnS6aEVO1gNrulDeYF6j4LgD4SycCTj5L/xJijMXa3qFkZwW1VSdx97Yg==} + engines: {node: '>=14'} + requiresBuild: true + dependencies: + '@percy/cli-command': 1.27.1(typescript@5.1.3) + '@percy/cli-exec': 1.27.1(typescript@5.1.3) + transitivePeerDependencies: + - bufferutil + - supports-color + - typescript + - utf-8-validate + dev: false + optional: true + + /@percy/cli-build@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-EtktlYj4kzsBkrBSOVLKrvZWew/nq9mw/Z2m8mU4Jf7Pc779rQGUVCuI8PBhOI59c3JTjnY8KVaaj4Y+z9X+fg==} engines: {node: '>=14'} + requiresBuild: true dependencies: - '@percy/cli-command': 1.1.0 + '@percy/cli-command': 1.27.1(typescript@5.1.3) transitivePeerDependencies: - bufferutil - supports-color + - typescript - utf-8-validate dev: false optional: true - /@percy/cli-command@1.1.0: - resolution: {integrity: sha512-SMU/gVqXLm5GlThadby0uP8psDOsrUfNUIaFPtiPDSm0dT2dAyN1CAyvioEPQ2znPPMQSVegCvH23lfcYM4RXA==} + /@percy/cli-command@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-LK9YwE7qr67EtShVVjc20aJaRF8BFjZ8VWneLVoN73IYgpwBq96J4AUomoqfRpPNkpKvv6wDZFpr30xFokbrHA==} engines: {node: '>=14'} hasBin: true + requiresBuild: true dependencies: - '@percy/config': 1.1.0 - '@percy/core': 1.1.0 - '@percy/logger': 1.1.0 + '@percy/config': 1.27.1(typescript@5.1.3) + '@percy/core': 1.27.1(typescript@5.1.3) + '@percy/logger': 1.27.1 transitivePeerDependencies: - bufferutil - supports-color + - typescript - utf-8-validate dev: false optional: true - /@percy/cli-config@1.1.0: - resolution: {integrity: sha512-zLtyippRN402sNIDVJw1ZYPEXj5zWZgOJMUWfBq8NUbfxRzYYGCz0opMKGocx1fV8VfaFs2DywewRWKlhPM/Aw==} + /@percy/cli-config@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-bEzXfdP+RRxHekZ5pULsuuKHL0K9E81IFcEqZ8DcE3gnrpWQnIFPP2fTHF6WgWuXYHzJnsoIIm90LaWYc4+BJQ==} engines: {node: '>=14'} + requiresBuild: true dependencies: - '@percy/cli-command': 1.1.0 + '@percy/cli-command': 1.27.1(typescript@5.1.3) transitivePeerDependencies: - bufferutil - supports-color + - typescript - utf-8-validate dev: false optional: true - /@percy/cli-exec@1.1.0: - resolution: {integrity: sha512-7c3mePcW1ZJnsv+BAaA6YzZcTM55Eaa4WFoBEMrPWvHGLHZe3O+gehbEFyooIsDJ1I/SplDNarH3j1L5m4GQFg==} + /@percy/cli-exec@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-8xB7Iq3fh+QfuViUeZQXZeJNoFzDf0IhYUhhlEDXPcL2sgjrLiy9QHBdq6Yn3/8gHlDJyzpkej6hzFqERYZs1g==} engines: {node: '>=14'} + requiresBuild: true dependencies: - '@percy/cli-command': 1.1.0 + '@percy/cli-command': 1.27.1(typescript@5.1.3) cross-spawn: 7.0.3 which: 2.0.2 transitivePeerDependencies: - bufferutil - supports-color + - typescript - utf-8-validate dev: false optional: true - /@percy/cli-snapshot@1.1.0: - resolution: {integrity: sha512-6MQhUGrRFl2g9PfqLXfTL1CVoBmamWu2fCjzfgmb9E/HHKIDzE07PrwszNzEXHhdzBHG9gRZ0Bt6kzZ/Fta5UQ==} + /@percy/cli-snapshot@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-hVYATkHSN6Mz67LuP5QqRvdblg+kLb9dqGlaMJZI0CtuQYRtkbrlPz5yII9SJGMyUYMQHbZKsc68eT7+LZHKbA==} engines: {node: '>=14'} + requiresBuild: true dependencies: - '@percy/cli-command': 1.1.0 - yaml: 2.2.2 + '@percy/cli-command': 1.27.1(typescript@5.1.3) + yaml: 2.3.2 transitivePeerDependencies: - bufferutil - supports-color + - typescript - utf-8-validate dev: false optional: true - /@percy/cli-upload@1.1.0: - resolution: {integrity: sha512-P1GC3g0wYjy88h4zFBkInUcGWM8i99cJLyhKWg5WAK+bU5ot/Hc/4KgmNayHVxNJ/orcr1eHaP9pANbw82+igA==} + /@percy/cli-upload@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-4Kcft6ceuWy+Q5T4PKJXI63/QxCRFtCJUoU0QYrWo6TKKsescdE7/zWy6YESqHIm+XzBhZFYHwdYRsIbnjqUqQ==} engines: {node: '>=14'} + requiresBuild: true dependencies: - '@percy/cli-command': 1.1.0 - fast-glob: 3.2.12 + '@percy/cli-command': 1.27.1(typescript@5.1.3) + fast-glob: 3.3.1 image-size: 1.0.2 transitivePeerDependencies: - bufferutil - supports-color + - typescript - utf-8-validate dev: false optional: true - /@percy/cli@1.1.0: - resolution: {integrity: sha512-3GSXhYEr3FA3xJnYsSMbP+GGnV/JSTcPjCVdS/yYq+PUSZlc9/36z6OE55mj/GBbskwlZ0B4xEsKTccpDtZngw==} + /@percy/cli@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-2rU4NFe8TshV2sF+fs8bseGNohpLuRILW4t/Is7PCFYAitla1nvO0mndy0INct5VWc2KKewnq+2ZQONx3iNXLw==} engines: {node: '>=14'} hasBin: true requiresBuild: true dependencies: - '@percy/cli-build': 1.1.0 - '@percy/cli-command': 1.1.0 - '@percy/cli-config': 1.1.0 - '@percy/cli-exec': 1.1.0 - '@percy/cli-snapshot': 1.1.0 - '@percy/cli-upload': 1.1.0 - '@percy/client': 1.1.0 - '@percy/logger': 1.1.0 + '@percy/cli-app': 1.27.1(typescript@5.1.3) + '@percy/cli-build': 1.27.1(typescript@5.1.3) + '@percy/cli-command': 1.27.1(typescript@5.1.3) + '@percy/cli-config': 1.27.1(typescript@5.1.3) + '@percy/cli-exec': 1.27.1(typescript@5.1.3) + '@percy/cli-snapshot': 1.27.1(typescript@5.1.3) + '@percy/cli-upload': 1.27.1(typescript@5.1.3) + '@percy/client': 1.27.1 + '@percy/logger': 1.27.1 transitivePeerDependencies: - bufferutil - supports-color + - typescript - utf-8-validate dev: false optional: true - /@percy/client@1.1.0: - resolution: {integrity: sha512-AHbOlz/sAgTJeyMuDedW9+y/hYdKLneYEoE0kFTFQMelDzCn+CD7sW58tLLnBG8+wpjCAz65WGeK+3WNJ+R3IA==} + /@percy/client@1.27.1: + resolution: {integrity: sha512-GvjrGUaVdjMwx8ODDja3Kdb6tXYxRxv4PLXfXg0Wbn5jIfcjicojOc0mSGxcLvRGu5tmKrE3fusMhYYtKlLihg==} engines: {node: '>=14'} + requiresBuild: true dependencies: - '@percy/env': 1.1.0 - '@percy/logger': 1.1.0 + '@percy/env': 1.27.1 + '@percy/logger': 1.27.1 dev: false optional: true - /@percy/config@1.1.0: - resolution: {integrity: sha512-Lsbyf81B6T9qfUYZnPzKplnScY8NBOXtXwd+r7oYLpMny80c4hKQ1zi9W1aOfpoWIq7j5L7N68exEQjE465LLQ==} + /@percy/config@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-O7GgSrpjPeRmUmPWpFrg7368lWTJj8BtKY18Ztpq2j7bef5HCFi0AxvuOjwIH/GEwzGm/cI7ZK2kA/XGTOtpsg==} engines: {node: '>=14'} + requiresBuild: true dependencies: - '@percy/logger': 1.1.0 + '@percy/logger': 1.27.1 ajv: 8.12.0 - cosmiconfig: 7.1.0 - yaml: 2.3.1 + cosmiconfig: 8.3.6(typescript@5.1.3) + yaml: 2.3.2 + transitivePeerDependencies: + - typescript dev: false optional: true - /@percy/core@1.1.0: - resolution: {integrity: sha512-k7uBp4vXSwICM9n0sRgQiPXkiUbjNbTY3wPDVGY0h/lQwKL2CESt2G+pVl5h7I7OHmNHDZEDgrqpGuq/kDkxvQ==} + /@percy/core@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-/XsOCk/XHYf9MAqcituMGrYeITiav9BW1oGM0LfmU1Gne/YnEvur4JwpJ4uJ0OrNennwIqMuAVM9Y5y/xfZ39w==} engines: {node: '>=14'} requiresBuild: true dependencies: - '@percy/client': 1.1.0 - '@percy/config': 1.1.0 - '@percy/dom': 1.1.0 - '@percy/logger': 1.1.0 + '@percy/client': 1.27.1 + '@percy/config': 1.27.1(typescript@5.1.3) + '@percy/dom': 1.27.1 + '@percy/logger': 1.27.1 + '@percy/webdriver-utils': 1.27.1(typescript@5.1.3) content-disposition: 0.5.4 cross-spawn: 7.0.3 extract-zip: 2.0.1(supports-color@8.1.1) - fast-glob: 3.2.12 + fast-glob: 3.3.1 micromatch: 4.0.5 mime-types: 2.1.35 path-to-regexp: 6.2.1 rimraf: 3.0.2 - ws: 8.13.0 + ws: 8.14.2 transitivePeerDependencies: - bufferutil - supports-color + - typescript - utf-8-validate dev: false optional: true - /@percy/cypress@3.1.1(cypress@10.4.0): - resolution: {integrity: sha512-khvWmCOJW7pxwDZPB5ovvbSe11FfNtH8Iyq8PHRYLD9ibAkiAWHZVs07bLK5wju1Q9X8s7zg5uj2yWxIlB1yjA==} + /@percy/cypress@3.1.2(cypress@10.4.0): + resolution: {integrity: sha512-JXrGDZbqwkzQd2h5T5D7PvqoucNaiMh4ChPp8cLQiEtRuLHta9nf1lEuXH+jnatGL2j+3jJFIHJ0L7XrgVnvQA==} requiresBuild: true peerDependencies: cypress: '>=3' @@ -4952,26 +5117,51 @@ packages: dev: false optional: true - /@percy/dom@1.1.0: - resolution: {integrity: sha512-6doaOh81Guv+aPMayMCTA3O1Pa/YwH2uwT5NGo5dNjCdeomk/BnA+ZhtTRiarW0ymF7q+z6paGhq3R+717YuUQ==} + /@percy/dom@1.27.1: + resolution: {integrity: sha512-duYA3ATjADtn05VuGIfezgdCq+8ASwcY6Mzk857DzFIlJd/6T2P8v1dy66RRp78efzmIMtRroGy9SqWonlaAEA==} + requiresBuild: true dev: false optional: true - /@percy/env@1.1.0: - resolution: {integrity: sha512-Y2lSuiP+zyLSYf7IV/95MgNqiL6nRDYk9Ji8CMZPKuvPIrnCDExZ7nqszCli3hJ4qi6U4m1NykJWPDei4GjZNw==} + /@percy/env@1.27.1: + resolution: {integrity: sha512-Og0vQfV9zJftYYOY3PVtu+r7Ut/xr72BP3jH3rkeQJHnFKLkwemGbJpgSpMz7IbzWXSxYONkNfUtLvXwEsRpAw==} engines: {node: '>=14'} + requiresBuild: true + dependencies: + '@percy/logger': 1.27.1 dev: false optional: true - /@percy/logger@1.1.0: - resolution: {integrity: sha512-bAlxBcdnViTpGQZtjs361vXSlaxEj6Zt4Wt1Mo7EdPwv/zya2cBpLFNNcRycWto4mdb5Qnpht+IPXf7RFXJ/nw==} + /@percy/logger@1.27.1: + resolution: {integrity: sha512-jH++paKzIY94fQYQBEedVTfO36I8WBqm2RNl/xzsnLuAwNEX5+JUsaPcbLrwRzhn/tCv+8h9xEBuE9nj23krIA==} engines: {node: '>=14'} + requiresBuild: true dev: false optional: true /@percy/sdk-utils@1.10.0: resolution: {integrity: sha512-Oohn7d4otYKPsCGtchKwAcXXiF7JMrzVlEphQk9+O7KYGhodFup8LzyfgpYXT4pIjfVygTBZP8ad0UQCJdTobQ==} engines: {node: '>=14'} + requiresBuild: true + dev: false + optional: true + + /@percy/sdk-utils@1.27.1: + resolution: {integrity: sha512-I12rBQYySyt8VILgYnI19obYtkaIPuFR07HVBrHLsRHiLUf92XzAtTI482qrnYwybCgU9mb9o3Kb7KtMJ0nalA==} + engines: {node: '>=14'} + requiresBuild: true + dev: false + optional: true + + /@percy/webdriver-utils@1.27.1(typescript@5.1.3): + resolution: {integrity: sha512-bPj16YmvV84egtMHyYEhlGYjwJTk0f6vopcbCYWgMgvQp78Y/RKwRm8ZpWZfW2rTqElNRudrhKdqcEeaG6qd9g==} + engines: {node: '>=14'} + requiresBuild: true + dependencies: + '@percy/config': 1.27.1(typescript@5.1.3) + '@percy/sdk-utils': 1.27.1 + transitivePeerDependencies: + - typescript dev: false optional: true @@ -5178,6 +5368,7 @@ packages: /@sideway/formula@3.0.0: resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==} + requiresBuild: true dev: false optional: true @@ -5191,6 +5382,10 @@ packages: resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} dev: false + /@sinclair/typebox@0.27.8: + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + dev: false + /@sindresorhus/is@4.6.0: resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} engines: {node: '>=10'} @@ -5336,12 +5531,12 @@ packages: dependencies: defer-to-connect: 2.0.1 - /@testing-library/cypress@8.0.2(cypress@10.4.0): - resolution: {integrity: sha512-KVdm7n37sg/A4e3wKMD4zUl0NpzzVhx06V9Tf0hZHZ7nrZ4yFva6Zwg2EFF1VzHkEfN/ahUzRtT1qiW+vuWnJw==} + /@testing-library/cypress@8.0.7(cypress@10.4.0): + resolution: {integrity: sha512-3HTV725rOS+YHve/gD9coZp/UcPK5xhr4H0GMnq/ni6USdtzVtSOG9WBFtd8rYnrXk8rrGD+0toRFYouJNIG0Q==} engines: {node: '>=12', npm: '>=6'} requiresBuild: true peerDependencies: - cypress: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 + cypress: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 peerDependenciesMeta: cypress: optional: true @@ -5355,6 +5550,7 @@ packages: /@testing-library/dom@8.17.1: resolution: {integrity: sha512-KnH2MnJUzmFNPW6RIKfd+zf2Wue8mEKX0M3cpX6aKl5ZXrJM1/c/Pc8c2xDNYQCnJO48Sm5ITbMXgqTr3h4jxQ==} engines: {node: '>=12'} + requiresBuild: true dependencies: '@babel/code-frame': 7.22.5 '@babel/runtime': 7.22.5 @@ -5441,6 +5637,7 @@ packages: /@types/aria-query@4.2.2: resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} + requiresBuild: true dev: false optional: true @@ -5596,10 +5793,16 @@ packages: '@types/node': 20.3.1 dev: false + /@types/graceful-fs@4.1.7: + resolution: {integrity: sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==} + dependencies: + '@types/node': 20.6.3 + dev: false + /@types/hast@2.3.4: resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 3.0.0 /@types/http-cache-semantics@4.0.1: resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==} @@ -5643,6 +5846,10 @@ packages: /@types/json-schema@7.0.12: resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} + /@types/json-schema@7.0.13: + resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==} + dev: false + /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} @@ -5667,7 +5874,12 @@ packages: /@types/mdast@3.0.11: resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 3.0.0 + + /@types/mdast@3.0.12: + resolution: {integrity: sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==} + dependencies: + '@types/unist': 2.0.8 /@types/mdx@2.0.5: resolution: {integrity: sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==} @@ -5702,12 +5914,17 @@ packages: /@types/node@14.18.51: resolution: {integrity: sha512-P9bsdGFPpVtofEKlhWMVS2qqx1A/rt9QBfihWlklfHHpUpjtYse5AzFz6j4DWrARLYh6gRnw9+5+DJcrq3KvBA==} + requiresBuild: true dev: false optional: true /@types/node@20.3.1: resolution: {integrity: sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==} + /@types/node@20.6.3: + resolution: {integrity: sha512-HksnYH4Ljr4VQgEy2lTStbCKv/P590tmPe5HqOnv9Gprffgv5WXAY+Y5Gqniu0GGqeTCUdBnzC3QSrzPkBkAMA==} + dev: false + /@types/node@8.10.66: resolution: {integrity: sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==} @@ -5778,11 +5995,13 @@ packages: /@types/sinonjs__fake-timers@8.1.1: resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + requiresBuild: true dev: false optional: true /@types/sizzle@2.3.3: resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==} + requiresBuild: true dev: false optional: true @@ -5807,8 +6026,11 @@ packages: resolution: {integrity: sha512-/dGcnJhnkPVlP1A5wDhRhvfvyqJ9yePHyNKRjcR701vMGjDsTnIN3C+l33blkwijtEoQgN8g1CZhbkks1DyBfw==} dev: false - /@types/unist@2.0.6: - resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} + /@types/unist@2.0.8: + resolution: {integrity: sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw==} + + /@types/unist@3.0.0: + resolution: {integrity: sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w==} /@types/yargs-parser@21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} @@ -5843,10 +6065,10 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.5.1 - '@typescript-eslint/parser': 5.59.11(eslint@8.42.0)(typescript@5.1.3) + '@typescript-eslint/parser': 5.59.11(eslint@8.49.0)(typescript@5.1.3) '@typescript-eslint/scope-manager': 5.59.11 - '@typescript-eslint/type-utils': 5.59.11(eslint@8.42.0)(typescript@5.1.3) - '@typescript-eslint/utils': 5.59.11(eslint@8.42.0)(typescript@5.1.3) + '@typescript-eslint/type-utils': 5.59.11(eslint@8.49.0)(typescript@5.1.3) + '@typescript-eslint/utils': 5.59.11(eslint@8.49.0)(typescript@5.1.3) debug: 4.3.4(supports-color@8.1.1) eslint: 7.32.0 grapheme-splitter: 1.0.4 @@ -5885,6 +6107,34 @@ packages: typescript: 5.1.3 transitivePeerDependencies: - supports-color + dev: false + + /@typescript-eslint/eslint-plugin@5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.49.0)(typescript@5.1.3): + resolution: {integrity: sha512-XxuOfTkCUiOSyBWIvHlUraLw/JT/6Io1365RO6ZuI88STKMavJZPNMU0lFcUTeQXEhHiv64CbxYxBNoDVSmghg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || 8 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.5.1 + '@typescript-eslint/parser': 5.59.11(eslint@8.49.0)(typescript@5.1.3) + '@typescript-eslint/scope-manager': 5.59.11 + '@typescript-eslint/type-utils': 5.59.11(eslint@8.49.0)(typescript@5.1.3) + '@typescript-eslint/utils': 5.59.11(eslint@8.49.0)(typescript@5.1.3) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.49.0 + grapheme-splitter: 1.0.4 + ignore: 5.2.4 + natural-compare-lite: 1.4.0 + semver: 7.5.1 + tsutils: 3.21.0(typescript@5.1.3) + typescript: 5.1.3 + transitivePeerDependencies: + - supports-color /@typescript-eslint/experimental-utils@5.35.1(eslint@8.42.0)(typescript@5.1.3): resolution: {integrity: sha512-nF7JD9alMkhEx50QYDUdP8koeHtldnm7EfZkr68ikkc87ffFBIPkH3dqoWyOeQeIiJicB0uHzpMXKR6PP+1Jbg==} @@ -5937,6 +6187,26 @@ packages: typescript: 5.1.3 transitivePeerDependencies: - supports-color + dev: false + + /@typescript-eslint/parser@5.59.11(eslint@8.49.0)(typescript@5.1.3): + resolution: {integrity: sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || 8 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.59.11 + '@typescript-eslint/types': 5.59.11 + '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.1.3) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.49.0 + typescript: 5.1.3 + transitivePeerDependencies: + - supports-color /@typescript-eslint/scope-manager@5.35.1: resolution: {integrity: sha512-kCYRSAzIW9ByEIzmzGHE50NGAvAP3wFTaZevgWva7GpquDyFPFcmvVkFJGWJJktg/hLwmys/FZwqM9EKr2u24Q==} @@ -5953,7 +6223,27 @@ packages: '@typescript-eslint/types': 5.59.11 '@typescript-eslint/visitor-keys': 5.59.11 - /@typescript-eslint/type-utils@5.59.11(eslint@8.42.0)(typescript@5.1.3): + /@typescript-eslint/type-utils@5.59.11(eslint@8.42.0)(typescript@5.1.3): + resolution: {integrity: sha512-LZqVY8hMiVRF2a7/swmkStMYSoXMFlzL6sXV6U/2gL5cwnLWQgLEG8tjWPpaE4rMIdZ6VKWwcffPlo1jPfk43g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.1.3) + '@typescript-eslint/utils': 5.59.11(eslint@8.42.0)(typescript@5.1.3) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.42.0 + tsutils: 3.21.0(typescript@5.1.3) + typescript: 5.1.3 + transitivePeerDependencies: + - supports-color + dev: false + + /@typescript-eslint/type-utils@5.59.11(eslint@8.49.0)(typescript@5.1.3): resolution: {integrity: sha512-LZqVY8hMiVRF2a7/swmkStMYSoXMFlzL6sXV6U/2gL5cwnLWQgLEG8tjWPpaE4rMIdZ6VKWwcffPlo1jPfk43g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5964,9 +6254,9 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.1.3) - '@typescript-eslint/utils': 5.59.11(eslint@8.42.0)(typescript@5.1.3) + '@typescript-eslint/utils': 5.59.11(eslint@8.49.0)(typescript@5.1.3) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.42.0 + eslint: 8.49.0 tsutils: 3.21.0(typescript@5.1.3) typescript: 5.1.3 transitivePeerDependencies: @@ -6058,6 +6348,26 @@ packages: transitivePeerDependencies: - supports-color - typescript + dev: false + + /@typescript-eslint/utils@5.59.11(eslint@8.49.0)(typescript@5.1.3): + resolution: {integrity: sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || 8 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) + '@types/json-schema': 7.0.12 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 5.59.11 + '@typescript-eslint/types': 5.59.11 + '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.1.3) + eslint: 8.49.0 + eslint-scope: 5.1.1 + semver: 7.5.1 + transitivePeerDependencies: + - supports-color + - typescript /@typescript-eslint/visitor-keys@5.35.1: resolution: {integrity: sha512-cEB1DvBVo1bxbW/S5axbGPE6b7FIMAbo3w+AGq6zNDA7+NYJOIkKj/sInfTv4edxd4PxJSgdN4t6/pbvgA+n5g==} @@ -6218,6 +6528,14 @@ packages: acorn-walk: 8.2.0 dev: false + /acorn-import-assertions@1.9.0(acorn@8.10.0): + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + peerDependencies: + acorn: ^8 + dependencies: + acorn: 8.10.0 + dev: false + /acorn-import-assertions@1.9.0(acorn@8.8.2): resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} peerDependencies: @@ -6232,6 +6550,13 @@ packages: dependencies: acorn: 7.4.1 + /acorn-jsx@5.3.2(acorn@8.10.0): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.10.0 + /acorn-jsx@5.3.2(acorn@8.8.2): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: @@ -6272,6 +6597,11 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + /acorn@8.10.0: + resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} + engines: {node: '>=0.4.0'} + hasBin: true + /acorn@8.8.2: resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} engines: {node: '>=0.4.0'} @@ -6297,6 +6627,7 @@ packages: /aggregate-error@3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} + requiresBuild: true dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 @@ -6465,13 +6796,14 @@ packages: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} engines: {node: '>=6.0'} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 '@babel/runtime-corejs3': 7.18.9 dev: false /aria-query@5.0.2: resolution: {integrity: sha512-eigU3vhqSO+Z8BKDnVLN/ompjhf3pYzecKXz8+whRy+9gZu8n1TCGfwzQUUPnqdHl9ax1Hr9031orZ+UOEYr7Q==} engines: {node: '>=6.0'} + requiresBuild: true dev: false optional: true @@ -6742,6 +7074,7 @@ packages: /axios@0.25.0: resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==} + requiresBuild: true dependencies: follow-redirects: 1.15.1 transitivePeerDependencies: @@ -6774,12 +7107,30 @@ packages: resolve: 1.22.2 transitivePeerDependencies: - supports-color + dev: true + + /babel-eslint@10.1.0(eslint@8.49.0): + resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==} + engines: {node: '>=6'} + deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates. + peerDependencies: + eslint: '>= 4.12.1 || 8' + dependencies: + '@babel/code-frame': 7.22.5 + '@babel/parser': 7.22.5 + '@babel/traverse': 7.22.5 + '@babel/types': 7.22.5 + eslint: 8.49.0 + eslint-visitor-keys: 1.3.0 + resolve: 1.22.2 + transitivePeerDependencies: + - supports-color /babel-jest@29.5.0(@babel/core@7.22.5): resolution: {integrity: sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - '@babel/core': ^7.8.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@jest/transform': 29.5.0 @@ -6800,7 +7151,7 @@ packages: resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 webpack: '>=2' dependencies: '@babel/core': 7.22.5 @@ -6854,14 +7205,14 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 cosmiconfig: 7.1.0 resolve: 1.22.2 /babel-plugin-polyfill-corejs2@0.4.3(@babel/core@7.22.5): resolution: {integrity: sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/compat-data': 7.22.5 '@babel/core': 7.22.5 @@ -6873,7 +7224,7 @@ packages: /babel-plugin-polyfill-corejs3@0.8.1(@babel/core@7.22.5): resolution: {integrity: sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.22.5) @@ -6884,7 +7235,7 @@ packages: /babel-plugin-polyfill-regenerator@0.5.0(@babel/core@7.22.5): resolution: {integrity: sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.22.5) @@ -6895,14 +7246,14 @@ packages: resolution: {integrity: sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==} engines: {node: '>=18.0.0'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 gatsby: ^5.0.0-next || ^4 || ^5 dependencies: '@babel/core': 7.22.5 - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 '@babel/types': 7.22.5 gatsby: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) - gatsby-core-utils: 4.11.0 + gatsby-core-utils: 4.12.0 /babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} @@ -6921,7 +7272,7 @@ packages: /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.5): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.5) @@ -6941,7 +7292,7 @@ packages: /babel-preset-fbjs@3.4.0(@babel/core@7.22.5): resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.5) @@ -6978,7 +7329,7 @@ packages: resolution: {integrity: sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==} engines: {node: '>=18.0.0'} peerDependencies: - '@babel/core': ^7.11.6 + '@babel/core': 7.22.5 core-js: ^3.0.0 dependencies: '@babel/core': 7.22.5 @@ -7001,11 +7352,39 @@ packages: transitivePeerDependencies: - supports-color + /babel-preset-gatsby@3.10.0(@babel/core@7.22.5)(core-js@3.32.2): + resolution: {integrity: sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@babel/core': 7.22.5 + core-js: ^3.0.0 + dependencies: + '@babel/core': 7.22.5 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.5) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.5) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.5) + '@babel/plugin-transform-classes': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-runtime': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.5) + '@babel/preset-env': 7.22.5(@babel/core@7.22.5) + '@babel/preset-react': 7.22.5(@babel/core@7.22.5) + '@babel/runtime': 7.22.5 + babel-plugin-dynamic-import-node: 2.3.3 + babel-plugin-macros: 3.1.0 + babel-plugin-transform-react-remove-prop-types: 0.4.24 + core-js: 3.32.2 + gatsby-core-utils: 4.10.0 + gatsby-legacy-polyfills: 3.10.0 + transitivePeerDependencies: + - supports-color + dev: false + /babel-preset-jest@29.5.0(@babel/core@7.22.5): resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': 7.22.5 dependencies: '@babel/core': 7.22.5 babel-plugin-jest-hoist: 29.5.0 @@ -7029,7 +7408,7 @@ packages: '@babel/preset-env': 7.22.5(@babel/core@7.22.5) '@babel/preset-react': 7.22.5(@babel/core@7.22.5) '@babel/preset-typescript': 7.22.5(@babel/core@7.22.5) - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 transitivePeerDependencies: @@ -7065,6 +7444,7 @@ packages: /base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + requiresBuild: true /base64id@2.0.0: resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} @@ -7099,6 +7479,7 @@ packages: /bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + requiresBuild: true dependencies: buffer: 5.7.1 inherits: 2.0.4 @@ -7106,6 +7487,7 @@ packages: /blob-util@2.0.2: resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + requiresBuild: true dev: false optional: true @@ -7192,6 +7574,17 @@ packages: electron-to-chromium: 1.4.427 dev: false + /browserslist@4.21.11: + resolution: {integrity: sha512-xn1UXOKUz7DjdGlg9RrUr0GGiWzI97UQJnugHtH0OLDfJB7jMgoIkYvRIEO1l9EeEERVqeqLYOcFBW9ldjypbQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001538 + electron-to-chromium: 1.4.527 + node-releases: 2.0.13 + update-browserslist-db: 1.0.13(browserslist@4.21.11) + dev: false + /browserslist@4.21.7: resolution: {integrity: sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -7238,6 +7631,7 @@ packages: /buffer-crc32@0.2.13: resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + requiresBuild: true dev: false optional: true @@ -7246,6 +7640,7 @@ packages: /buffer@5.7.1: resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + requiresBuild: true dependencies: base64-js: 1.5.1 ieee754: 1.2.1 @@ -7315,6 +7710,7 @@ packages: /cachedir@2.3.0: resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==} engines: {node: '>=6'} + requiresBuild: true dev: false optional: true @@ -7393,6 +7789,10 @@ packages: /caniuse-lite@1.0.30001502: resolution: {integrity: sha512-AZ+9tFXw1sS0o0jcpJQIXvFTOB/xGiQ4OQ2t98QX3NDn2EZTSRBC801gxrsGgViuq2ak/NLkNgSNEPtCr5lfKg==} + /caniuse-lite@1.0.30001538: + resolution: {integrity: sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw==} + dev: false + /capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} dependencies: @@ -7524,6 +7924,7 @@ packages: /check-more-types@2.24.0: resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} engines: {node: '>= 0.8.0'} + requiresBuild: true dev: false optional: true @@ -7550,10 +7951,11 @@ packages: normalize-path: 3.0.0 readdirp: 3.6.0 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 /chownr@1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + requiresBuild: true /chroma-js@1.4.1: resolution: {integrity: sha512-jTwQiT859RTFN/vIf7s+Vl/Z2LcMrvMv3WUFmd/4u76AdlFC0NTNgqEEFPcRiHmAswPsMiQEDZLM8vX8qXpZNQ==} @@ -7603,6 +8005,7 @@ packages: /clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} engines: {node: '>=6'} + requiresBuild: true dev: false optional: true @@ -7619,6 +8022,7 @@ packages: /cli-table3@0.6.2: resolution: {integrity: sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==} engines: {node: 10.* || >= 12.*} + requiresBuild: true dependencies: string-width: 4.2.3 optionalDependencies: @@ -7636,6 +8040,7 @@ packages: /cli-truncate@2.1.0: resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} engines: {node: '>=8'} + requiresBuild: true dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 @@ -7788,6 +8193,7 @@ packages: /color@4.2.3: resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} engines: {node: '>=12.5.0'} + requiresBuild: true dependencies: color-convert: 2.0.1 color-string: 1.9.1 @@ -7809,6 +8215,7 @@ packages: /colorette@2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} + requiresBuild: true dev: false optional: true @@ -7896,6 +8303,7 @@ packages: /commander@5.1.0: resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} engines: {node: '>= 6'} + requiresBuild: true dev: false optional: true @@ -8144,6 +8552,11 @@ packages: resolution: {integrity: sha512-NIp2TQSGfR6ba5aalZD+ZQ1fSxGhDo/s1w0nx3RYzf2pnJxt7YynxFlFScP6eV7+GZsKO95NSjGxyJsU3DZgeQ==} requiresBuild: true + /core-js@3.32.2: + resolution: {integrity: sha512-pxXSw1mYZPDGvTQqEc5vgIb83jGQKFGYWY76z4a7weZXUolw3G+OvpZqSRcfYOoOVUQJYEPsWeQK8pKEnUtWxQ==} + requiresBuild: true + dev: false + /core-util-is@1.0.2: resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} dev: false @@ -8189,11 +8602,29 @@ packages: path-type: 4.0.0 yaml: 1.10.2 + /cosmiconfig@8.3.6(typescript@5.1.3): + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + requiresBuild: true + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + typescript: 5.1.3 + dev: false + optional: true + /create-gatsby@3.10.0: resolution: {integrity: sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==} hasBin: true dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 /create-react-class@15.7.0: resolution: {integrity: sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==} @@ -8614,7 +9045,7 @@ packages: resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 /dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} @@ -8622,6 +9053,7 @@ packages: /dayjs@1.11.5: resolution: {integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==} + requiresBuild: true dev: false optional: true @@ -8646,19 +9078,6 @@ packages: ms: 2.1.3 supports-color: 8.1.1 - /debug@4.3.3: - resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - dev: false - optional: true - /debug@4.3.4(supports-color@8.1.1): resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} @@ -8807,6 +9226,7 @@ packages: /detect-libc@2.0.1: resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==} engines: {node: '>=8'} + requiresBuild: true /detect-newline@3.1.0: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} @@ -8924,6 +9344,7 @@ packages: /dom-accessibility-api@0.5.14: resolution: {integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==} + requiresBuild: true dev: false optional: true @@ -9064,6 +9485,10 @@ packages: /electron-to-chromium@1.4.428: resolution: {integrity: sha512-L7uUknyY286of0AYC8CKfgWstD0Smk2DvHDi9F0GWQhSH90Bzi7iDrmCbZKz75tYJxeGSAc7TYeKpmbjMDoh1w==} + /electron-to-chromium@1.4.527: + resolution: {integrity: sha512-EafxEiEDzk2aLrdbtVczylHflHdHkNrpGNHIgDyA63sUQLQVS2ayj2hPw3RsVB42qkwURH+T2OxV7kGPUuYszA==} + dev: false + /emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} @@ -9145,6 +9570,14 @@ packages: graceful-fs: 4.2.11 tapable: 2.2.1 + /enhanced-resolve@5.15.0: + resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} + engines: {node: '>=10.13.0'} + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + dev: false + /enquirer@2.3.6: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} @@ -9250,6 +9683,10 @@ packages: /es-module-lexer@1.3.0: resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==} + /es-module-lexer@1.3.1: + resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} + dev: false + /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} engines: {node: '>= 0.4'} @@ -9308,8 +9745,8 @@ packages: es6-iterator: 2.0.3 es6-symbol: 3.1.3 - /esbuild-android-64@0.15.6: - resolution: {integrity: sha512-Z1CHSgB1crVQi2LKSBwSkpaGtaloVz0ZIYcRMsvHc3uSXcR/x5/bv9wcZspvH/25lIGTaViosciS/NS09ERmVA==} + /esbuild-android-64@0.15.18: + resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -9317,8 +9754,8 @@ packages: dev: false optional: true - /esbuild-android-arm64@0.15.6: - resolution: {integrity: sha512-mvM+gqNxqKm2pCa3dnjdRzl7gIowuc4ga7P7c3yHzs58Im8v/Lfk1ixSgQ2USgIywT48QWaACRa3F4MG7djpSw==} + /esbuild-android-arm64@0.15.18: + resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -9326,8 +9763,8 @@ packages: dev: false optional: true - /esbuild-darwin-64@0.15.6: - resolution: {integrity: sha512-BsfVt3usScAfGlXJiGtGamwVEOTM8AiYiw1zqDWhGv6BncLXCnTg1As+90mxWewdTZKq3iIy8s9g8CKkrrAXVw==} + /esbuild-darwin-64@0.15.18: + resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -9335,8 +9772,8 @@ packages: dev: false optional: true - /esbuild-darwin-arm64@0.15.6: - resolution: {integrity: sha512-CnrAeJaEpPakUobhqO4wVSA4Zm6TPaI5UY4EsI62j9mTrjIyQPXA1n4Ju6Iu5TVZRnEqV6q8blodgYJ6CJuwCA==} + /esbuild-darwin-arm64@0.15.18: + resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -9344,8 +9781,8 @@ packages: dev: false optional: true - /esbuild-freebsd-64@0.15.6: - resolution: {integrity: sha512-+qFdmqi+jkAsxsNJkaWVrnxEUUI50nu6c3MBVarv3RCDCbz7ZS1a4ZrdkwEYFnKcVWu6UUE0Kkb1SQ1yGEG6sg==} + /esbuild-freebsd-64@0.15.18: + resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -9353,8 +9790,8 @@ packages: dev: false optional: true - /esbuild-freebsd-arm64@0.15.6: - resolution: {integrity: sha512-KtQkQOhnNciXm2yrTYZMD3MOm2zBiiwFSU+dkwNbcfDumzzUprr1x70ClTdGuZwieBS1BM/k0KajRQX7r504Xw==} + /esbuild-freebsd-arm64@0.15.18: + resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -9362,8 +9799,8 @@ packages: dev: false optional: true - /esbuild-linux-32@0.15.6: - resolution: {integrity: sha512-IAkDNz3TpxwISTGVdQijwyHBZrbFgLlRi5YXcvaEHtgbmayLSDcJmH5nV1MFgo/x2QdKcHBkOYHdjhKxUAcPwg==} + /esbuild-linux-32@0.15.18: + resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -9371,8 +9808,8 @@ packages: dev: false optional: true - /esbuild-linux-64@0.15.6: - resolution: {integrity: sha512-gQPksyrEYfA4LJwyfTQWAZaVZCx4wpaLrSzo2+Xc9QLC+i/sMWmX31jBjrn4nLJCd79KvwCinto36QC7BEIU/A==} + /esbuild-linux-64@0.15.18: + resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -9380,8 +9817,8 @@ packages: dev: false optional: true - /esbuild-linux-arm64@0.15.6: - resolution: {integrity: sha512-aovDkclFa6C9EdZVBuOXxqZx83fuoq8097xZKhEPSygwuy4Lxs8J4anHG7kojAsR+31lfUuxzOo2tHxv7EiNHA==} + /esbuild-linux-arm64@0.15.18: + resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -9389,8 +9826,8 @@ packages: dev: false optional: true - /esbuild-linux-arm@0.15.6: - resolution: {integrity: sha512-xZ0Bq2aivsthDjA/ytQZzxrxIZbG0ATJYMJxNeOIBc1zUjpbVpzBKgllOZMsTSXMHFHGrow6TnCcgwqY0+oEoQ==} + /esbuild-linux-arm@0.15.18: + resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -9398,8 +9835,8 @@ packages: dev: false optional: true - /esbuild-linux-mips64le@0.15.6: - resolution: {integrity: sha512-wVpW8wkWOGizsCqCwOR/G3SHwhaecpGy3fic9BF1r7vq4djLjUcA8KunDaBCjJ6TgLQFhJ98RjDuyEf8AGjAvw==} + /esbuild-linux-mips64le@0.15.18: + resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -9407,8 +9844,8 @@ packages: dev: false optional: true - /esbuild-linux-ppc64le@0.15.6: - resolution: {integrity: sha512-z6w6gsPH/Y77uchocluDC8tkCg9rfkcPTePzZKNr879bF4tu7j9t255wuNOCE396IYEGxY7y8u2HJ9i7kjCLVw==} + /esbuild-linux-ppc64le@0.15.18: + resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -9416,8 +9853,8 @@ packages: dev: false optional: true - /esbuild-linux-riscv64@0.15.6: - resolution: {integrity: sha512-pfK/3MJcmbfU399TnXW5RTPS1S+ID6ra+CVj9TFZ2s0q9Ja1F5A1VirUUvViPkjiw+Kq3zveyn6U09Wg1zJXrw==} + /esbuild-linux-riscv64@0.15.18: + resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -9425,8 +9862,8 @@ packages: dev: false optional: true - /esbuild-linux-s390x@0.15.6: - resolution: {integrity: sha512-OZeeDu32liefcwAE63FhVqM4heWTC8E3MglOC7SK0KYocDdY/6jyApw0UDkDHlcEK9mW6alX/SH9r3PDjcCo/Q==} + /esbuild-linux-s390x@0.15.18: + resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -9434,8 +9871,8 @@ packages: dev: false optional: true - /esbuild-netbsd-64@0.15.6: - resolution: {integrity: sha512-kaxw61wcHMyiEsSsi5ut1YYs/hvTC2QkxJwyRvC2Cnsz3lfMLEu8zAjpBKWh9aU/N0O/gsRap4wTur5GRuSvBA==} + /esbuild-netbsd-64@0.15.18: + resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -9443,8 +9880,8 @@ packages: dev: false optional: true - /esbuild-openbsd-64@0.15.6: - resolution: {integrity: sha512-CuoY60alzYfIZapUHqFXqXbj88bbRJu8Fp9okCSHRX2zWIcGz4BXAHXiG7dlCye5nFVrY72psesLuWdusyf2qw==} + /esbuild-openbsd-64@0.15.18: + resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -9452,8 +9889,8 @@ packages: dev: false optional: true - /esbuild-sunos-64@0.15.6: - resolution: {integrity: sha512-1ceefLdPWcd1nW/ZLruPEYxeUEAVX0YHbG7w+BB4aYgfknaLGotI/ZvPWUZpzhC8l1EybrVlz++lm3E6ODIJOg==} + /esbuild-sunos-64@0.15.18: + resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -9461,8 +9898,8 @@ packages: dev: false optional: true - /esbuild-windows-32@0.15.6: - resolution: {integrity: sha512-pBqdOsKqCD5LRYiwF29PJRDJZi7/Wgkz46u3d17MRFmrLFcAZDke3nbdDa1c8YgY78RiemudfCeAemN8EBlIpA==} + /esbuild-windows-32@0.15.18: + resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -9470,8 +9907,8 @@ packages: dev: false optional: true - /esbuild-windows-64@0.15.6: - resolution: {integrity: sha512-KpPOh4aTOo//g9Pk2oVAzXMpc9Sz9n5A9sZTmWqDSXCiiachfFhbuFlsKBGATYCVitXfmBIJ4nNYYWSOdz4hQg==} + /esbuild-windows-64@0.15.18: + resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -9479,8 +9916,8 @@ packages: dev: false optional: true - /esbuild-windows-arm64@0.15.6: - resolution: {integrity: sha512-DB3G2x9OvFEa00jV+OkDBYpufq5x/K7a6VW6E2iM896DG4ZnAvJKQksOsCPiM1DUaa+DrijXAQ/ZOcKAqf/3Hg==} + /esbuild-windows-arm64@0.15.18: + resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -9488,33 +9925,34 @@ packages: dev: false optional: true - /esbuild@0.15.6: - resolution: {integrity: sha512-sgLOv3l4xklvXzzczhRwKRotyrfyZ2i1fCS6PTOLPd9wevDPArGU8HFtHrHCOcsMwTjLjzGm15gvC8uxVzQf+w==} + /esbuild@0.15.18: + resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/linux-loong64': 0.15.6 - esbuild-android-64: 0.15.6 - esbuild-android-arm64: 0.15.6 - esbuild-darwin-64: 0.15.6 - esbuild-darwin-arm64: 0.15.6 - esbuild-freebsd-64: 0.15.6 - esbuild-freebsd-arm64: 0.15.6 - esbuild-linux-32: 0.15.6 - esbuild-linux-64: 0.15.6 - esbuild-linux-arm: 0.15.6 - esbuild-linux-arm64: 0.15.6 - esbuild-linux-mips64le: 0.15.6 - esbuild-linux-ppc64le: 0.15.6 - esbuild-linux-riscv64: 0.15.6 - esbuild-linux-s390x: 0.15.6 - esbuild-netbsd-64: 0.15.6 - esbuild-openbsd-64: 0.15.6 - esbuild-sunos-64: 0.15.6 - esbuild-windows-32: 0.15.6 - esbuild-windows-64: 0.15.6 - esbuild-windows-arm64: 0.15.6 + '@esbuild/android-arm': 0.15.18 + '@esbuild/linux-loong64': 0.15.18 + esbuild-android-64: 0.15.18 + esbuild-android-arm64: 0.15.18 + esbuild-darwin-64: 0.15.18 + esbuild-darwin-arm64: 0.15.18 + esbuild-freebsd-64: 0.15.18 + esbuild-freebsd-arm64: 0.15.18 + esbuild-linux-32: 0.15.18 + esbuild-linux-64: 0.15.18 + esbuild-linux-arm: 0.15.18 + esbuild-linux-arm64: 0.15.18 + esbuild-linux-mips64le: 0.15.18 + esbuild-linux-ppc64le: 0.15.18 + esbuild-linux-riscv64: 0.15.18 + esbuild-linux-s390x: 0.15.18 + esbuild-netbsd-64: 0.15.18 + esbuild-openbsd-64: 0.15.18 + esbuild-sunos-64: 0.15.18 + esbuild-windows-32: 0.15.18 + esbuild-windows-64: 0.15.18 + esbuild-windows-arm64: 0.15.18 dev: false optional: true @@ -9581,16 +10019,16 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.42.0)(typescript@5.1.3) - '@typescript-eslint/parser': 5.59.11(eslint@8.42.0)(typescript@5.1.3) - babel-eslint: 10.1.0(eslint@8.42.0) + '@typescript-eslint/eslint-plugin': 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.49.0)(typescript@5.1.3) + '@typescript-eslint/parser': 5.59.11(eslint@8.49.0)(typescript@5.1.3) + babel-eslint: 10.1.0(eslint@8.49.0) confusing-browser-globals: 1.0.11 eslint: 7.32.0 - eslint-plugin-flowtype: 5.10.0(eslint@8.42.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.42.0) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.42.0) - eslint-plugin-react: 7.32.2(eslint@8.42.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.42.0) + eslint-plugin-flowtype: 5.10.0(eslint@8.49.0) + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.49.0) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.49.0) + eslint-plugin-react: 7.32.2(eslint@8.49.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.49.0) typescript: 5.1.3 /eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.59.11)(@typescript-eslint/parser@5.59.11)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.27.5)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@7.32.0)(typescript@5.1.3): @@ -9631,7 +10069,7 @@ packages: typescript: 5.1.3 dev: true - /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.5)(eslint@8.42.0)(jest@29.5.0)(typescript@5.1.3): + /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.42.0)(jest@29.5.0)(typescript@5.1.3): resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -9649,7 +10087,7 @@ packages: babel-preset-react-app: 10.0.1 confusing-browser-globals: 1.0.11 eslint: 8.42.0 - eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.5)(eslint@8.42.0) + eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.42.0) eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.59.11)(eslint@8.42.0) eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.59.11)(eslint@8.42.0)(jest@29.5.0)(typescript@5.1.3) eslint-plugin-jsx-a11y: 6.6.1(eslint@8.42.0) @@ -9713,7 +10151,7 @@ packages: - supports-color dev: false - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint@8.42.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint@8.49.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -9734,9 +10172,9 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.59.11(eslint@8.42.0)(typescript@5.1.3) + '@typescript-eslint/parser': 5.59.11(eslint@8.49.0)(typescript@5.1.3) debug: 3.2.7(supports-color@8.1.1) - eslint: 8.42.0 + eslint: 8.49.0 eslint-import-resolver-node: 0.3.7 transitivePeerDependencies: - supports-color @@ -9752,17 +10190,17 @@ packages: string-natural-compare: 3.0.1 dev: true - /eslint-plugin-flowtype@5.10.0(eslint@8.42.0): + /eslint-plugin-flowtype@5.10.0(eslint@8.49.0): resolution: {integrity: sha512-vcz32f+7TP+kvTUyMXZmCnNujBQZDNmcqPImw8b9PZ+16w1Qdm6ryRuYZYVaG9xRqqmAPr2Cs9FAX5gN+x/bjw==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: eslint: ^7.1.0 || 8 dependencies: - eslint: 8.42.0 + eslint: 8.49.0 lodash: 4.17.21 string-natural-compare: 3.0.1 - /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.5)(eslint@8.42.0): + /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.42.0): resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -9771,7 +10209,7 @@ packages: eslint: ^8.1.0 || 8 dependencies: '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.5) eslint: 8.42.0 lodash: 4.17.21 string-natural-compare: 3.0.1 @@ -9818,7 +10256,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.59.11(eslint@8.42.0)(typescript@5.1.3) + '@typescript-eslint/parser': 5.59.11(eslint@8.49.0)(typescript@5.1.3) array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 @@ -9826,7 +10264,7 @@ packages: doctrine: 2.1.0 eslint: 7.32.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint@8.42.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint@8.49.0) has: 1.0.3 is-core-module: 2.12.1 is-glob: 4.0.3 @@ -9841,7 +10279,7 @@ packages: - supports-color dev: true - /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.42.0): + /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.49.0): resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} engines: {node: '>=4'} peerDependencies: @@ -9851,15 +10289,15 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.59.11(eslint@8.42.0)(typescript@5.1.3) + '@typescript-eslint/parser': 5.59.11(eslint@8.49.0)(typescript@5.1.3) array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 debug: 3.2.7(supports-color@8.1.1) doctrine: 2.1.0 - eslint: 8.42.0 + eslint: 8.49.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint@8.42.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint@8.49.0) has: 1.0.3 is-core-module: 2.12.1 is-glob: 4.0.3 @@ -9901,7 +10339,7 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || 8 dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 aria-query: 4.2.2 array-includes: 3.1.5 ast-types-flow: 0.0.7 @@ -9923,7 +10361,7 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || 8 dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 aria-query: 5.2.1 array-includes: 3.1.6 array.prototype.flatmap: 1.3.1 @@ -9942,13 +10380,13 @@ packages: semver: 6.3.0 dev: true - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.42.0): + /eslint-plugin-jsx-a11y@6.7.1(eslint@8.49.0): resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || 8 dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 aria-query: 5.2.1 array-includes: 3.1.6 array.prototype.flatmap: 1.3.1 @@ -9957,7 +10395,7 @@ packages: axobject-query: 3.2.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.42.0 + eslint: 8.49.0 has: 1.0.3 jsx-ast-utils: 3.3.3 language-tags: 1.0.5 @@ -9982,6 +10420,15 @@ packages: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || 8 dependencies: eslint: 8.42.0 + dev: false + + /eslint-plugin-react-hooks@4.6.0(eslint@8.49.0): + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || 8 + dependencies: + eslint: 8.49.0 /eslint-plugin-react@7.31.1(eslint@8.42.0): resolution: {integrity: sha512-j4/2xWqt/R7AZzG8CakGHA6Xa/u7iR8Q3xCxY+AUghdT92bnIDOBEefV456OeH0QvBcroVc0eyvrrLSyQGYIfg==} @@ -10030,7 +10477,7 @@ packages: string.prototype.matchall: 4.0.8 dev: true - /eslint-plugin-react@7.32.2(eslint@8.42.0): + /eslint-plugin-react@7.32.2(eslint@8.49.0): resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} engines: {node: '>=4'} peerDependencies: @@ -10040,7 +10487,7 @@ packages: array.prototype.flatmap: 1.3.1 array.prototype.tosorted: 1.1.1 doctrine: 2.1.0 - eslint: 8.42.0 + eslint: 8.49.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.3 minimatch: 3.1.2 @@ -10080,6 +10527,13 @@ packages: esrecurse: 4.3.0 estraverse: 5.3.0 + /eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + /eslint-utils@2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} engines: {node: '>=6'} @@ -10108,6 +10562,10 @@ packages: resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.86.0): resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} engines: {node: '>= 10.13.0'} @@ -10219,6 +10677,51 @@ packages: transitivePeerDependencies: - supports-color + /eslint@8.49.0: + resolution: {integrity: sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) + '@eslint-community/regexpp': 4.8.1 + '@eslint/eslintrc': 2.1.2 + '@eslint/js': 8.49.0 + '@humanwhocodes/config-array': 0.11.11 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.22.0 + graphemer: 1.4.0 + ignore: 5.2.4 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + /espree@7.3.1: resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} engines: {node: ^10.12.0 || >=12.0.0} @@ -10235,6 +10738,14 @@ packages: acorn-jsx: 5.3.2(acorn@8.8.2) eslint-visitor-keys: 3.4.1 + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) + eslint-visitor-keys: 3.4.3 + /esprima@2.7.3: resolution: {integrity: sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==} engines: {node: '>=0.10.0'} @@ -10292,7 +10803,7 @@ packages: resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} dependencies: '@types/estree-jsx': 1.0.0 - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 /estree-walker@1.0.1: resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} @@ -10326,6 +10837,7 @@ packages: /eventemitter2@6.4.7: resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==} + requiresBuild: true dev: false optional: true @@ -10348,6 +10860,7 @@ packages: /execa@4.1.0: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} engines: {node: '>=10'} + requiresBuild: true dependencies: cross-spawn: 7.0.3 get-stream: 5.2.0 @@ -10378,6 +10891,7 @@ packages: /executable@4.1.1: resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} engines: {node: '>=4'} + requiresBuild: true dependencies: pify: 2.3.0 dev: false @@ -10391,6 +10905,7 @@ packages: /expand-template@2.0.3: resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} engines: {node: '>=6'} + requiresBuild: true /expect@29.5.0: resolution: {integrity: sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==} @@ -10478,6 +10993,7 @@ packages: resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} engines: {node: '>= 10.17.0'} hasBin: true + requiresBuild: true dependencies: debug: 4.3.4(supports-color@8.1.1) get-stream: 5.2.0 @@ -10521,6 +11037,19 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 + /fast-glob@3.3.1: + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + engines: {node: '>=8.6.0'} + requiresBuild: true + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: false + optional: true + /fast-json-parse@1.0.3: resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} dev: false @@ -10579,6 +11108,7 @@ packages: /fd-slicer@1.1.0: resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + requiresBuild: true dependencies: pend: 1.2.0 dev: false @@ -10730,6 +11260,7 @@ packages: /follow-redirects@1.15.1: resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} engines: {node: '>=4.0'} + requiresBuild: true peerDependencies: debug: '*' peerDependenciesMeta: @@ -10848,6 +11379,7 @@ packages: /fs-constants@1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + requiresBuild: true /fs-exists-cached@1.0.0: resolution: {integrity: sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==} @@ -10888,8 +11420,8 @@ packages: /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - /fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true @@ -10932,7 +11464,7 @@ packages: '@babel/generator': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 '@babel/preset-typescript': 7.22.5(@babel/core@7.22.5) - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 '@babel/template': 7.22.5 '@babel/types': 7.22.5 '@jridgewell/trace-mapping': 0.3.18 @@ -10948,7 +11480,7 @@ packages: execa: 5.1.1 fs-exists-cached: 1.0.0 fs-extra: 11.1.1 - gatsby-core-utils: 4.11.0 + gatsby-core-utils: 4.12.0 gatsby-telemetry: 4.10.0 hosted-git-info: 3.0.8 is-valid-path: 0.1.1 @@ -10976,7 +11508,7 @@ packages: resolution: {integrity: sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==} engines: {node: '>=18.0.0'} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 ci-info: 2.0.0 configstore: 5.0.1 fastq: 1.15.0 @@ -10993,11 +11525,11 @@ packages: tmp: 0.2.1 xdg-basedir: 4.0.0 - /gatsby-core-utils@4.11.0: - resolution: {integrity: sha512-W7pfrKgBchdk19g802IuPkCA2iJ69lRR1GzkfYjB8d1TuIQqf0l1z0lv7e+2kQqO+uQ5Yt3sGMMN2qMYMWfLXg==} + /gatsby-core-utils@4.12.0: + resolution: {integrity: sha512-1vK0cmL8FNHAddQ5WZt0yTPdFSZuMPNUSsHckM+ZdVmRxyif3aZYSi7ofj6sJo/UvhKj7fBqJv/smZYpp2PRqg==} engines: {node: '>=18.0.0'} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 ci-info: 2.0.0 configstore: 5.0.1 fastq: 1.15.0 @@ -11021,7 +11553,7 @@ packages: /gatsby-legacy-polyfills@3.10.0: resolution: {integrity: sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 core-js-compat: 3.30.1 /gatsby-link@5.10.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.2.0)(react@18.2.0): @@ -11043,11 +11575,11 @@ packages: resolution: {integrity: sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==} engines: {node: '>=18.0.0'} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 bluebird: 3.7.2 chokidar: 3.5.3 fs-exists-cached: 1.0.0 - gatsby-core-utils: 4.11.0 + gatsby-core-utils: 4.12.0 glob: 7.2.3 lodash: 4.17.21 micromatch: 4.0.5 @@ -11173,7 +11705,7 @@ packages: - supports-color dev: false - /gatsby-plugin-mdx@5.0.0(@mdx-js/react@2.3.0)(gatsby-source-filesystem@5.11.0)(gatsby@5.10.0)(graphql@15.8.0)(react-dom@18.2.0)(react@18.2.0): + /gatsby-plugin-mdx@5.0.0(@mdx-js/react@2.3.0)(gatsby-source-filesystem@5.12.0)(gatsby@5.10.0)(graphql@15.8.0)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-4OkotIxp5rpQ1CNFoWrF2XtvwjK0wkvoJrLaHcO+ykQHAa0aU72MJl91RjpIA4iiSQJEMG8HBrSvqIQoKmo51w==} peerDependencies: '@mdx-js/react': ^2.0.0 @@ -11193,7 +11725,7 @@ packages: gatsby: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) gatsby-core-utils: 4.10.0 gatsby-plugin-utils: 4.10.0(gatsby@5.10.0)(graphql@15.8.0) - gatsby-source-filesystem: 5.11.0(gatsby@5.10.0) + gatsby-source-filesystem: 5.12.0(gatsby@5.10.0) gray-matter: 4.0.3 mdast-util-mdx: 2.0.1 mdast-util-to-hast: 10.2.0 @@ -11211,7 +11743,7 @@ packages: - supports-color dev: false - /gatsby-plugin-mdx@5.0.0(@mdx-js/react@2.3.0)(gatsby-source-filesystem@5.11.0)(gatsby@5.10.0)(react-dom@18.2.0)(react@18.2.0): + /gatsby-plugin-mdx@5.0.0(@mdx-js/react@2.3.0)(gatsby-source-filesystem@5.12.0)(gatsby@5.10.0)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-4OkotIxp5rpQ1CNFoWrF2XtvwjK0wkvoJrLaHcO+ykQHAa0aU72MJl91RjpIA4iiSQJEMG8HBrSvqIQoKmo51w==} peerDependencies: '@mdx-js/react': ^2.0.0 @@ -11231,7 +11763,7 @@ packages: gatsby: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) gatsby-core-utils: 4.10.0 gatsby-plugin-utils: 4.10.0(gatsby@5.10.0) - gatsby-source-filesystem: 5.11.0(gatsby@5.10.0) + gatsby-source-filesystem: 5.12.0(gatsby@5.10.0) gray-matter: 4.0.3 mdast-util-mdx: 2.0.1 mdast-util-to-hast: 10.2.0 @@ -11255,14 +11787,14 @@ packages: peerDependencies: gatsby: ^5.0.0-next || ^4 || ^5 dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 '@babel/traverse': 7.22.5 '@sindresorhus/slugify': 1.1.2 chokidar: 3.5.3 fs-exists-cached: 1.0.0 fs-extra: 11.1.1 gatsby: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) - gatsby-core-utils: 4.11.0 + gatsby-core-utils: 4.12.0 gatsby-page-utils: 3.10.0 gatsby-plugin-utils: 4.10.0(gatsby@5.10.0)(graphql@16.6.0) gatsby-telemetry: 4.10.0 @@ -11306,7 +11838,7 @@ packages: '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.5) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.5) '@babel/preset-typescript': 7.22.5(@babel/core@7.22.5) - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 babel-plugin-remove-graphql-queries: 5.10.0(@babel/core@7.22.5)(gatsby@5.10.0) gatsby: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) transitivePeerDependencies: @@ -11322,12 +11854,12 @@ packages: graphql: optional: true dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 fastq: 1.15.0 fs-extra: 11.1.1 gatsby: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) - gatsby-core-utils: 4.11.0 - gatsby-sharp: 1.10.0 + gatsby-core-utils: 4.12.0 + gatsby-sharp: 1.12.0 graphql-compose: 9.0.10(graphql@15.8.0) import-from: 4.0.0 joi: 17.9.2 @@ -11344,12 +11876,12 @@ packages: graphql: optional: true dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 fastq: 1.15.0 fs-extra: 11.1.1 gatsby: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) - gatsby-core-utils: 4.11.0 - gatsby-sharp: 1.10.0 + gatsby-core-utils: 4.12.0 + gatsby-sharp: 1.12.0 graphql: 15.8.0 graphql-compose: 9.0.10(graphql@15.8.0) import-from: 4.0.0 @@ -11367,12 +11899,12 @@ packages: graphql: optional: true dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 fastq: 1.15.0 fs-extra: 11.1.1 gatsby: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) - gatsby-core-utils: 4.11.0 - gatsby-sharp: 1.10.0 + gatsby-core-utils: 4.12.0 + gatsby-sharp: 1.12.0 graphql: 16.6.0 graphql-compose: 9.0.10(graphql@16.6.0) import-from: 4.0.0 @@ -11387,7 +11919,7 @@ packages: react: ^18.0.0 || ^0.0.0 || 18 react-dom: ^18.0.0 || ^0.0.0 dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 '@gatsbyjs/reach-router': 2.0.1(react-dom@18.2.0)(react@18.2.0) prop-types: 15.8.1 react: 18.2.0 @@ -11405,8 +11937,8 @@ packages: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /gatsby-sharp@1.10.0: - resolution: {integrity: sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==} + /gatsby-sharp@1.12.0: + resolution: {integrity: sha512-5MbTPKfzkOCtwT74+FZTUFKaul/2UyF10apvMcmIKomq71/jHf6wJx+rHtSdgyq19r4VWL8DGG2CKgSpe0z9GQ==} engines: {node: '>=18.0.0'} dependencies: sharp: 0.32.1 @@ -11429,22 +11961,22 @@ packages: xstate: 4.37.2 dev: false - /gatsby-source-filesystem@5.11.0(gatsby@5.10.0): - resolution: {integrity: sha512-42CXNzKgGvkZtqmFIIMbEJW5ZpQ5b4TQT7Rk21XsEMkoZT9QchqMG1S2VPK/LPe7LicvGv6zBziGrtn6ttch7w==} + /gatsby-source-filesystem@5.12.0(gatsby@5.10.0): + resolution: {integrity: sha512-0BZkgADBu56vTzZ6TLvrMXhp8MzpEqvtpsI+VRtNTlsu6ULaHRjoMClomlAqWecjBXTkujhwpSjnIfEmpmCaLQ==} engines: {node: '>=18.0.0'} peerDependencies: gatsby: ^5.0.0-next || ^4 || ^5 dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 chokidar: 3.5.3 file-type: 16.5.4 fs-extra: 11.1.1 gatsby: 5.10.0(babel-eslint@10.1.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.3) - gatsby-core-utils: 4.11.0 + gatsby-core-utils: 4.12.0 mime: 3.0.0 pretty-bytes: 5.6.0 valid-url: 1.0.9 - xstate: 4.37.2 + xstate: 4.38.2 dev: false /gatsby-telemetry@4.10.0: @@ -11453,13 +11985,13 @@ packages: requiresBuild: true dependencies: '@babel/code-frame': 7.22.5 - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 '@turist/fetch': 7.2.0(node-fetch@2.6.11) '@turist/time': 0.0.2 boxen: 5.1.2 configstore: 5.0.1 fs-extra: 11.1.1 - gatsby-core-utils: 4.11.0 + gatsby-core-utils: 4.12.0 git-up: 7.0.0 is-docker: 2.2.1 lodash: 4.17.21 @@ -11472,7 +12004,7 @@ packages: engines: {node: '>=18.0.0'} dependencies: '@babel/core': 7.22.5 - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 fs-extra: 11.1.1 signal-exit: 3.0.7 transitivePeerDependencies: @@ -11511,8 +12043,8 @@ packages: '@parcel/core': 2.8.3 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.14.0)(webpack@5.86.0) '@types/http-proxy': 1.17.11 - '@typescript-eslint/eslint-plugin': 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.42.0)(typescript@5.1.3) - '@typescript-eslint/parser': 5.59.11(eslint@8.42.0)(typescript@5.1.3) + '@typescript-eslint/eslint-plugin': 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.49.0)(typescript@5.1.3) + '@typescript-eslint/parser': 5.59.11(eslint@8.49.0)(typescript@5.1.3) '@vercel/webpack-asset-relocator-loader': 1.7.3 acorn-loose: 8.3.0 acorn-walk: 8.2.0 @@ -11551,11 +12083,11 @@ packages: error-stack-parser: 2.1.4 eslint: 7.32.0 eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.59.11)(@typescript-eslint/parser@5.59.11)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.27.5)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@7.32.0)(typescript@5.1.3) - eslint-plugin-flowtype: 5.10.0(eslint@8.42.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.42.0) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.42.0) - eslint-plugin-react: 7.32.2(eslint@8.42.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.42.0) + eslint-plugin-flowtype: 5.10.0(eslint@8.49.0) + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.49.0) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.49.0) + eslint-plugin-react: 7.32.2(eslint@8.49.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.49.0) eslint-webpack-plugin: 2.7.0(eslint@7.32.0)(webpack@5.86.0) event-source-polyfill: 1.0.31 execa: 5.1.1 @@ -11653,7 +12185,7 @@ packages: xstate: 4.37.2 yaml-loader: 0.8.0 optionalDependencies: - gatsby-sharp: 1.10.0 + gatsby-sharp: 1.12.0 transitivePeerDependencies: - '@swc/core' - '@types/webpack' @@ -11854,7 +12386,7 @@ packages: xstate: 4.37.2 yaml-loader: 0.8.0 optionalDependencies: - gatsby-sharp: 1.10.0 + gatsby-sharp: 1.12.0 transitivePeerDependencies: - '@swc/core' - '@types/webpack' @@ -11998,6 +12530,7 @@ packages: /getos@3.2.1: resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} + requiresBuild: true dependencies: async: 3.2.4 dev: false @@ -12052,6 +12585,7 @@ packages: /github-from-package@0.0.0: resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} + requiresBuild: true /github-slugger@1.4.0: resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==} @@ -12125,6 +12659,7 @@ packages: /global-dirs@3.0.0: resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==} engines: {node: '>=10'} + requiresBuild: true dependencies: ini: 2.0.0 dev: false @@ -12154,6 +12689,12 @@ packages: dependencies: type-fest: 0.20.2 + /globals@13.22.0: + resolution: {integrity: sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + /globalthis@1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} @@ -12477,14 +13018,14 @@ packages: resolution: {integrity: sha512-O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA==} dependencies: '@types/hast': 2.3.4 - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 dev: false /hast-util-select@5.0.5: resolution: {integrity: sha512-QQhWMhgTFRhCaQdgTKzZ5g31GLQ9qRb1hZtDPMqQaOhpLBziWcshUS0uCR5IJ0U1jrK/mxg35fmcq+Dp/Cy2Aw==} dependencies: '@types/hast': 2.3.4 - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 bcp-47-match: 2.0.3 comma-separated-tokens: 2.0.3 css-selector-parser: 1.4.1 @@ -12506,7 +13047,7 @@ packages: '@types/estree': 1.0.1 '@types/estree-jsx': 1.0.0 '@types/hast': 2.3.4 - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 comma-separated-tokens: 2.0.3 estree-util-attach-comments: 2.1.1 estree-util-is-identifier-name: 2.1.0 @@ -12531,7 +13072,7 @@ packages: resolution: {integrity: sha512-tcllLfp23dJJ+ju5wCCZHVpzsQQ43+moJbqVX3jNWPB7z/KFC4FyZD6R7y94cHL6MQ33YtMZL8Z0aIXXI4XFTw==} dependencies: '@types/hast': 2.3.4 - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 hast-util-is-element: 2.1.3 unist-util-find-after: 4.0.1 dev: false @@ -12650,6 +13191,7 @@ packages: /http-signature@1.3.6: resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} engines: {node: '>=0.10'} + requiresBuild: true dependencies: assert-plus: 1.0.0 jsprim: 2.0.2 @@ -12684,6 +13226,7 @@ packages: /human-signals@1.1.1: resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} engines: {node: '>=8.12.0'} + requiresBuild: true dev: false optional: true @@ -12742,6 +13285,7 @@ packages: resolution: {integrity: sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==} engines: {node: '>=14.0.0'} hasBin: true + requiresBuild: true dependencies: queue: 6.0.2 dev: false @@ -12821,6 +13365,7 @@ packages: /ini@2.0.0: resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} engines: {node: '>=10'} + requiresBuild: true dev: false optional: true @@ -12994,6 +13539,7 @@ packages: /is-ci@3.0.1: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true + requiresBuild: true dependencies: ci-info: 3.8.0 dev: false @@ -13010,6 +13556,12 @@ packages: dependencies: has: 1.0.3 + /is-core-module@2.13.0: + resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} + dependencies: + has: 1.0.3 + dev: false + /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} @@ -13085,6 +13637,7 @@ packages: /is-installed-globally@0.4.0: resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} engines: {node: '>=10'} + requiresBuild: true dependencies: global-dirs: 3.0.0 is-path-inside: 3.0.3 @@ -13613,6 +14166,11 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: false + /jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: false + /jest-haste-map@29.5.0: resolution: {integrity: sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -13629,7 +14187,26 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 + dev: false + + /jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.7 + '@types/node': 20.6.3 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + jest-worker: 29.7.0 + micromatch: 4.0.5 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 dev: false /jest-leak-detector@29.5.0: @@ -13694,11 +14271,28 @@ packages: jest-resolve: 29.5.0 dev: false + /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 29.7.0 + dev: false + /jest-regex-util@29.4.3: resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: false + /jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: false + /jest-resolve-dependencies@29.5.0: resolution: {integrity: sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -13724,6 +14318,21 @@ packages: slash: 3.0.0 dev: false + /jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) + jest-util: 29.7.0 + jest-validate: 29.7.0 + resolve: 1.22.6 + resolve.exports: 2.0.2 + slash: 3.0.0 + dev: false + /jest-runner@29.5.0: resolution: {integrity: sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -13814,12 +14423,12 @@ packages: - supports-color dev: false - /jest-ts-webcompat-resolver@1.0.0(jest-resolve@29.5.0): + /jest-ts-webcompat-resolver@1.0.0(jest-resolve@29.7.0): resolution: {integrity: sha512-BFoaU7LeYqZNnTYEr6iMRf87xdCQntNc/Wk8YpzDBcuz+CIZ0JsTtzuMAMnKiEgTRTC1wRWLUo2RlVjVijBcHQ==} peerDependencies: jest-resolve: '*' dependencies: - jest-resolve: 29.5.0 + jest-resolve: 29.7.0 dev: false /jest-util@29.5.0: @@ -13834,6 +14443,18 @@ packages: picomatch: 2.3.1 dev: false + /jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.6.3 + chalk: 4.1.2 + ci-info: 3.8.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 + dev: false + /jest-validate@29.5.0: resolution: {integrity: sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -13846,6 +14467,18 @@ packages: pretty-format: 29.5.0 dev: false + /jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 29.6.3 + leven: 3.1.0 + pretty-format: 29.7.0 + dev: false + /jest-watcher@29.5.0: resolution: {integrity: sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -13886,6 +14519,16 @@ packages: supports-color: 8.1.1 dev: false + /jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@types/node': 20.6.3 + jest-util: 29.7.0 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: false + /jest@29.5.0(@types/node@20.3.1): resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -13908,6 +14551,7 @@ packages: /joi@17.6.0: resolution: {integrity: sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==} + requiresBuild: true dependencies: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 @@ -14019,7 +14663,7 @@ packages: resolution: {integrity: sha512-TuDuZ5KrgyjoCIppdPXBMqiGfota55+odM+j2cQ5rt/XKyKmqGB3Whz1F8SN8+60yYGy/Nu5lbRZ+rx8kBIvBw==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 chalk: 4.1.2 pegjs: 0.10.0 dev: false @@ -14087,6 +14731,7 @@ packages: /jsprim@2.0.2: resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} engines: {'0': node >=0.6.0} + requiresBuild: true dependencies: assert-plus: 1.0.0 extsprintf: 1.3.0 @@ -14144,6 +14789,7 @@ packages: /lazy-ass@1.6.0: resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} engines: {node: '> 0.8'} + requiresBuild: true dev: false optional: true @@ -14182,6 +14828,7 @@ packages: /listr2@3.14.0(enquirer@2.3.6): resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} engines: {node: '>=10.0.0'} + requiresBuild: true peerDependencies: enquirer: '>= 2.3.0 < 3' peerDependenciesMeta: @@ -14345,6 +14992,7 @@ packages: /lodash.once@4.1.1: resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + requiresBuild: true dev: false optional: true @@ -14377,6 +15025,7 @@ packages: /log-update@4.0.0: resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} engines: {node: '>=10'} + requiresBuild: true dependencies: ansi-escapes: 4.3.2 cli-cursor: 3.1.0 @@ -14446,6 +15095,7 @@ packages: /lz-string@1.4.4: resolution: {integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==} hasBin: true + requiresBuild: true dev: false optional: true @@ -14526,8 +15176,8 @@ packages: repeat-string: 1.6.1 dev: false - /markdown-table@3.0.2: - resolution: {integrity: sha512-y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA==} + /markdown-table@3.0.3: + resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} dev: true /marked-terminal@3.3.0(marked@0.7.0): @@ -14563,8 +15213,8 @@ packages: /mdast-util-definitions@5.1.2: resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} dependencies: - '@types/mdast': 3.0.11 - '@types/unist': 2.0.6 + '@types/mdast': 3.0.12 + '@types/unist': 2.0.8 unist-util-visit: 4.1.2 /mdast-util-find-and-replace@1.1.1: @@ -14575,9 +15225,10 @@ packages: unist-util-visit-parents: 3.1.1 dev: false - /mdast-util-find-and-replace@2.2.1: - resolution: {integrity: sha512-SobxkQXFAdd4b5WmEakmkVoh18icjQRxGy5OWTCzgsLRm1Fu/KCtwD1HIQSsmq5ZRjVH0Ehwg6/Fn3xIUk+nKw==} + /mdast-util-find-and-replace@2.2.2: + resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} dependencies: + '@types/mdast': 3.0.12 escape-string-regexp: 5.0.0 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 @@ -14586,8 +15237,8 @@ packages: /mdast-util-from-markdown@1.3.1: resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} dependencies: - '@types/mdast': 3.0.11 - '@types/unist': 2.0.6 + '@types/mdast': 3.0.12 + '@types/unist': 2.0.8 decode-named-character-reference: 1.0.2 mdast-util-to-string: 3.2.0 micromark: 3.2.0 @@ -14611,19 +15262,19 @@ packages: - supports-color dev: false - /mdast-util-gfm-autolink-literal@1.0.2: - resolution: {integrity: sha512-FzopkOd4xTTBeGXhXSBU0OCDDh5lUj2rd+HQqG92Ld+jL4lpUfgX2AT2OHAVP9aEeDKp7G92fuooSZcYJA3cRg==} + /mdast-util-gfm-autolink-literal@1.0.3: + resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} dependencies: - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 ccount: 2.0.1 - mdast-util-find-and-replace: 2.2.1 + mdast-util-find-and-replace: 2.2.2 micromark-util-character: 1.2.0 dev: true - /mdast-util-gfm-footnote@1.0.1: - resolution: {integrity: sha512-p+PrYlkw9DeCRkTVw1duWqPRHX6Ywh2BNKJQcZbCwAuP/59B0Lk9kakuAd7KbQprVO4GzdW8eS5++A9PUSqIyw==} + /mdast-util-gfm-footnote@1.0.2: + resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} dependencies: - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 mdast-util-to-markdown: 1.5.0 micromark-util-normalize-identifier: 1.1.0 dev: true @@ -14634,10 +15285,10 @@ packages: mdast-util-to-markdown: 0.6.5 dev: false - /mdast-util-gfm-strikethrough@1.0.1: - resolution: {integrity: sha512-zKJbEPe+JP6EUv0mZ0tQUyLQOC+FADt0bARldONot/nefuISkaZFlmVK4tU6JgfyZGrky02m/I6PmehgAgZgqg==} + /mdast-util-gfm-strikethrough@1.0.3: + resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} dependencies: - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 mdast-util-to-markdown: 1.5.0 dev: true @@ -14648,10 +15299,11 @@ packages: mdast-util-to-markdown: 0.6.5 dev: false - /mdast-util-gfm-table@1.0.4: - resolution: {integrity: sha512-aEuoPwZyP4iIMkf2cLWXxx3EQ6Bmh2yKy9MVCg4i6Sd3cX80dcLEfXO/V4ul3pGH9czBK4kp+FAl+ZHmSUt9/w==} + /mdast-util-gfm-table@1.0.7: + resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} dependencies: - markdown-table: 3.0.2 + '@types/mdast': 3.0.12 + markdown-table: 3.0.3 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -14664,10 +15316,10 @@ packages: mdast-util-to-markdown: 0.6.5 dev: false - /mdast-util-gfm-task-list-item@1.0.1: - resolution: {integrity: sha512-KZ4KLmPdABXOsfnM6JHUIjxEvcx2ulk656Z/4Balw071/5qgnhz+H1uGtf2zIGnrnvDC8xR4Fj9uKbjAFGNIeA==} + /mdast-util-gfm-task-list-item@1.0.2: + resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} dependencies: - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 mdast-util-to-markdown: 1.5.0 dev: true @@ -14683,15 +15335,15 @@ packages: - supports-color dev: false - /mdast-util-gfm@2.0.1: - resolution: {integrity: sha512-42yHBbfWIFisaAfV1eixlabbsa6q7vHeSPY+cg+BBjX51M8xhgMacqH9g6TftB/9+YkcI0ooV4ncfrJslzm/RQ==} + /mdast-util-gfm@2.0.2: + resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} dependencies: mdast-util-from-markdown: 1.3.1 - mdast-util-gfm-autolink-literal: 1.0.2 - mdast-util-gfm-footnote: 1.0.1 - mdast-util-gfm-strikethrough: 1.0.1 - mdast-util-gfm-table: 1.0.4 - mdast-util-gfm-task-list-item: 1.0.1 + mdast-util-gfm-autolink-literal: 1.0.3 + mdast-util-gfm-footnote: 1.0.2 + mdast-util-gfm-strikethrough: 1.0.3 + mdast-util-gfm-table: 1.0.7 + mdast-util-gfm-task-list-item: 1.0.2 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: - supports-color @@ -14702,7 +15354,7 @@ packages: dependencies: '@types/estree-jsx': 1.0.0 '@types/hast': 2.3.4 - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -14713,8 +15365,8 @@ packages: dependencies: '@types/estree-jsx': 1.0.0 '@types/hast': 2.3.4 - '@types/mdast': 3.0.11 - '@types/unist': 2.0.6 + '@types/mdast': 3.0.12 + '@types/unist': 2.0.8 ccount: 2.0.1 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 @@ -14742,7 +15394,7 @@ packages: dependencies: '@types/estree-jsx': 1.0.0 '@types/hast': 2.3.4 - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -14751,14 +15403,14 @@ packages: /mdast-util-phrasing@3.0.1: resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} dependencies: - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 unist-util-is: 5.2.1 /mdast-util-to-hast@10.2.0: resolution: {integrity: sha512-JoPBfJ3gBnHZ18icCwHR50orC9kNH81tiR1gs01D8Q5YpV6adHNO9nKNuFBCJQ941/32PT1a63UF/DitmS3amQ==} dependencies: '@types/mdast': 3.0.11 - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 mdast-util-definitions: 4.0.0 mdurl: 1.0.1 unist-builder: 2.0.3 @@ -14771,7 +15423,7 @@ packages: resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} dependencies: '@types/hast': 2.3.4 - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 mdast-util-definitions: 5.1.2 micromark-util-sanitize-uri: 1.2.0 trim-lines: 3.0.1 @@ -14782,7 +15434,7 @@ packages: /mdast-util-to-markdown@0.6.5: resolution: {integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 longest-streak: 2.0.4 mdast-util-to-string: 2.0.0 parse-entities: 2.0.0 @@ -14794,7 +15446,7 @@ packages: resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} dependencies: '@types/mdast': 3.0.11 - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 longest-streak: 3.1.0 mdast-util-phrasing: 3.0.1 mdast-util-to-string: 3.2.0 @@ -14813,7 +15465,7 @@ packages: /mdast-util-to-string@3.2.0: resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} dependencies: - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 /mdast-util-toc@6.1.1: resolution: {integrity: sha512-Er21728Kow8hehecK2GZtb7Ny3omcoPUVrmObiSUwmoRYVZaXLR751QROEFjR8W/vAQdHMLj49Lz20J55XaNpw==} @@ -14954,18 +15606,17 @@ packages: - supports-color dev: false - /micromark-extension-gfm-autolink-literal@1.0.3: - resolution: {integrity: sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==} + /micromark-extension-gfm-autolink-literal@1.0.5: + resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} dependencies: micromark-util-character: 1.2.0 micromark-util-sanitize-uri: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 - uvu: 0.5.6 dev: true - /micromark-extension-gfm-footnote@1.0.4: - resolution: {integrity: sha512-E/fmPmDqLiMUP8mLJ8NbJWJ4bTw6tS+FEQS8CcuDtZpILuOb2kjLqPEeAePF1djXROHXChM/wPJw0iS4kHCcIg==} + /micromark-extension-gfm-footnote@1.1.2: + resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} dependencies: micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -14985,8 +15636,8 @@ packages: - supports-color dev: false - /micromark-extension-gfm-strikethrough@1.0.4: - resolution: {integrity: sha512-/vjHU/lalmjZCT5xt7CcHVJGq8sYRm80z24qAKXzaHzem/xsDYb2yLL+NNVbYvmpLx3O7SYPuGL5pzusL9CLIQ==} + /micromark-extension-gfm-strikethrough@1.0.7: + resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} dependencies: micromark-util-chunked: 1.1.0 micromark-util-classify-character: 1.1.0 @@ -15004,8 +15655,8 @@ packages: - supports-color dev: false - /micromark-extension-gfm-table@1.0.5: - resolution: {integrity: sha512-xAZ8J1X9W9K3JTJTUL7G6wSKhp2ZYHrFk5qJgY/4B33scJzE2kpfRL6oiw/veJTbt7jiM/1rngLlOKPWr1G+vg==} + /micromark-extension-gfm-table@1.0.7: + resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -15018,8 +15669,8 @@ packages: resolution: {integrity: sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==} dev: false - /micromark-extension-gfm-tagfilter@1.0.1: - resolution: {integrity: sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==} + /micromark-extension-gfm-tagfilter@1.0.2: + resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} dependencies: micromark-util-types: 1.1.0 dev: true @@ -15032,8 +15683,8 @@ packages: - supports-color dev: false - /micromark-extension-gfm-task-list-item@1.0.3: - resolution: {integrity: sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==} + /micromark-extension-gfm-task-list-item@1.0.5: + resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -15055,15 +15706,15 @@ packages: - supports-color dev: false - /micromark-extension-gfm@2.0.1: - resolution: {integrity: sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==} + /micromark-extension-gfm@2.0.3: + resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} dependencies: - micromark-extension-gfm-autolink-literal: 1.0.3 - micromark-extension-gfm-footnote: 1.0.4 - micromark-extension-gfm-strikethrough: 1.0.4 - micromark-extension-gfm-table: 1.0.5 - micromark-extension-gfm-tagfilter: 1.0.1 - micromark-extension-gfm-task-list-item: 1.0.3 + micromark-extension-gfm-autolink-literal: 1.0.5 + micromark-extension-gfm-footnote: 1.1.2 + micromark-extension-gfm-strikethrough: 1.0.7 + micromark-extension-gfm-table: 1.0.7 + micromark-extension-gfm-tagfilter: 1.0.2 + micromark-extension-gfm-task-list-item: 1.0.5 micromark-util-combine-extensions: 1.1.0 micromark-util-types: 1.1.0 dev: true @@ -15218,7 +15869,7 @@ packages: dependencies: '@types/acorn': 4.0.6 '@types/estree': 1.0.1 - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 estree-util-visit: 1.2.1 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 @@ -15402,6 +16053,7 @@ packages: /mkdirp-classic@0.5.3: resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + requiresBuild: true /mkdirp@0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} @@ -15510,6 +16162,7 @@ packages: /napi-build-utils@1.0.2: resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + requiresBuild: true /natural-compare-lite@1.4.0: resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} @@ -15586,6 +16239,7 @@ packages: /node-abi@3.24.0: resolution: {integrity: sha512-YPG3Co0luSu6GwOBsmIdGW6Wx0NyNDLg/hriIyDllVsNwnI6UeqaWShxC3lbH4LtEQUgoLP3XR1ndXiDAWvmRw==} engines: {node: '>=10'} + requiresBuild: true dependencies: semver: 7.5.1 @@ -15597,6 +16251,7 @@ packages: /node-addon-api@6.1.0: resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} + requiresBuild: true /node-emoji@1.11.0: resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==} @@ -15640,6 +16295,7 @@ packages: /node-gyp-build-optional-packages@5.0.7: resolution: {integrity: sha512-YlCCc6Wffkx0kHkmam79GKvDQ6x+QZkMjFGrIMxgFNILFvGSbCp2fCBC55pGTT9gVaz8Na5CLmxt/urtzRv36w==} hasBin: true + requiresBuild: true optional: true /node-gyp-build@4.6.0: @@ -15662,6 +16318,10 @@ packages: /node-releases@2.0.12: resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==} + /node-releases@2.0.13: + resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} + dev: false + /normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: @@ -15944,6 +16604,17 @@ packages: type-check: 0.4.0 word-wrap: 1.2.3 + /optionator@0.9.3: + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + engines: {node: '>= 0.8.0'} + dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + /ordered-binary@1.4.0: resolution: {integrity: sha512-EHQ/jk4/a9hLupIKxTfUsQRej1Yd/0QLQs3vGvIqg5ZtCYSzNhkzHoZc7Zf4e4kUlDaC3Uw8Q/1opOLNN2OKRQ==} @@ -15958,6 +16629,7 @@ packages: /ospath@1.2.2: resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} + requiresBuild: true dev: false optional: true @@ -16028,6 +16700,7 @@ packages: /p-map@4.0.0: resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} engines: {node: '>=10'} + requiresBuild: true dependencies: aggregate-error: 3.1.0 dev: false @@ -16095,7 +16768,7 @@ packages: /parse-entities@4.0.1: resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 character-entities: 2.0.2 character-entities-legacy: 3.0.0 character-reference-invalid: 2.0.1 @@ -16237,6 +16910,7 @@ packages: /path-to-regexp@6.2.1: resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==} + requiresBuild: true dev: false optional: true @@ -16263,6 +16937,7 @@ packages: /pend@1.2.0: resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + requiresBuild: true dev: false optional: true @@ -16573,13 +17248,13 @@ packages: resolve: 1.22.2 dev: false - /postcss-import@14.1.0(postcss@8.4.24): + /postcss-import@14.1.0(postcss@8.4.30): resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.24 + postcss: 8.4.30 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.2 @@ -16593,17 +17268,17 @@ packages: postcss: 8.4.16 dev: true - /postcss-js@4.0.0(postcss@8.4.24): + /postcss-js@4.0.0(postcss@8.4.30): resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.24 + postcss: 8.4.30 dev: true - /postcss-load-config@3.1.4(postcss@8.4.24): + /postcss-load-config@3.1.4(postcss@8.4.30): resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -16616,7 +17291,7 @@ packages: optional: true dependencies: lilconfig: 2.0.6 - postcss: 8.4.24 + postcss: 8.4.30 yaml: 1.10.2 dev: true @@ -16793,13 +17468,13 @@ packages: icss-utils: 5.1.0(postcss@8.4.24) postcss: 8.4.24 - /postcss-nested@5.0.6(postcss@8.4.24): + /postcss-nested@5.0.6(postcss@8.4.30): resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.24 + postcss: 8.4.30 postcss-selector-parser: 6.0.10 dev: true @@ -17111,6 +17786,15 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 + /postcss@8.4.30: + resolution: {integrity: sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.6 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + /postinstall-postinstall@2.1.0: resolution: {integrity: sha512-7hQX6ZlZXIoRiWNrbMQaLzUUfH+sSx39u8EJ9HYuDc1kLo9IXKWjM5RSquZN1ad5GnH8CGFM78fsAAQi3OKEEQ==} requiresBuild: true @@ -17120,6 +17804,7 @@ packages: resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} engines: {node: '>=10'} hasBin: true + requiresBuild: true dependencies: detect-libc: 2.0.1 expand-template: 2.0.3 @@ -17183,6 +17868,15 @@ packages: react-is: 18.2.0 dev: false + /pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.6.3 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: false + /pretty-ms@7.0.1: resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==} engines: {node: '>=10'} @@ -17260,6 +17954,7 @@ packages: /proxy-from-env@1.0.0: resolution: {integrity: sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4=} + requiresBuild: true dev: false optional: true @@ -17339,6 +18034,7 @@ packages: /queue@6.0.2: resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} + requiresBuild: true dependencies: inherits: 2.0.4 dev: false @@ -17741,7 +18437,7 @@ packages: /redux@4.2.1: resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 /regenerate-unicode-properties@10.1.0: resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} @@ -17770,10 +18466,13 @@ packages: /regenerator-runtime@0.13.11: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + /regenerator-runtime@0.14.0: + resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} + /regenerator-transform@0.15.1: resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 /regex-escape@3.4.10: resolution: {integrity: sha512-qEqf7uzW+iYcKNLMDFnMkghhQBnGdivT6KqVQyKsyjSWnoFyooXVnxrw9dtv3AFLnD6VBGXxtZGAQNFGFTnCqA==} @@ -17874,7 +18573,7 @@ packages: /relay-runtime@12.0.0: resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} dependencies: - '@babel/runtime': 7.22.5 + '@babel/runtime': 7.22.15 fbjs: 3.0.4 invariant: 2.2.4 transitivePeerDependencies: @@ -17892,9 +18591,9 @@ packages: /remark-gfm@3.0.1: resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} dependencies: - '@types/mdast': 3.0.11 - mdast-util-gfm: 2.0.1 - micromark-extension-gfm: 2.0.1 + '@types/mdast': 3.0.12 + mdast-util-gfm: 2.0.2 + micromark-extension-gfm: 2.0.3 unified: 10.1.2 transitivePeerDependencies: - supports-color @@ -17911,7 +18610,7 @@ packages: /remark-parse@10.0.2: resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} dependencies: - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 mdast-util-from-markdown: 1.3.1 unified: 10.1.2 transitivePeerDependencies: @@ -17921,7 +18620,7 @@ packages: resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} dependencies: '@types/hast': 2.3.4 - '@types/mdast': 3.0.11 + '@types/mdast': 3.0.12 mdast-util-to-hast: 12.3.0 unified: 10.1.2 @@ -17965,6 +18664,7 @@ packages: /request-progress@3.0.0: resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} + requiresBuild: true dependencies: throttleit: 1.0.0 dev: false @@ -18095,6 +18795,15 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + /resolve@1.22.6: + resolution: {integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==} + hasBin: true + dependencies: + is-core-module: 2.13.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: false + /resolve@1.7.1: resolution: {integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==} dependencies: @@ -18123,6 +18832,7 @@ packages: /restore-cursor@3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} + requiresBuild: true dependencies: onetime: 5.1.2 signal-exit: 3.0.7 @@ -18137,6 +18847,7 @@ packages: /rfdc@1.3.0: resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} + requiresBuild: true dev: false optional: true @@ -18165,7 +18876,7 @@ packages: engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 dev: false /rtlcss@2.5.0: @@ -18196,6 +18907,7 @@ packages: /rxjs@7.5.6: resolution: {integrity: sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==} + requiresBuild: true dependencies: tslib: 2.4.0 dev: false @@ -18263,6 +18975,15 @@ packages: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) + /schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} + dependencies: + '@types/json-schema': 7.0.13 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + dev: false + /section-matter@1.0.0: resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} engines: {node: '>=4'} @@ -18418,9 +19139,11 @@ packages: /simple-concat@1.0.1: resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + requiresBuild: true /simple-get@4.0.1: resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} + requiresBuild: true dependencies: decompress-response: 6.0.0 once: 1.4.0 @@ -18451,6 +19174,7 @@ packages: /slice-ansi@3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} engines: {node: '>=8'} + requiresBuild: true dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 @@ -19107,7 +19831,7 @@ packages: tachyons-build-css: 1.8.1 dev: false - /tailwindcss@3.1.8(postcss@8.4.24): + /tailwindcss@3.1.8(postcss@8.4.30): resolution: {integrity: sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g==} engines: {node: '>=12.13.0'} hasBin: true @@ -19127,11 +19851,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.24 - postcss-import: 14.1.0(postcss@8.4.24) - postcss-js: 4.0.0(postcss@8.4.24) - postcss-load-config: 3.1.4(postcss@8.4.24) - postcss-nested: 5.0.6(postcss@8.4.24) + postcss: 8.4.30 + postcss-import: 14.1.0(postcss@8.4.30) + postcss-js: 4.0.0(postcss@8.4.30) + postcss-load-config: 3.1.4(postcss@8.4.30) + postcss-nested: 5.0.6(postcss@8.4.30) postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -19150,6 +19874,7 @@ packages: /tar-fs@2.1.1: resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + requiresBuild: true dependencies: chownr: 1.1.4 mkdirp-classic: 0.5.3 @@ -19159,6 +19884,7 @@ packages: /tar-stream@2.2.0: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} engines: {node: '>=6'} + requiresBuild: true dependencies: bl: 4.1.0 end-of-stream: 1.4.4 @@ -19197,6 +19923,30 @@ packages: terser: 5.18.0 webpack: 5.86.0 + /terser-webpack-plugin@5.3.9(webpack@5.88.2): + resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': 0.3.18 + jest-worker: 27.5.1 + schema-utils: 3.2.0 + serialize-javascript: 6.0.1 + terser: 5.18.0 + webpack: 5.88.2 + dev: false + /terser@5.17.7: resolution: {integrity: sha512-/bi0Zm2C6VAexlGgLlVxA0P2lru/sdLyfCVaRMfKVo9nWxbmz7f/sD8VPybPeSUJaJcwmCJis9pBIhcVcG1QcQ==} engines: {node: '>=10'} @@ -19248,6 +19998,7 @@ packages: /throttleit@1.0.0: resolution: {integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==} + requiresBuild: true dev: false optional: true @@ -19378,7 +20129,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' + '@babel/core': 7.22.5 '@jest/types': ^29.0.0 babel-jest: ^29.0.0 esbuild: '*' @@ -19960,7 +20711,7 @@ packages: /unified@10.1.2: resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 bail: 2.0.2 extend: 3.0.2 is-buffer: 2.0.5 @@ -19989,7 +20740,7 @@ packages: /unist-util-find-after@4.0.1: resolution: {integrity: sha512-QO/PuPMm2ERxC6vFXEPtmAutOopy5PknD+Oq64gGwxKtk4xwo9Z97t9Av1obPmGU0IyTa6EKYUfTrK2QJS3Ozw==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 unist-util-is: 5.2.1 dev: false @@ -20007,12 +20758,12 @@ packages: /unist-util-is@5.2.1: resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 /unist-util-position-from-estree@1.1.2: resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 /unist-util-position@3.1.0: resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} @@ -20021,36 +20772,36 @@ packages: /unist-util-position@4.0.4: resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 /unist-util-remove-position@4.0.2: resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 unist-util-visit: 4.1.2 /unist-util-stringify-position@3.0.3: resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 /unist-util-visit-parents@3.1.1: resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 unist-util-is: 4.1.0 dev: false /unist-util-visit-parents@5.1.3: resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 unist-util-is: 5.2.1 /unist-util-visit@2.0.3: resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 dev: false @@ -20058,7 +20809,7 @@ packages: /unist-util-visit@4.1.2: resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 @@ -20088,6 +20839,7 @@ packages: /untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} engines: {node: '>=8'} + requiresBuild: true dev: false optional: true @@ -20111,6 +20863,17 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 + /update-browserslist-db@1.0.13(browserslist@4.21.11): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.11 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: false + /upper-case-first@2.0.2: resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} dependencies: @@ -20249,13 +21012,13 @@ packages: /vfile-message@3.1.4: resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 unist-util-stringify-position: 3.0.3 /vfile@5.3.7: resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} dependencies: - '@types/unist': 2.0.6 + '@types/unist': 2.0.8 is-buffer: 2.0.5 unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 @@ -20391,6 +21154,46 @@ packages: - esbuild - uglify-js + /webpack@5.88.2: + resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.4 + '@types/estree': 1.0.1 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/wasm-edit': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 + acorn: 8.10.0 + acorn-import-assertions: 1.9.0(acorn@8.10.0) + browserslist: 4.21.11 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.15.0 + es-module-lexer: 1.3.1 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.3.0 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.9(webpack@5.88.2) + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + dev: false + /whatwg-encoding@2.0.0: resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} engines: {node: '>=12'} @@ -20569,6 +21372,21 @@ packages: optional: true dev: false + /ws@8.14.2: + resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==} + engines: {node: '>=10.0.0'} + requiresBuild: true + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: false + optional: true + /xdg-basedir@4.0.0: resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} engines: {node: '>=8'} @@ -20589,6 +21407,10 @@ packages: /xstate@4.37.2: resolution: {integrity: sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==} + /xstate@4.38.2: + resolution: {integrity: sha512-Fba/DwEPDLneHT3tbJ9F3zafbQXszOlyCJyQqqdzmtlY/cwE2th462KK48yaANf98jHlP6lJvxfNtN0LFKXPQg==} + dev: false + /xtend@4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} @@ -20625,16 +21447,17 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - /yaml@2.2.2: - resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==} - engines: {node: '>= 14'} - dev: false - optional: true - /yaml@2.3.1: resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} engines: {node: '>= 14'} + /yaml@2.3.2: + resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==} + engines: {node: '>= 14'} + requiresBuild: true + dev: false + optional: true + /yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} @@ -20696,6 +21519,7 @@ packages: /yauzl@2.10.0: resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + requiresBuild: true dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 From e81549add7facd792c532367d70d54d44563efcb Mon Sep 17 00:00:00 2001 From: Piotr Monwid-Olechnowicz Date: Tue, 26 Sep 2023 17:57:45 +0200 Subject: [PATCH 2/7] chore: add more logging to getVersion --- scripts/publish-to-npm.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/publish-to-npm.mjs b/scripts/publish-to-npm.mjs index 94e5c72e9..fdc0c4380 100644 --- a/scripts/publish-to-npm.mjs +++ b/scripts/publish-to-npm.mjs @@ -68,6 +68,8 @@ function getVersion(packageJson) { .trim() .slice(1) // remove leading "v" + console.log('Latest tag version:', latestTagVersion) + console.log('Root package.json version:', packageJson.version) const version = semver.gt(packageJson.version, latestTagVersion) ? packageJson.version : latestTagVersion From 8b3ebe596c3d90890d6977500ece4dbf36a051b6 Mon Sep 17 00:00:00 2001 From: Piotr Monwid-Olechnowicz Date: Tue, 26 Sep 2023 18:01:58 +0200 Subject: [PATCH 3/7] ci(publish): add even more logging --- scripts/publish-to-npm.mjs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/publish-to-npm.mjs b/scripts/publish-to-npm.mjs index fdc0c4380..9dd6a181e 100644 --- a/scripts/publish-to-npm.mjs +++ b/scripts/publish-to-npm.mjs @@ -13,12 +13,13 @@ import packageJson from '../package.json' assert { type: 'json' } const version = getVersion(packageJson) const branch = exec('git branch --show-current', { stdio: 'pipe' })[0].trim() + console.log('Current branch:', branch) await setVersions({ version }) if (checkStatus() === 'clear') process.exit(0) - commitAndPush({ version }) + commitAndPush({ version, branch }) publishToNPM({ tag: branch === PRODUCTION_BRANCH @@ -78,14 +79,14 @@ function getVersion(packageJson) { } /** - * @param {{ version: string }} params + * @param {{ version: string, branch: string }} params */ -function commitAndPush({ version }) { +function commitAndPush({ version, branch }) { exec(` git config user.name 'Piotr Monwid-Olechnowicz' git config user.email 'hasparus@gmail.com' git commit -am "Bump versions to: ${version} [skip ci]" - git push + git push origin HEAD:${branch} `) } From 6f29731c58d6ba45a26072850f4f9fbb5af86b2e Mon Sep 17 00:00:00 2001 From: Piotr Monwid-Olechnowicz Date: Tue, 26 Sep 2023 18:12:42 +0200 Subject: [PATCH 4/7] ci(publish): tweak CI config for actions/checkout@v4 --- .github/workflows/ci.yml | 18 +++++++++--------- scripts/publish-to-npm.mjs | 8 ++++---- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37f10c9a3..52d42d616 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,15 +13,15 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: pnpm/action-setup@v2 with: - version: 7 + version: 8 - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 20.x cache: 'pnpm' - name: Install @@ -74,18 +74,18 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} steps: - - uses: actions/checkout@v3 - - - name: Prepare repository - run: git fetch --unshallow --tags + - uses: actions/checkout@v4 + with: + fetch-depth: 100 + fetch-tags: true - uses: pnpm/action-setup@v2 with: - version: 7 + version: 8 - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 20.x cache: 'pnpm' registry-url: 'https://registry.npmjs.org' diff --git a/scripts/publish-to-npm.mjs b/scripts/publish-to-npm.mjs index 9dd6a181e..8e834097e 100644 --- a/scripts/publish-to-npm.mjs +++ b/scripts/publish-to-npm.mjs @@ -19,7 +19,7 @@ import packageJson from '../package.json' assert { type: 'json' } if (checkStatus() === 'clear') process.exit(0) - commitAndPush({ version, branch }) + commitAndPush({ version }) publishToNPM({ tag: branch === PRODUCTION_BRANCH @@ -79,14 +79,14 @@ function getVersion(packageJson) { } /** - * @param {{ version: string, branch: string }} params + * @param {{ version: string }} params */ -function commitAndPush({ version, branch }) { +function commitAndPush({ version }) { exec(` git config user.name 'Piotr Monwid-Olechnowicz' git config user.email 'hasparus@gmail.com' git commit -am "Bump versions to: ${version} [skip ci]" - git push origin HEAD:${branch} + git push `) } From efd1e3f60f65eae58aeb73efa1324e463725cc6e Mon Sep 17 00:00:00 2001 From: Piotr Monwid-Olechnowicz Date: Tue, 26 Sep 2023 18:47:09 +0200 Subject: [PATCH 5/7] chore: always read branch name --- .github/workflows/ci.yml | 1 + scripts/publish-to-npm.mjs | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52d42d616..879fa09e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,6 +105,7 @@ jobs: # continue-on-error: true env: GITHUB_TOKEN: ${{ secrets.AUTO_RELEASE_GH_TOKEN }} + BRANCH_NAME: ${{ github.head_ref || github.ref_name }} run: pnpm release - name: Check published prerelease diff --git a/scripts/publish-to-npm.mjs b/scripts/publish-to-npm.mjs index 8e834097e..6933fa50d 100644 --- a/scripts/publish-to-npm.mjs +++ b/scripts/publish-to-npm.mjs @@ -12,7 +12,9 @@ import packageJson from '../package.json' assert { type: 'json' } const CANARY_NPM_TAG = 'canary' const version = getVersion(packageJson) - const branch = exec('git branch --show-current', { stdio: 'pipe' })[0].trim() + const branch = + exec('git branch --show-current', { stdio: 'pipe' })[0].trim() || + process.env.BRANCH_NAME console.log('Current branch:', branch) await setVersions({ version }) From dffeba2b5b3c9fc61f0805ad3c4884a4a528a5e2 Mon Sep 17 00:00:00 2001 From: Piotr Monwid-Olechnowicz Date: Tue, 26 Sep 2023 18:48:36 +0200 Subject: [PATCH 6/7] Bump versions to: 0.16.1 [skip ci] --- packages/color-modes/package.json | 2 +- packages/color/package.json | 2 +- packages/components/package.json | 2 +- packages/core/package.json | 2 +- packages/css/package.json | 2 +- packages/custom-properties/package.json | 2 +- packages/docs/package.json | 2 +- packages/e2e/package.json | 2 +- packages/gatsby-plugin-theme-ui/package.json | 2 +- packages/gatsby-theme-style-guide/package.json | 2 +- packages/gatsby-theme-ui-layout/package.json | 2 +- packages/global/package.json | 2 +- packages/match-media/package.json | 2 +- packages/mdx/package.json | 2 +- packages/preset-base/package.json | 2 +- packages/preset-bootstrap/package.json | 2 +- packages/preset-bulma/package.json | 2 +- packages/preset-dark/package.json | 2 +- packages/preset-deep/package.json | 2 +- packages/preset-funk/package.json | 2 +- packages/preset-future/package.json | 2 +- packages/preset-polaris/package.json | 2 +- packages/preset-roboto/package.json | 2 +- packages/preset-sketchy/package.json | 2 +- packages/preset-swiss/package.json | 2 +- packages/preset-system/package.json | 2 +- packages/preset-tailwind/package.json | 2 +- packages/preset-tosh/package.json | 2 +- packages/presets/package.json | 2 +- packages/prism/package.json | 2 +- packages/style-guide/package.json | 2 +- packages/tachyons/package.json | 2 +- packages/tailwind/package.json | 2 +- packages/test-utils/package.json | 2 +- packages/theme-provider/package.json | 2 +- packages/theme-ui/package.json | 2 +- packages/typography/package.json | 2 +- 37 files changed, 37 insertions(+), 37 deletions(-) diff --git a/packages/color-modes/package.json b/packages/color-modes/package.json index 3fdc68790..0e9b92cf5 100644 --- a/packages/color-modes/package.json +++ b/packages/color-modes/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/color-modes", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-color-modes.cjs.js", "module": "dist/theme-ui-color-modes.esm.js", "types": "dist/theme-ui-color-modes.cjs.d.ts", diff --git a/packages/color/package.json b/packages/color/package.json index 700355db3..063b4ea7f 100644 --- a/packages/color/package.json +++ b/packages/color/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/color", - "version": "0.16.1-develop.0", + "version": "0.16.1", "source": "src/index.ts", "main": "dist/theme-ui-color.cjs.js", "module": "dist/theme-ui-color.esm.js", diff --git a/packages/components/package.json b/packages/components/package.json index 1589a36f2..2c9396689 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/components", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-components.cjs.js", "module": "dist/theme-ui-components.esm.js", "types": "dist/theme-ui-components.cjs.d.ts", diff --git a/packages/core/package.json b/packages/core/package.json index 41fb2cba0..228b9e247 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/core", - "version": "0.16.1-develop.0", + "version": "0.16.1", "source": "src/index.ts", "main": "dist/theme-ui-core.cjs.js", "module": "dist/theme-ui-core.esm.js", diff --git a/packages/css/package.json b/packages/css/package.json index f15a6c8d8..85e63d5d3 100644 --- a/packages/css/package.json +++ b/packages/css/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/css", - "version": "0.16.1-develop.0", + "version": "0.16.1", "source": "src/index.ts", "main": "dist/theme-ui-css.cjs.js", "module": "dist/theme-ui-css.esm.js", diff --git a/packages/custom-properties/package.json b/packages/custom-properties/package.json index c910522ac..0d5bfabca 100644 --- a/packages/custom-properties/package.json +++ b/packages/custom-properties/package.json @@ -1,7 +1,7 @@ { "name": "@theme-ui/custom-properties", "description": "Generate CSS custom properties for use with Theme UI", - "version": "0.16.1-develop.0", + "version": "0.16.1", "source": "src/index.ts", "main": "dist/theme-ui-custom-properties.cjs.js", "module": "dist/theme-ui-custom-properties.esm.js", diff --git a/packages/docs/package.json b/packages/docs/package.json index bfd17f869..b0e55b01b 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "docs", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/docs.cjs.js", "author": "Brent Jackson ", "license": "MIT", diff --git a/packages/e2e/package.json b/packages/e2e/package.json index cde0151d8..ad5fd74e0 100644 --- a/packages/e2e/package.json +++ b/packages/e2e/package.json @@ -1,7 +1,7 @@ { "name": "e2e", "private": true, - "version": "0.16.1-develop.0", + "version": "0.16.1", "description": "Cypress tests ran against Theme UI docs and examples", "scripts": { "open": "cypress open", diff --git a/packages/gatsby-plugin-theme-ui/package.json b/packages/gatsby-plugin-theme-ui/package.json index 2b5972f7a..1001cedfd 100644 --- a/packages/gatsby-plugin-theme-ui/package.json +++ b/packages/gatsby-plugin-theme-ui/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-theme-ui", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/gatsby-plugin-theme-ui.cjs.js", "module": "dist/gatsby-plugin-theme-ui.esm.js", "browser": { diff --git a/packages/gatsby-theme-style-guide/package.json b/packages/gatsby-theme-style-guide/package.json index c565b50e6..a8bc028a3 100644 --- a/packages/gatsby-theme-style-guide/package.json +++ b/packages/gatsby-theme-style-guide/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-style-guide", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/gatsby-theme-style-guide.cjs.js", "license": "MIT", "repository": "system-ui/theme-ui", diff --git a/packages/gatsby-theme-ui-layout/package.json b/packages/gatsby-theme-ui-layout/package.json index ae9613339..1452c8fe7 100644 --- a/packages/gatsby-theme-ui-layout/package.json +++ b/packages/gatsby-theme-ui-layout/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-ui-layout", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/gatsby-theme-ui-layout.cjs.js", "repository": "system-ui/theme-ui", "peerDependencies": { diff --git a/packages/global/package.json b/packages/global/package.json index b43959a12..d55b1d192 100644 --- a/packages/global/package.json +++ b/packages/global/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/global", - "version": "0.16.1-develop.0", + "version": "0.16.1", "repository": "system-ui/theme-ui", "main": "dist/theme-ui-global.cjs.js", "module": "dist/theme-ui-global.esm.js", diff --git a/packages/match-media/package.json b/packages/match-media/package.json index 52f9955d3..f822128cb 100644 --- a/packages/match-media/package.json +++ b/packages/match-media/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/match-media", - "version": "0.16.1-develop.0", + "version": "0.16.1", "description": "React hooks for theme-ui breakpoints", "source": "src/index.ts", "main": "dist/theme-ui-match-media.cjs.js", diff --git a/packages/mdx/package.json b/packages/mdx/package.json index a5e0d76cd..4e432e041 100644 --- a/packages/mdx/package.json +++ b/packages/mdx/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/mdx", - "version": "0.16.1-develop.0", + "version": "0.16.1", "source": "src/index.ts", "main": "dist/theme-ui-mdx.cjs.js", "module": "dist/theme-ui-mdx.esm.js", diff --git a/packages/preset-base/package.json b/packages/preset-base/package.json index e627d217d..6cbe18b67 100644 --- a/packages/preset-base/package.json +++ b/packages/preset-base/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-base", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-base.cjs.js", "module": "dist/theme-ui-preset-base.esm.js", "author": "Brent Jackson", diff --git a/packages/preset-bootstrap/package.json b/packages/preset-bootstrap/package.json index b4e11fa98..a9620236a 100644 --- a/packages/preset-bootstrap/package.json +++ b/packages/preset-bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-bootstrap", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-bootstrap.cjs.js", "module": "dist/theme-ui-preset-bootstrap.esm.js", "types": "dist/theme-ui-preset-bootstrap.cjs.d.ts", diff --git a/packages/preset-bulma/package.json b/packages/preset-bulma/package.json index 020fae911..7f54a250c 100644 --- a/packages/preset-bulma/package.json +++ b/packages/preset-bulma/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-bulma", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-bulma.cjs.js", "module": "dist/theme-ui-preset-bulma.esm.js", "source": "src/index.ts", diff --git a/packages/preset-dark/package.json b/packages/preset-dark/package.json index 7b3a6a973..07c8d9f22 100644 --- a/packages/preset-dark/package.json +++ b/packages/preset-dark/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-dark", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-dark.cjs.js", "module": "dist/theme-ui-preset-dark.esm.js", "types": "dist/theme-ui-preset-dark.cjs.d.ts", diff --git a/packages/preset-deep/package.json b/packages/preset-deep/package.json index 0753f6471..bb3368e75 100644 --- a/packages/preset-deep/package.json +++ b/packages/preset-deep/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-deep", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-deep.cjs.js", "module": "dist/theme-ui-preset-deep.esm.js", "source": "src/index.ts", diff --git a/packages/preset-funk/package.json b/packages/preset-funk/package.json index 9d2159601..f1e841e6a 100644 --- a/packages/preset-funk/package.json +++ b/packages/preset-funk/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-funk", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-funk.cjs.js", "module": "dist/theme-ui-preset-funk.esm.js", "source": "src/index.ts", diff --git a/packages/preset-future/package.json b/packages/preset-future/package.json index 1866770de..033040363 100644 --- a/packages/preset-future/package.json +++ b/packages/preset-future/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-future", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-future.cjs.js", "module": "dist/theme-ui-preset-future.esm.js", "source": "src/index.ts", diff --git a/packages/preset-polaris/package.json b/packages/preset-polaris/package.json index 5090a509e..1bf2f4193 100644 --- a/packages/preset-polaris/package.json +++ b/packages/preset-polaris/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-polaris", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-polaris.cjs.js", "module": "dist/theme-ui-preset-polaris.esm.js", "source": "src/index.ts", diff --git a/packages/preset-roboto/package.json b/packages/preset-roboto/package.json index 085c42203..b22ed74a2 100644 --- a/packages/preset-roboto/package.json +++ b/packages/preset-roboto/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-roboto", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-roboto.cjs.js", "module": "dist/theme-ui-preset-roboto.esm.js", "types": "dist/theme-ui-preset-roboto.cjs.d.ts", diff --git a/packages/preset-sketchy/package.json b/packages/preset-sketchy/package.json index 4af887c4e..221d06ba3 100644 --- a/packages/preset-sketchy/package.json +++ b/packages/preset-sketchy/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-sketchy", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-sketchy.cjs.js", "module": "dist/theme-ui-preset-sketchy.esm.js", "types": "dist/theme-ui-preset-sketchy.cjs.d.ts", diff --git a/packages/preset-swiss/package.json b/packages/preset-swiss/package.json index 6f44faf91..9b39632ed 100644 --- a/packages/preset-swiss/package.json +++ b/packages/preset-swiss/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-swiss", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-swiss.cjs.js", "module": "dist/theme-ui-preset-swiss.esm.js", "types": "dist/theme-ui-preset-swiss.cjs.d.ts", diff --git a/packages/preset-system/package.json b/packages/preset-system/package.json index 762ae82b5..e6e981a64 100644 --- a/packages/preset-system/package.json +++ b/packages/preset-system/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-system", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-system.cjs.js", "module": "dist/theme-ui-preset-system.esm.js", "types": "dist/theme-ui-preset-system.cjs.d.ts", diff --git a/packages/preset-tailwind/package.json b/packages/preset-tailwind/package.json index 947e720c8..cd70d6596 100644 --- a/packages/preset-tailwind/package.json +++ b/packages/preset-tailwind/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-tailwind", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-tailwind.cjs.js", "module": "dist/theme-ui-preset-tailwind.esm.js", "types": "dist/theme-ui-preset-tailwind.cjs.d.ts", diff --git a/packages/preset-tosh/package.json b/packages/preset-tosh/package.json index 4d060fe1d..36a714579 100644 --- a/packages/preset-tosh/package.json +++ b/packages/preset-tosh/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-tosh", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-preset-tosh.cjs.js", "module": "dist/theme-ui-preset-tosh.esm.js", "types": "dist/theme-ui-preset-tosh.cjs.d.ts", diff --git a/packages/presets/package.json b/packages/presets/package.json index 0229cde0b..feb90ac89 100644 --- a/packages/presets/package.json +++ b/packages/presets/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/presets", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-presets.cjs.js", "module": "dist/theme-ui-presets.esm.js", "types": "dist/theme-ui-presets.cjs.d.ts", diff --git a/packages/prism/package.json b/packages/prism/package.json index e68d4cdce..403443954 100644 --- a/packages/prism/package.json +++ b/packages/prism/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/prism", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-prism.cjs.js", "module": "dist/theme-ui-prism.esm.js", "types": "dist/theme-ui-prism.cjs.d.ts", diff --git a/packages/style-guide/package.json b/packages/style-guide/package.json index 6b0311e95..7bb668837 100644 --- a/packages/style-guide/package.json +++ b/packages/style-guide/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/style-guide", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-style-guide.cjs.js", "module": "dist/theme-ui-style-guide.esm.js", "types": "dist/theme-ui-style-guide.cjs.d.ts", diff --git a/packages/tachyons/package.json b/packages/tachyons/package.json index 772930012..2b3c44889 100644 --- a/packages/tachyons/package.json +++ b/packages/tachyons/package.json @@ -1,7 +1,7 @@ { "name": "@theme-ui/tachyons", "description": "⚠ DEPRECATED: Generate static CSS for use outside of React with Theme UI and Tachyons", - "version": "0.16.1-develop.0", + "version": "0.16.1", "private": true, "main": "dist/theme-ui-tachyons.cjs.js", "module": "dist/theme-ui-tachyons.esm.js", diff --git a/packages/tailwind/package.json b/packages/tailwind/package.json index 83de29199..3446eb040 100644 --- a/packages/tailwind/package.json +++ b/packages/tailwind/package.json @@ -1,7 +1,7 @@ { "name": "@theme-ui/tailwind", "description": "Generate static CSS for use outside of React with Theme UI and Tailwind.css", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-tailwind.cjs.js", "module": "dist/theme-ui-tailwind.esm.js", "source": "src/index.ts", diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index e5821b592..f53911c63 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/test-utils", - "version": "0.16.1-develop.0", + "version": "0.16.1", "private": true, "license": "MIT", "repository": "system-ui/theme-ui", diff --git a/packages/theme-provider/package.json b/packages/theme-provider/package.json index 5df77fe5f..0e1a59d22 100644 --- a/packages/theme-provider/package.json +++ b/packages/theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/theme-provider", - "version": "0.16.1-develop.0", + "version": "0.16.1", "repository": "system-ui/theme-ui", "main": "dist/theme-ui-theme-provider.cjs.js", "module": "dist/theme-ui-theme-provider.esm.js", diff --git a/packages/theme-ui/package.json b/packages/theme-ui/package.json index f998b4c69..a18b71eba 100644 --- a/packages/theme-ui/package.json +++ b/packages/theme-ui/package.json @@ -1,6 +1,6 @@ { "name": "theme-ui", - "version": "0.16.1-develop.0", + "version": "0.16.1", "description": "The Design Graph Framework", "source": "src/index.ts", "main": "dist/theme-ui.cjs.js", diff --git a/packages/typography/package.json b/packages/typography/package.json index ce517a2de..5f57bd238 100644 --- a/packages/typography/package.json +++ b/packages/typography/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/typography", - "version": "0.16.1-develop.0", + "version": "0.16.1", "main": "dist/theme-ui-typography.cjs.js", "module": "dist/theme-ui-typography.esm.js", "source": "src/index.ts", From 7f39af312fe866a385b61a9ca4fa3c291ffa8ff3 Mon Sep 17 00:00:00 2001 From: Piotr Monwid-Olechnowicz Date: Tue, 26 Sep 2023 18:54:52 +0200 Subject: [PATCH 7/7] Bump versions to: 0.16.2-scale-tuples.0 [skip ci] --- package.json | 2 +- packages/color-modes/package.json | 2 +- packages/color/package.json | 2 +- packages/components/package.json | 2 +- packages/core/package.json | 2 +- packages/css/package.json | 2 +- packages/custom-properties/package.json | 2 +- packages/docs/package.json | 2 +- packages/e2e/package.json | 2 +- packages/gatsby-plugin-theme-ui/package.json | 2 +- packages/gatsby-theme-style-guide/package.json | 2 +- packages/gatsby-theme-ui-layout/package.json | 2 +- packages/global/package.json | 2 +- packages/match-media/package.json | 2 +- packages/mdx/package.json | 2 +- packages/preset-base/package.json | 2 +- packages/preset-bootstrap/package.json | 2 +- packages/preset-bulma/package.json | 2 +- packages/preset-dark/package.json | 2 +- packages/preset-deep/package.json | 2 +- packages/preset-funk/package.json | 2 +- packages/preset-future/package.json | 2 +- packages/preset-polaris/package.json | 2 +- packages/preset-roboto/package.json | 2 +- packages/preset-sketchy/package.json | 2 +- packages/preset-swiss/package.json | 2 +- packages/preset-system/package.json | 2 +- packages/preset-tailwind/package.json | 2 +- packages/preset-tosh/package.json | 2 +- packages/presets/package.json | 2 +- packages/prism/package.json | 2 +- packages/style-guide/package.json | 2 +- packages/tachyons/package.json | 2 +- packages/tailwind/package.json | 2 +- packages/test-utils/package.json | 2 +- packages/theme-provider/package.json | 2 +- packages/theme-ui/package.json | 2 +- packages/typography/package.json | 2 +- 38 files changed, 38 insertions(+), 38 deletions(-) diff --git a/package.json b/package.json index cd0f20d7a..5e34c84f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/monorepo", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "private": true, "scripts": { "build": "preconstruct build", diff --git a/packages/color-modes/package.json b/packages/color-modes/package.json index 0e9b92cf5..5d23277a2 100644 --- a/packages/color-modes/package.json +++ b/packages/color-modes/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/color-modes", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-color-modes.cjs.js", "module": "dist/theme-ui-color-modes.esm.js", "types": "dist/theme-ui-color-modes.cjs.d.ts", diff --git a/packages/color/package.json b/packages/color/package.json index 063b4ea7f..f77092685 100644 --- a/packages/color/package.json +++ b/packages/color/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/color", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "source": "src/index.ts", "main": "dist/theme-ui-color.cjs.js", "module": "dist/theme-ui-color.esm.js", diff --git a/packages/components/package.json b/packages/components/package.json index 2c9396689..eb7d00b5b 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/components", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-components.cjs.js", "module": "dist/theme-ui-components.esm.js", "types": "dist/theme-ui-components.cjs.d.ts", diff --git a/packages/core/package.json b/packages/core/package.json index 228b9e247..ba56bd133 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/core", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "source": "src/index.ts", "main": "dist/theme-ui-core.cjs.js", "module": "dist/theme-ui-core.esm.js", diff --git a/packages/css/package.json b/packages/css/package.json index 85e63d5d3..e30e5fb92 100644 --- a/packages/css/package.json +++ b/packages/css/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/css", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "source": "src/index.ts", "main": "dist/theme-ui-css.cjs.js", "module": "dist/theme-ui-css.esm.js", diff --git a/packages/custom-properties/package.json b/packages/custom-properties/package.json index 0d5bfabca..2a1c8537a 100644 --- a/packages/custom-properties/package.json +++ b/packages/custom-properties/package.json @@ -1,7 +1,7 @@ { "name": "@theme-ui/custom-properties", "description": "Generate CSS custom properties for use with Theme UI", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "source": "src/index.ts", "main": "dist/theme-ui-custom-properties.cjs.js", "module": "dist/theme-ui-custom-properties.esm.js", diff --git a/packages/docs/package.json b/packages/docs/package.json index b0e55b01b..369fd039c 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "docs", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/docs.cjs.js", "author": "Brent Jackson ", "license": "MIT", diff --git a/packages/e2e/package.json b/packages/e2e/package.json index ad5fd74e0..509bab557 100644 --- a/packages/e2e/package.json +++ b/packages/e2e/package.json @@ -1,7 +1,7 @@ { "name": "e2e", "private": true, - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "description": "Cypress tests ran against Theme UI docs and examples", "scripts": { "open": "cypress open", diff --git a/packages/gatsby-plugin-theme-ui/package.json b/packages/gatsby-plugin-theme-ui/package.json index 1001cedfd..2884cc171 100644 --- a/packages/gatsby-plugin-theme-ui/package.json +++ b/packages/gatsby-plugin-theme-ui/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-theme-ui", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/gatsby-plugin-theme-ui.cjs.js", "module": "dist/gatsby-plugin-theme-ui.esm.js", "browser": { diff --git a/packages/gatsby-theme-style-guide/package.json b/packages/gatsby-theme-style-guide/package.json index a8bc028a3..c5e7286d6 100644 --- a/packages/gatsby-theme-style-guide/package.json +++ b/packages/gatsby-theme-style-guide/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-style-guide", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/gatsby-theme-style-guide.cjs.js", "license": "MIT", "repository": "system-ui/theme-ui", diff --git a/packages/gatsby-theme-ui-layout/package.json b/packages/gatsby-theme-ui-layout/package.json index 1452c8fe7..c0fcc5b8e 100644 --- a/packages/gatsby-theme-ui-layout/package.json +++ b/packages/gatsby-theme-ui-layout/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-ui-layout", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/gatsby-theme-ui-layout.cjs.js", "repository": "system-ui/theme-ui", "peerDependencies": { diff --git a/packages/global/package.json b/packages/global/package.json index d55b1d192..aef2e0986 100644 --- a/packages/global/package.json +++ b/packages/global/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/global", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "repository": "system-ui/theme-ui", "main": "dist/theme-ui-global.cjs.js", "module": "dist/theme-ui-global.esm.js", diff --git a/packages/match-media/package.json b/packages/match-media/package.json index f822128cb..efb94e7f8 100644 --- a/packages/match-media/package.json +++ b/packages/match-media/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/match-media", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "description": "React hooks for theme-ui breakpoints", "source": "src/index.ts", "main": "dist/theme-ui-match-media.cjs.js", diff --git a/packages/mdx/package.json b/packages/mdx/package.json index 4e432e041..e9ea8cc18 100644 --- a/packages/mdx/package.json +++ b/packages/mdx/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/mdx", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "source": "src/index.ts", "main": "dist/theme-ui-mdx.cjs.js", "module": "dist/theme-ui-mdx.esm.js", diff --git a/packages/preset-base/package.json b/packages/preset-base/package.json index 6cbe18b67..22450cf11 100644 --- a/packages/preset-base/package.json +++ b/packages/preset-base/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-base", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-base.cjs.js", "module": "dist/theme-ui-preset-base.esm.js", "author": "Brent Jackson", diff --git a/packages/preset-bootstrap/package.json b/packages/preset-bootstrap/package.json index a9620236a..c0b45cbd4 100644 --- a/packages/preset-bootstrap/package.json +++ b/packages/preset-bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-bootstrap", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-bootstrap.cjs.js", "module": "dist/theme-ui-preset-bootstrap.esm.js", "types": "dist/theme-ui-preset-bootstrap.cjs.d.ts", diff --git a/packages/preset-bulma/package.json b/packages/preset-bulma/package.json index 7f54a250c..06820e108 100644 --- a/packages/preset-bulma/package.json +++ b/packages/preset-bulma/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-bulma", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-bulma.cjs.js", "module": "dist/theme-ui-preset-bulma.esm.js", "source": "src/index.ts", diff --git a/packages/preset-dark/package.json b/packages/preset-dark/package.json index 07c8d9f22..0f88b82ee 100644 --- a/packages/preset-dark/package.json +++ b/packages/preset-dark/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-dark", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-dark.cjs.js", "module": "dist/theme-ui-preset-dark.esm.js", "types": "dist/theme-ui-preset-dark.cjs.d.ts", diff --git a/packages/preset-deep/package.json b/packages/preset-deep/package.json index bb3368e75..a1433942e 100644 --- a/packages/preset-deep/package.json +++ b/packages/preset-deep/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-deep", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-deep.cjs.js", "module": "dist/theme-ui-preset-deep.esm.js", "source": "src/index.ts", diff --git a/packages/preset-funk/package.json b/packages/preset-funk/package.json index f1e841e6a..fa9331ebf 100644 --- a/packages/preset-funk/package.json +++ b/packages/preset-funk/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-funk", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-funk.cjs.js", "module": "dist/theme-ui-preset-funk.esm.js", "source": "src/index.ts", diff --git a/packages/preset-future/package.json b/packages/preset-future/package.json index 033040363..1fbdb75f3 100644 --- a/packages/preset-future/package.json +++ b/packages/preset-future/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-future", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-future.cjs.js", "module": "dist/theme-ui-preset-future.esm.js", "source": "src/index.ts", diff --git a/packages/preset-polaris/package.json b/packages/preset-polaris/package.json index 1bf2f4193..04eae3db9 100644 --- a/packages/preset-polaris/package.json +++ b/packages/preset-polaris/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-polaris", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-polaris.cjs.js", "module": "dist/theme-ui-preset-polaris.esm.js", "source": "src/index.ts", diff --git a/packages/preset-roboto/package.json b/packages/preset-roboto/package.json index b22ed74a2..f6b741481 100644 --- a/packages/preset-roboto/package.json +++ b/packages/preset-roboto/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-roboto", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-roboto.cjs.js", "module": "dist/theme-ui-preset-roboto.esm.js", "types": "dist/theme-ui-preset-roboto.cjs.d.ts", diff --git a/packages/preset-sketchy/package.json b/packages/preset-sketchy/package.json index 221d06ba3..6aae75e3b 100644 --- a/packages/preset-sketchy/package.json +++ b/packages/preset-sketchy/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-sketchy", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-sketchy.cjs.js", "module": "dist/theme-ui-preset-sketchy.esm.js", "types": "dist/theme-ui-preset-sketchy.cjs.d.ts", diff --git a/packages/preset-swiss/package.json b/packages/preset-swiss/package.json index 9b39632ed..7284faafc 100644 --- a/packages/preset-swiss/package.json +++ b/packages/preset-swiss/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-swiss", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-swiss.cjs.js", "module": "dist/theme-ui-preset-swiss.esm.js", "types": "dist/theme-ui-preset-swiss.cjs.d.ts", diff --git a/packages/preset-system/package.json b/packages/preset-system/package.json index e6e981a64..16ca70368 100644 --- a/packages/preset-system/package.json +++ b/packages/preset-system/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-system", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-system.cjs.js", "module": "dist/theme-ui-preset-system.esm.js", "types": "dist/theme-ui-preset-system.cjs.d.ts", diff --git a/packages/preset-tailwind/package.json b/packages/preset-tailwind/package.json index cd70d6596..c009f5b9b 100644 --- a/packages/preset-tailwind/package.json +++ b/packages/preset-tailwind/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-tailwind", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-tailwind.cjs.js", "module": "dist/theme-ui-preset-tailwind.esm.js", "types": "dist/theme-ui-preset-tailwind.cjs.d.ts", diff --git a/packages/preset-tosh/package.json b/packages/preset-tosh/package.json index 36a714579..9639ca2c5 100644 --- a/packages/preset-tosh/package.json +++ b/packages/preset-tosh/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/preset-tosh", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-preset-tosh.cjs.js", "module": "dist/theme-ui-preset-tosh.esm.js", "types": "dist/theme-ui-preset-tosh.cjs.d.ts", diff --git a/packages/presets/package.json b/packages/presets/package.json index feb90ac89..6d5481d91 100644 --- a/packages/presets/package.json +++ b/packages/presets/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/presets", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-presets.cjs.js", "module": "dist/theme-ui-presets.esm.js", "types": "dist/theme-ui-presets.cjs.d.ts", diff --git a/packages/prism/package.json b/packages/prism/package.json index 403443954..91fdd451e 100644 --- a/packages/prism/package.json +++ b/packages/prism/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/prism", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-prism.cjs.js", "module": "dist/theme-ui-prism.esm.js", "types": "dist/theme-ui-prism.cjs.d.ts", diff --git a/packages/style-guide/package.json b/packages/style-guide/package.json index 7bb668837..5f32c3e96 100644 --- a/packages/style-guide/package.json +++ b/packages/style-guide/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/style-guide", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-style-guide.cjs.js", "module": "dist/theme-ui-style-guide.esm.js", "types": "dist/theme-ui-style-guide.cjs.d.ts", diff --git a/packages/tachyons/package.json b/packages/tachyons/package.json index 2b3c44889..48125560b 100644 --- a/packages/tachyons/package.json +++ b/packages/tachyons/package.json @@ -1,7 +1,7 @@ { "name": "@theme-ui/tachyons", "description": "⚠ DEPRECATED: Generate static CSS for use outside of React with Theme UI and Tachyons", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "private": true, "main": "dist/theme-ui-tachyons.cjs.js", "module": "dist/theme-ui-tachyons.esm.js", diff --git a/packages/tailwind/package.json b/packages/tailwind/package.json index 3446eb040..1a09a2fbb 100644 --- a/packages/tailwind/package.json +++ b/packages/tailwind/package.json @@ -1,7 +1,7 @@ { "name": "@theme-ui/tailwind", "description": "Generate static CSS for use outside of React with Theme UI and Tailwind.css", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-tailwind.cjs.js", "module": "dist/theme-ui-tailwind.esm.js", "source": "src/index.ts", diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index f53911c63..e4db82a66 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/test-utils", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "private": true, "license": "MIT", "repository": "system-ui/theme-ui", diff --git a/packages/theme-provider/package.json b/packages/theme-provider/package.json index 0e1a59d22..cf7e2bbf2 100644 --- a/packages/theme-provider/package.json +++ b/packages/theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/theme-provider", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "repository": "system-ui/theme-ui", "main": "dist/theme-ui-theme-provider.cjs.js", "module": "dist/theme-ui-theme-provider.esm.js", diff --git a/packages/theme-ui/package.json b/packages/theme-ui/package.json index a18b71eba..9e89e6b0c 100644 --- a/packages/theme-ui/package.json +++ b/packages/theme-ui/package.json @@ -1,6 +1,6 @@ { "name": "theme-ui", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "description": "The Design Graph Framework", "source": "src/index.ts", "main": "dist/theme-ui.cjs.js", diff --git a/packages/typography/package.json b/packages/typography/package.json index 5f57bd238..41b4a772b 100644 --- a/packages/typography/package.json +++ b/packages/typography/package.json @@ -1,6 +1,6 @@ { "name": "@theme-ui/typography", - "version": "0.16.1", + "version": "0.16.2-scale-tuples.0", "main": "dist/theme-ui-typography.cjs.js", "module": "dist/theme-ui-typography.esm.js", "source": "src/index.ts",