From 946983b338631e4f5bb870328e0351b50af268b6 Mon Sep 17 00:00:00 2001
From: Malcolm Kee
Date: Wed, 28 Jun 2023 23:35:22 +1000
Subject: [PATCH 1/4] feat: replace with tailwind
---
.changeset/khaki-boats-fail.md | 9 +
.eslintrc.js | 5 +-
.github/workflows/build.yaml | 33 +-
docs/components/component-doc-route.tsx | 88 +-
docs/docs/component-playground.mdx | 4 +-
docs/docs/component-playground.tsx | 27 +-
.../component-playground/control-options.mdx | 2 +-
docs/docs/index.tsx | 10 +-
docs/package.json | 21 +-
docs/react-showroom.config.js | 21 +-
examples/client-only-example/package.json | 8 +-
examples/cra-example/package.json | 7 +-
examples/react-example/docs/provider.tsx | 2 +-
examples/react-example/package.json | 36 +-
.../react-example/src/components/button.mdx | 18 +-
.../react-example/src/components/index.ts | 2 +-
.../tests/react-example-props-editor.spec.ts | 6 +-
.../tests/react-example-third-party.spec.ts | 6 +-
examples/subpath-example/package.json | 10 +-
.../subpath-example/tests/subpath.spec.ts | 29 +-
package.json | 19 +-
packages/bundles/README.md | 2 +-
packages/bundles/package.json | 45 +-
packages/bundles/rollup.config.js | 69 -
packages/bundles/rollup.config.mjs | 84 +
packages/bundles/src/query.ts | 2 +-
packages/core/package.json | 8 +-
packages/core/src/code-block-overrides.ts | 19 +
packages/core/src/compile-script.spec.ts | 4 +-
packages/core/src/index.ts | 11 +-
packages/core/src/react.ts | 24 +-
packages/device-frames/package.json | 8 +-
packages/device-frames/src/iphone.tsx | 8 +-
packages/measure/package.json | 6 +-
packages/react-showroom/.eslintrc.js | 6 +
.../react-showroom/client/app/preview-app.tsx | 6 +-
.../client/app/preview-client-entry.tsx | 15 +-
.../client/app/preview-server-entry.tsx | 17 +-
.../client/app/showroom-app.tsx | 19 +-
.../client/app/showroom-client-entry.tsx | 15 +-
.../client/app/showroom-server-entry.tsx | 17 +-
.../client/components/a11y-result-item.tsx | 193 +-
.../a11y-result-panel-for-frames.tsx | 1 -
.../client/components/a11y-result-panel.tsx | 177 +-
.../client/components/a11y-summary.tsx | 131 +-
.../client/components/article.tsx | 33 +-
.../client/components/audience-toggle.tsx | 56 +-
.../react-showroom/client/components/base.tsx | 30 +-
.../client/components/browser-window.tsx | 137 +-
.../client/components/checkbox-dropdown.tsx | 13 +-
.../components/code-advanced-editor.tsx | 8 +-
.../client/components/code-block.tsx | 75 +-
.../client/components/code-editor.tsx | 13 +-
.../client/components/code-highlight.tsx | 1 -
.../client/components/code-live-editor.tsx | 97 +-
.../client/components/code-playground.tsx | 76 +-
.../client/components/code-preview-frame.tsx | 50 +-
.../client/components/code-preview-iframe.tsx | 118 +-
.../client/components/code-preview.tsx | 2 +
.../components/component-doc-article.tsx | 42 +-
.../component-doc-standalone-editor.tsx | 7 +-
.../client/components/component-meta.tsx | 195 +-
.../client/components/console-panel.tsx | 154 +-
.../components/details-page-container.tsx | 24 +-
.../client/components/doc-placeholder.tsx | 93 +-
.../client/components/generic-link.tsx | 2 +-
.../client/components/header.tsx | 135 +-
.../client/components/language-tag.tsx | 23 +-
.../components/link-to-standalone-view.tsx | 27 +-
.../client/components/markdown-article.tsx | 32 +-
.../client/components/measuring-button.tsx | 5 +-
.../client/components/page-fallback.tsx | 1 -
.../client/components/props-editor-panel.tsx | 7 +-
.../client/components/props-editor.tsx | 256 +-
.../client/components/radio-dropdown.tsx | 3 +-
.../client/components/sidebar.tsx | 213 +-
.../standalone-code-live-editor-comment.tsx | 4 +-
...tandalone-code-live-editor-copy-button.tsx | 60 +-
.../standalone-code-live-editor-preview.tsx | 20 +-
.../standalone-code-live-editor.tsx | 181 +-
.../client/components/table-of-content.tsx | 250 +-
.../client/components/title.tsx | 29 -
packages/react-showroom/client/index.tsx | 4 +-
.../client/lib/code-block-import-overrides.ts | 10 +
.../client/lib/code-imports-context.tsx | 22 +-
.../client/lib/frame-message.ts | 79 +-
.../client/lib/get-search-result.tsx | 10 +-
packages/react-showroom/client/lib/lazy.tsx | 10 +-
.../client/lib/use-props-editor.tsx | 10 +-
.../client/pages/component-doc-route.tsx | 1 -
.../react-showroom/client/pages/index.tsx | 2 -
.../client/pages/markdown-route.tsx | 1 -
.../react-showroom/client/pages/offline.tsx | 85 +-
.../react-showroom/client/route-mapping.tsx | 4 +-
packages/react-showroom/client/theme.ts | 23 +-
packages/react-showroom/client/type-def.d.ts | 14 -
packages/react-showroom/package.json | 76 +-
packages/react-showroom/postcss.config.js | 1 +
.../src/config/create-webpack-config.ts | 27 +-
.../src/lib/generate-showroom-data.ts | 105 +-
packages/react-showroom/src/lib/get-config.ts | 51 +-
packages/react-showroom/src/lib/prerender.ts | 28 +-
...owroom-remark-codeblocks-imports-loader.ts | 8 +-
packages/react-showroom/tailwind.config.js | 13 +
packages/react-showroom/tsconfig.client.json | 5 +-
packages/ui/package.json | 42 +-
packages/ui/postcss.config.js | 9 +
packages/ui/src/components/alert.mdx | 28 +
packages/ui/src/components/alert.tsx | 84 +-
packages/ui/src/components/bare-button.ts | 10 -
packages/ui/src/components/breadcrumbs.mdx | 15 +
packages/ui/src/components/breadcrumbs.tsx | 77 +-
packages/ui/src/components/button.mdx | 21 +
packages/ui/src/components/button.tsx | 51 +-
packages/ui/src/components/checkbox.mdx | 15 +
packages/ui/src/components/checkbox.tsx | 68 +-
packages/ui/src/components/collapsible.mdx | 20 +
packages/ui/src/components/collapsible.tsx | 136 +-
packages/ui/src/components/color-input.mdx | 3 +
packages/ui/src/components/color-input.tsx | 76 +-
packages/ui/src/components/copy-button.tsx | 15 +-
packages/ui/src/components/dialog.tsx | 21 +-
packages/ui/src/components/dropdown-menu.tsx | 1 -
packages/ui/src/components/file-input.tsx | 4 +-
packages/ui/src/components/icons.tsx | 46 +-
packages/ui/src/components/number-input.tsx | 2 +-
packages/ui/src/components/popover.tsx | 1 +
packages/ui/src/components/search-dialog.tsx | 294 +-
packages/ui/src/components/select.mdx | 7 +
packages/ui/src/components/select.tsx | 42 +-
packages/ui/src/components/shortcut-key.tsx | 39 +-
packages/ui/src/components/tabs.tsx | 78 +-
packages/ui/src/components/text-highlight.tsx | 8 +-
packages/ui/src/components/text-input.tsx | 39 +-
packages/ui/src/components/textarea.mdx | 3 +
packages/ui/src/components/textarea.tsx | 30 +-
packages/ui/src/index.ts | 9 +-
packages/ui/src/lib/tw.ts | 31 +
packages/ui/src/shared-styles.ts | 3 +
packages/ui/src/stitches.config.ts | 4 -
packages/ui/tailwind.config.js | 48 +
packages/ui/tsconfig.json | 5 +-
packages/ui/tsup.config.ts | 8 +
pnpm-lock.yaml | 17745 +++++++---------
144 files changed, 10600 insertions(+), 12849 deletions(-)
create mode 100644 .changeset/khaki-boats-fail.md
delete mode 100644 packages/bundles/rollup.config.js
create mode 100644 packages/bundles/rollup.config.mjs
create mode 100644 packages/core/src/code-block-overrides.ts
delete mode 100644 packages/react-showroom/client/components/title.tsx
create mode 100644 packages/react-showroom/client/lib/code-block-import-overrides.ts
create mode 100644 packages/react-showroom/postcss.config.js
create mode 100644 packages/react-showroom/tailwind.config.js
create mode 100644 packages/ui/postcss.config.js
create mode 100644 packages/ui/src/components/alert.mdx
delete mode 100644 packages/ui/src/components/bare-button.ts
create mode 100644 packages/ui/src/components/breadcrumbs.mdx
create mode 100644 packages/ui/src/components/button.mdx
create mode 100644 packages/ui/src/components/checkbox.mdx
create mode 100644 packages/ui/src/components/collapsible.mdx
create mode 100644 packages/ui/src/components/color-input.mdx
create mode 100644 packages/ui/src/components/select.mdx
create mode 100644 packages/ui/src/components/textarea.mdx
create mode 100644 packages/ui/src/lib/tw.ts
create mode 100644 packages/ui/src/shared-styles.ts
create mode 100644 packages/ui/tailwind.config.js
create mode 100644 packages/ui/tsup.config.ts
diff --git a/.changeset/khaki-boats-fail.md b/.changeset/khaki-boats-fail.md
new file mode 100644
index 00000000..dedfdcd0
--- /dev/null
+++ b/.changeset/khaki-boats-fail.md
@@ -0,0 +1,9 @@
+---
+'@showroomjs/bundles': major
+'@showroomjs/device-frames': major
+'@showroomjs/measure': major
+'react-showroom': major
+'@showroomjs/ui': major
+---
+
+Remove support of React 17
diff --git a/.eslintrc.js b/.eslintrc.js
index eedba8f7..9f1b1b41 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -14,10 +14,13 @@ module.exports = {
env: {
node: true,
},
- files: ['.eslintrc.{js,cjs}'],
+ files: ['.eslintrc.{js,cjs}', '*.config.js'],
parserOptions: {
sourceType: 'script',
},
+ rules: {
+ '@typescript-eslint/no-var-requires': 'off',
+ },
},
],
parser: '@typescript-eslint/parser',
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 4b0114a3..b3db96c9 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -9,39 +9,28 @@ jobs:
strategy:
matrix:
node-version: [16]
- react-version: [17, 18]
+ react-version: [18]
steps:
- name: Branch Name
run: echo Running on branch ${GITHUB_REF##*/}
- name: Begin CI...
- uses: actions/checkout@v2
-
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v2
- with:
- node-version: ${{ matrix.node-version }}
-
- - name: Cache pnpm modules
- uses: actions/cache@v2
- with:
- path: ~/.pnpm-store
- key: ${{ runner.os }}-node${{ matrix.node-version }}-react${{ matrix.react-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
+ uses: actions/checkout@v3
- name: Setup pnpm
- uses: pnpm/action-setup@v2.0.1
+ uses: pnpm/action-setup@v2
with:
- version: 7
- run_install: true
+ version: 8
- - name: Install React ${{ matrix.react-version }} at Root
- if: matrix.react-version != 18
- run: pnpm -w -D add react@^${{ matrix.react-version }} react-dom@^${{ matrix.react-version }}
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: 'pnpm'
- - name: Install React ${{ matrix.react-version }} at Examples
- if: matrix.react-version != 18
- run: pnpm --filter="./examples/**" --filter="react-showroom-docs" add react@^${{ matrix.react-version }} react-dom@^${{ matrix.react-version }} @testing-library/react@^12 @testing-library/user-event@^13
+ - name: Install dependencies
+ run: pnpm install
- name: Install Playwright
run: npx playwright install --with-deps
diff --git a/docs/components/component-doc-route.tsx b/docs/components/component-doc-route.tsx
index 28aa9156..ad500eb0 100644
--- a/docs/components/component-doc-route.tsx
+++ b/docs/components/component-doc-route.tsx
@@ -3,12 +3,12 @@ import {
ComponentDataProvider,
ComponentDocArticle,
ComponentDocStandaloneEditor,
- deviceDimensionsByName,
MemoryRouter,
PageFallback,
Route,
Routes,
Suspense,
+ deviceDimensionsByName,
} from 'react-showroom/client';
import { BrowserWindowInRouter } from './browser-window-in-router';
import { cssVariables } from './css-variables';
@@ -21,45 +21,47 @@ export const ComponentDocRoute = (
props: Omit & {
slug: string;
}
-) => (
-
-
-
- }>
-
-
-
-
- }
- />
-
-
-
- }
- />
-
-
-
-
-
-);
+) => {
+ return (
+
+
+
+ }>
+
+
+
+
+ }
+ />
+
+
+
+ }
+ />
+
+
+
+
+
+ );
+};
diff --git a/docs/docs/component-playground.mdx b/docs/docs/component-playground.mdx
index 6ed2615f..d67b4f23 100644
--- a/docs/docs/component-playground.mdx
+++ b/docs/docs/component-playground.mdx
@@ -3,7 +3,7 @@ description: Learn how to create playground to modify component props
---
import {
- ColorControl,
+ ColorInput,
FileInput,
ObjectValueEditor,
Select,
@@ -69,7 +69,7 @@ Currently, we support the following control types:
| `date` | |
| `file` | |
| `object` | |
-| `color` | |
+| `color` | |
Notes:
diff --git a/docs/docs/component-playground.tsx b/docs/docs/component-playground.tsx
index 3bae4435..7c14da5a 100644
--- a/docs/docs/component-playground.tsx
+++ b/docs/docs/component-playground.tsx
@@ -32,7 +32,14 @@ import { useSetCompilationCaches } from './set-compilation-caches';
const allMetadata = Object.values(allComponentsMetadata);
-const buttonData = allMetadata.find((m) => m.displayName === 'Button')!;
+const buttonData = allMetadata.find((m) => m.displayName === 'Button');
+
+if (!buttonData) {
+ throw new Error(
+ 'buttonData not defined in component playground source code.'
+ );
+}
+
const { pre: Pre, code: Code } = mdxComponents;
const mockLoadDts = () => Promise.resolve({ default: {} });
@@ -44,6 +51,7 @@ const playgroundContent = {
codeblocks: playgroundCodeBlocks,
Component: Button,
loadDts: mockLoadDts,
+ editUrl: null,
};
export const PlaygroundSource = () => {
@@ -81,6 +89,7 @@ const playgroundContent2 = {
codeblocks: playgroundCodeBlocks2,
Component: Button,
loadDts: mockLoadDts,
+ editUrl: null,
};
export const PlaygroundSource2 = () => {
@@ -113,6 +122,7 @@ const controlOptionsContent = {
codeblocks: controlOptionsCodeBlocks,
Component: Button,
loadDts: mockLoadDts,
+ editUrl: null,
};
export const ControlOptionsSource = () => {
@@ -153,9 +163,7 @@ export const NumberInputDemo = () => {
);
@@ -177,16 +185,7 @@ export const SelectDemo = () => {
return (
<>
-
)}
)}
@@ -811,7 +820,7 @@ export const StandaloneCodeLiveEditor = ({
}
data-testid="editor-toggle"
>
-
+
)}
@@ -838,7 +847,7 @@ export const StandaloneCodeLiveEditor = ({
}}
data-testid="advanced-editor-toggle"
>
-
+
)}
@@ -852,38 +861,21 @@ export const StandaloneCodeLiveEditor = ({
);
};
-const NoCommentMsg = styled('p', {
- margin: '$1',
- padding: '$2',
- color: '$gray-500',
- textAlign: 'center',
-});
-
const A11yPanel = (props: A11yResultPanelForFramesProps) => (
-
- Accessibility
+
+
);
-const A11yPanelRoot = styled('section', {
- px: '$2',
- paddingBottom: '$3',
- minHeight: 200,
- maxHeight: '40vh',
- overflowY: 'auto',
-});
-
-const A11yPanelTitle = styled('div', {
- fontSize: '$lg',
- lineHeight: '$lg',
- fontWeight: '500',
- px: '$2',
- paddingBottom: '$1',
- paddingTop: '$2',
- borderTop: '1px solid $gray-200',
-});
-
interface AdvancedEditorProps {
value: string;
onChange: (code: string) => void;
@@ -942,47 +934,40 @@ const zoomDropdown = css({
minWidth: '80px !important',
});
-const MarkerInner = styled(LocationMarkerIcon, {
- width: 20,
- height: 20,
- color: '$gray-500',
-});
-
-interface MarkerSpanProps extends React.ComponentPropsWithoutRef<'span'> {
+interface MarkerProps extends React.ComponentPropsWithoutRef<'span'> {
iconClass?: string;
}
-const MarkerSpan = React.forwardRef(
- function MarkerSpan({ iconClass, ...props }, forwardedRef) {
- return (
-
-
-
- );
- }
-);
-
-const PrimaryToggleButton = styled(ToggleButton, {
- '&[aria-pressed="true"]': {
- backgroundColor: '$primary-700',
- },
-});
-
-const Marker = styled(MarkerSpan, {
- display: 'inline-block',
- width: 20,
- height: 20,
+const Marker = React.forwardRef(function Marker(
+ { iconClass, ...props },
+ forwardedRef
+) {
+ return (
+
+
+
+ );
});
-const MarkerButton = styled('button', {
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- margin: '-10px',
- width: 40,
- height: 40,
- outlineRing: '',
- borderRadius: '$lg',
+const PrimaryToggleButton = React.forwardRef<
+ HTMLButtonElement,
+ React.ComponentPropsWithoutRef
+>(function PrimaryToggleButton(props, forwardedRef) {
+ return (
+
+ );
});
const Toolbar = styled('div', {
@@ -998,19 +983,19 @@ const Toolbar = styled('div', {
},
});
-const CommentIcon = styled(AnnotationIcon, {
+const CommentIcon = styled(ChatIcon, {
width: 20,
height: 20,
color: '$gray-400',
});
-const CommentOnIcon = styled(FilledAnnotationIcon, {
+const CommentOnIcon = styled(FilledChatIcon, {
width: 20,
height: 20,
color: 'White',
});
-const MeasureIcon = styled(TemplateIcon, {
+const MeasureIcon = styled(RectangleGroupIcon, {
width: 20,
height: 20,
color: '$gray-400',
@@ -1023,13 +1008,13 @@ const MeasureIcon = styled(TemplateIcon, {
},
});
-const ZoomIcon = styled(ZoomInIcon, {
+const ZoomIcon = styled(MagnifyingGlassPlusIcon, {
width: 20,
height: 20,
color: '$gray-400',
});
-const ScreensIcon = styled(AdjustmentsIcon, {
+const ScreensIcon = styled(AdjustmentsVerticalIcon, {
width: 20,
height: 20,
color: '$gray-400',
diff --git a/packages/react-showroom/client/components/table-of-content.tsx b/packages/react-showroom/client/components/table-of-content.tsx
index a1516fe3..c1dc8f82 100644
--- a/packages/react-showroom/client/components/table-of-content.tsx
+++ b/packages/react-showroom/client/components/table-of-content.tsx
@@ -1,7 +1,6 @@
import { ReactShowroomMarkdownHeading } from '@showroomjs/core/react';
-import { Collapsible, styled, EditIcon } from '@showroomjs/ui';
+import { Collapsible, EditIcon, tw } from '@showroomjs/ui';
import * as React from 'react';
-import { Div, A as Link, Span } from './base';
export const TableOfContent = ({
headings,
@@ -17,254 +16,159 @@ export const TableOfContent = ({
const hasHeadings = headings && headings.length > 0;
return (
-
{hasHeadings && (
-
In this page
-
-
+
{headings.map((heading, index) => (
- -
{heading.id ? (
-
) : (
)}
-
+
))}
-
+
-
+
)}
{editUrl ? (
-
) : null}
-
-
-
+
+
-
{hasHeadings && (
<>
-
In this page
-
-
+
+
{headings.map((heading, index) => (
- -
{heading.id ? (
-
) : (
)}
-
+
))}
-
+
>
)}
-
-
+
{editUrl ? (
-
) : null}
-
-
+
+
);
};
-const List = styled('ul', {
- listStyle: 'none',
- margin: 0,
- padding: 0,
-});
-
-const Item = styled('li');
-
-const A = styled('a', {
- display: 'inline-block',
- px: '$2',
- py: '$2',
- fontSize: '$sm',
- textDecoration: 'none',
- color: 'inherit',
-});
-
const EditLink = (props: {
url: string;
floatRight?: boolean;
fullWidth?: boolean;
}) => (
-
-
EDIT THIS PAGE
-
+
-
+
);
diff --git a/packages/react-showroom/client/components/title.tsx b/packages/react-showroom/client/components/title.tsx
deleted file mode 100644
index b1f8c4aa..00000000
--- a/packages/react-showroom/client/components/title.tsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import { styled } from '@showroomjs/ui';
-import { HashtagIcon } from '@heroicons/react/outline';
-
-export const HashTag = styled(HashtagIcon, {
- visibility: 'hidden',
- position: 'absolute',
- left: '-0.7rem',
- width: '1rem',
- height: '1rem',
- top: '50%',
- transform: 'translate(0, -50%)',
-});
-
-export const Title = styled('a', {
- display: 'inline-block',
- px: '$2',
- marginX: '-$2',
- color: '$gray-500',
- position: 'relative',
- '&:focus': {
- outline: 'none',
- },
- '&:focus-visible': {
- outline: '1px solid $primary-200',
- },
- [`&:hover ${HashTag}`]: {
- visibility: 'visible',
- },
-});
diff --git a/packages/react-showroom/client/index.tsx b/packages/react-showroom/client/index.tsx
index 45852564..b34f3606 100644
--- a/packages/react-showroom/client/index.tsx
+++ b/packages/react-showroom/client/index.tsx
@@ -11,11 +11,12 @@ export type {
export {
Breadcrumbs,
Checkbox,
+ ColorInput,
FileInput,
NumberInput,
Select,
- styled,
TextInput,
+ styled,
} from '@showroomjs/ui';
export { BrowserWindow } from './components/browser-window';
export type { BrowserWindowProps } from './components/browser-window';
@@ -34,7 +35,6 @@ export { MarkdownDocStandaloneEditor } from './components/markdown-doc-standalon
export { mdxComponents } from './components/mdx-components';
export { PageFallback } from './components/page-fallback';
export {
- ColorControl,
ObjectValueEditor,
PropsEditor,
SelectButton,
diff --git a/packages/react-showroom/client/lib/code-block-import-overrides.ts b/packages/react-showroom/client/lib/code-block-import-overrides.ts
new file mode 100644
index 00000000..1e400756
--- /dev/null
+++ b/packages/react-showroom/client/lib/code-block-import-overrides.ts
@@ -0,0 +1,10 @@
+import { codeBlockOverrides } from '@showroomjs/core';
+import { usePropsEditor } from './use-props-editor';
+import { useUnionProps } from './use-union-props';
+
+export const codeBlockImportOverrides = codeBlockOverrides.createOverrides({
+ 'react-showroom/client': {
+ usePropsEditor,
+ useUnionProps,
+ },
+});
diff --git a/packages/react-showroom/client/lib/code-imports-context.tsx b/packages/react-showroom/client/lib/code-imports-context.tsx
index 2ab206d1..b62a2add 100644
--- a/packages/react-showroom/client/lib/code-imports-context.tsx
+++ b/packages/react-showroom/client/lib/code-imports-context.tsx
@@ -1,12 +1,30 @@
import { createNameContext } from '@showroomjs/ui';
import * as React from 'react';
+import { codeBlockImportOverrides } from './code-block-import-overrides';
-const CodeImportsContext = createNameContext>(
+export type CodeImports = Record;
+
+const CodeImportsContext = createNameContext(
'CodeImportsContext',
{}
);
-export const CodeImportsContextProvider = CodeImportsContext.Provider;
+export const CodeImportsContextProvider = (props: {
+ value: CodeImports;
+ children: React.ReactNode;
+}) => (
+ ({
+ ...codeBlockImportOverrides,
+ ...props.value,
+ }),
+ [props.value]
+ )}
+ >
+ {props.children}
+
+);
export const useCodeImports = () => React.useContext(CodeImportsContext);
diff --git a/packages/react-showroom/client/lib/frame-message.ts b/packages/react-showroom/client/lib/frame-message.ts
index eb585c25..529b92fe 100644
--- a/packages/react-showroom/client/lib/frame-message.ts
+++ b/packages/react-showroom/client/lib/frame-message.ts
@@ -96,21 +96,60 @@ export type Message =
color: string;
};
+type SendMessage = (data: Message) => void;
+
export const usePreviewWindow = (onMessage: (data: Message) => void) => {
- useMessage(onMessage, (ev) => ev.source === parent);
+ const messageQueue = useConstant>(() => []);
+ const isReadyRef = useRef(false);
+
+ const postMessageToParent: SendMessage = useCallback((data) => {
+ parent.postMessage(data, window.origin);
+ }, []);
+
+ useMessage(
+ (msg) => {
+ if (msg && msg.type === 'ready') {
+ isReadyRef.current = true;
+ messageQueue.forEach(postMessageToParent);
+ } else {
+ onMessage(msg);
+ }
+ },
+ (ev) => ev.source === parent
+ );
useEffect(() => {
- parent.postMessage(
- {
- type: 'ready',
- },
- window.origin
- );
+ let timer: number | undefined = undefined;
+
+ const sendIfNotReady = () => {
+ if (!isReadyRef.current) {
+ postMessageToParent({
+ type: 'ready',
+ });
+
+ // it is possible that the parent is not ready yet when we send
+ // for the first time, so we need to keep trying until we get a
+ // response
+ timer = window.setTimeout(sendIfNotReady, 1000);
+ }
+ };
+
+ sendIfNotReady();
+
+ return () => {
+ if (timer) {
+ window.clearTimeout(timer);
+ }
+ };
}, []);
- const sendParent = useCallback(function sendMsgToParent(data: Message) {
+ const sendParent: SendMessage = useCallback(function sendMsgToParent(data) {
try {
- parent.postMessage(data, window.origin);
+ if (!isReadyRef.current) {
+ messageQueue.push(data);
+ return;
+ }
+ postMessageToParent(data);
} catch (err) {
if (data.type === 'log') {
console.group('Fail to log data into panel');
@@ -138,16 +177,22 @@ export const useParentWindow = (onMessage?: (data: Message) => void) => {
const messageQueue = useConstant>(() => []);
const isReadyRef = useRef(false);
+ const sendToFrame: SendMessage = useCallback((data) => {
+ const targetWindow = targetRef.current && targetRef.current.contentWindow;
+
+ if (targetWindow) {
+ targetWindow.postMessage(data, window.origin);
+ }
+ }, []);
+
useMessage(
(msg) => {
if (msg.type === 'ready') {
isReadyRef.current = true;
- const targetWindow =
- targetRef.current && targetRef.current.contentWindow;
- messageQueue.forEach((msg) => {
- targetWindow!.postMessage(msg, window.origin);
- });
+ sendToFrame({ type: 'ready' });
+
+ messageQueue.forEach(sendToFrame);
} else if (onMessage) {
onMessage(msg);
}
@@ -166,11 +211,7 @@ export const useParentWindow = (onMessage?: (data: Message) => void) => {
return;
}
- const targetWindow = targetRef.current && targetRef.current.contentWindow;
-
- if (targetWindow) {
- targetWindow.postMessage(data, window.origin);
- }
+ sendToFrame(data);
}, []);
return {
diff --git a/packages/react-showroom/client/lib/get-search-result.tsx b/packages/react-showroom/client/lib/get-search-result.tsx
index 5f25fd52..cbe25d3e 100644
--- a/packages/react-showroom/client/lib/get-search-result.tsx
+++ b/packages/react-showroom/client/lib/get-search-result.tsx
@@ -1,9 +1,9 @@
import {
DocumentIcon,
- ExternalLinkIcon,
- PuzzleIcon,
-} from '@heroicons/react/outline';
-import { HashtagIcon } from '@heroicons/react/solid';
+ ArrowTopRightOnSquareIcon as ExternalLinkIcon,
+ PuzzlePieceIcon,
+} from '@heroicons/react/24/outline';
+import { HashtagIcon } from '@heroicons/react/20/solid';
import { isString } from '@showroomjs/core';
import type { Option } from '@showroomjs/ui';
import { styled } from '@showroomjs/ui';
@@ -54,7 +54,7 @@ const Hashtag = styled(HashtagIcon, {
color: 'inherit',
});
-const Puzzle = styled(PuzzleIcon, {
+const Puzzle = styled(PuzzlePieceIcon, {
width: 20,
height: 20,
color: 'inherit',
diff --git a/packages/react-showroom/client/lib/lazy.tsx b/packages/react-showroom/client/lib/lazy.tsx
index 896b63d5..dfec5879 100644
--- a/packages/react-showroom/client/lib/lazy.tsx
+++ b/packages/react-showroom/client/lib/lazy.tsx
@@ -1,13 +1,7 @@
import * as React from 'react';
-import lazyWithPreload from 'react-lazy-with-preload';
+import { lazyWithPreload } from 'react-lazy-with-preload';
-const SuspenseComponent = process.env.SSR
- ? function FakeSuspense(props: { children: React.ReactNode }) {
- return {props.children};
- }
- : React.Suspense;
-
-export const Suspense = SuspenseComponent;
+export const Suspense = React.Suspense;
export const factoryMap = new Map<
Parameters[0],
diff --git a/packages/react-showroom/client/lib/use-props-editor.tsx b/packages/react-showroom/client/lib/use-props-editor.tsx
index 17c9e259..1a68909e 100644
--- a/packages/react-showroom/client/lib/use-props-editor.tsx
+++ b/packages/react-showroom/client/lib/use-props-editor.tsx
@@ -648,13 +648,17 @@ export const PropsEditorProvider = (props: {
}) => {
const queryClient = useQueryClient();
- const propsEditorCache = useQuery({
+ const propsEditorCache = useQuery({
+ queryFn: () =>
+ new Promise((_, reject) =>
+ reject(new Error('propsEditorCache should never be called'))
+ ),
+ queryKey: props.codeHash ? getQueryKey(props.codeHash) : [],
enabled: false,
- queryKey: props.codeHash && getQueryKey(props.codeHash),
});
const [editorState, dispatch] = usePropsEditorProviderState(
- propsEditorCache.data
+ props.codeHash ? propsEditorCache.data : undefined
);
const [params, setParams] = useQueryParams();
diff --git a/packages/react-showroom/client/pages/component-doc-route.tsx b/packages/react-showroom/client/pages/component-doc-route.tsx
index 1304b905..5c30cafe 100644
--- a/packages/react-showroom/client/pages/component-doc-route.tsx
+++ b/packages/react-showroom/client/pages/component-doc-route.tsx
@@ -2,7 +2,6 @@ import {
ReactShowroomComponentContent,
ReactShowroomComponentSection,
} from '@showroomjs/core/react';
-import * as React from 'react';
import { ComponentDataProvider } from '../components/component-data-provider';
import { ComponentDocArticle } from '../components/component-doc-article';
import { ComponentDocStandaloneEditor } from '../components/component-doc-standalone-editor';
diff --git a/packages/react-showroom/client/pages/index.tsx b/packages/react-showroom/client/pages/index.tsx
index 7bd7ee53..bd75443f 100644
--- a/packages/react-showroom/client/pages/index.tsx
+++ b/packages/react-showroom/client/pages/index.tsx
@@ -1,9 +1,7 @@
import sections from 'react-showroom-sections';
import { Div } from '../components/base';
-import { Header } from '../components/header';
import { Seo } from '../components/seo';
import { Sidebar } from '../components/sidebar';
-import * as React from 'react';
export const DefaultHomePage = () => (
{
return (
-
+
-
-
-
-
-
+
+
+
+
+
Offline
-
+
Please try again later.
-
-
-
-
-
+
+
+
+
+
);
};
-
-const OfflineIcon = styled(ExclamationCircleIcon, {
- width: 40,
- height: 40,
- display: 'inline-block',
- color: '$gray-400',
- '@sm': {
- width: 56,
- height: 56,
- },
-});
diff --git a/packages/react-showroom/client/route-mapping.tsx b/packages/react-showroom/client/route-mapping.tsx
index c02a70f5..40c0a614 100644
--- a/packages/react-showroom/client/route-mapping.tsx
+++ b/packages/react-showroom/client/route-mapping.tsx
@@ -135,7 +135,9 @@ export const routes = sections.map(function mapSectionToRoute(
const loaded = new Set
();
const loadPromiseMap = new Map>();
-function noop() {}
+function noop() {
+ // noop
+}
export const loadCodeAtPath = (
fullPath: string,
diff --git a/packages/react-showroom/client/theme.ts b/packages/react-showroom/client/theme.ts
index f97512b2..e5691a3b 100644
--- a/packages/react-showroom/client/theme.ts
+++ b/packages/react-showroom/client/theme.ts
@@ -1,7 +1,20 @@
-import { createTheme } from '@showroomjs/ui';
-
export const THEME = process.env.REACT_SHOWROOM_THEME;
-export const colorTheme = createTheme({
- colors: THEME.colors,
-});
+const THEME_CLASS_NAME = '__react-showroom-theme__';
+
+export const colorTheme = THEME_CLASS_NAME;
+
+export const colorThemeCss = `
+ .${THEME_CLASS_NAME} {
+ --react-showroom-primary-50: ${THEME.colors['primary-50']};
+ --react-showroom-primary-100: ${THEME.colors['primary-100']};
+ --react-showroom-primary-200: ${THEME.colors['primary-200']};
+ --react-showroom-primary-300: ${THEME.colors['primary-300']};
+ --react-showroom-primary-400: ${THEME.colors['primary-400']};
+ --react-showroom-primary-500: ${THEME.colors['primary-500']};
+ --react-showroom-primary-600: ${THEME.colors['primary-600']};
+ --react-showroom-primary-700: ${THEME.colors['primary-700']};
+ --react-showroom-primary-800: ${THEME.colors['primary-800']};
+ --react-showroom-primary-900: ${THEME.colors['primary-900']};
+ }
+`;
diff --git a/packages/react-showroom/client/type-def.d.ts b/packages/react-showroom/client/type-def.d.ts
index 33db9032..fae6da3f 100644
--- a/packages/react-showroom/client/type-def.d.ts
+++ b/packages/react-showroom/client/type-def.d.ts
@@ -78,20 +78,6 @@ declare module 'react-showroom-index' {
export default index;
}
-declare module 'react-showroom-compat' {
- import type { ReactElement } from 'react';
-
- export const render: (
- ui: React.ReactElement,
- target: Element | null
- ) => () => void;
-
- export const hydrate: (
- ui: React.ReactElement,
- target: Element | null
- ) => () => void;
-}
-
declare namespace NodeJS {
import type { FrameDimension, Environment } from '@showroomjs/core';
import type { ThemeConfiguration } from '@showroomjs/core/react';
diff --git a/packages/react-showroom/package.json b/packages/react-showroom/package.json
index d8776483..7c84018c 100644
--- a/packages/react-showroom/package.json
+++ b/packages/react-showroom/package.json
@@ -13,8 +13,8 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
- "react": "^17.0.0-0 || ^18.0.0-0",
- "react-dom": "^17.0.0-0 || ^18.0.0-0",
+ "react": "^18.0.0-0",
+ "react-dom": "^18.0.0-0",
"sass": "*",
"typescript": "*"
},
@@ -24,15 +24,15 @@
}
},
"dependencies": {
- "@babel/core": "^7.18.10",
- "@babel/plugin-transform-runtime": "^7.18.10",
- "@babel/preset-env": "^7.18.10",
+ "@babel/core": "^7.21.8",
+ "@babel/plugin-transform-runtime": "^7.21.4",
+ "@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
- "@babel/preset-typescript": "^7.18.6",
- "@babel/runtime": "^7.18.9",
- "@heroicons/react": "^1.0.6",
- "@monaco-editor/react": "^4.4.5",
- "@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
+ "@babel/preset-typescript": "^7.21.5",
+ "@babel/runtime": "^7.21.5",
+ "@heroicons/react": "^2.0.18",
+ "@monaco-editor/react": "^4.5.1",
+ "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@react-hook/resize-observer": "^1.2.6",
"@showroomjs/bundles": "workspace:*",
"@showroomjs/core": "workspace:*",
@@ -40,47 +40,46 @@
"@showroomjs/measure": "workspace:*",
"@showroomjs/ui": "workspace:*",
"@testing-library/dom": "^8.16.1",
- "axe-core": "^4.4.3",
- "babel-loader": "^8.2.5",
- "cac": "^6.7.12",
- "classnames": "^2.3.1",
+ "axe-core": "^4.7.1",
+ "babel-loader": "^9.1.2",
+ "cac": "^6.7.14",
+ "classnames": "^2.3.2",
"copy-webpack-plugin": "^11.0.0",
"cross-spawn": "^7.0.3",
- "css-loader": "^6.7.1",
- "css-minimizer-webpack-plugin": "^4.0.0",
- "esbuild": "0.14.53",
- "esbuild-wasm": "0.14.53",
+ "css-loader": "^6.7.4",
+ "css-minimizer-webpack-plugin": "^5.0.0",
+ "esbuild": "0.17.19",
+ "esbuild-wasm": "0.17.19",
"estree-util-value-to-estree": "^1.3.0",
"front-matter": "^4.0.2",
- "fs-extra": "^10.1.0",
+ "fs-extra": "^11.1.1",
"github-slugger": "^1.4.0",
"glob": "^8.0.3",
"hast-util-heading": "1.0.5",
"hast-util-heading-rank": "1.0.1",
"hast-util-to-html": "7.1.3",
- "html-webpack-plugin": "^5.5.0",
+ "html-webpack-plugin": "^5.5.1",
"html-webpack-tags-plugin": "^3.0.2",
"lodash": "^4.17.21",
- "lz-string": "^1.4.4",
+ "lz-string": "^1.5.0",
"match-sorter": "^6.3.1",
"mdast-util-to-string": "2",
"mime-types": "^2.1.35",
- "mini-css-extract-plugin": "~2.6.1",
- "monaco-themes": "^0.4.2",
+ "mini-css-extract-plugin": "~2.7.6",
+ "monaco-themes": "^0.4.4",
"nanocolors": "^0.2.13",
"node-fetch": "^2.6.7",
"open": "^8.4.0",
"parse-numeric-range": "^1.3.0",
"postcss": "^8.4.16",
- "postcss-loader": "^7.0.1",
+ "postcss-loader": "^7.3.0",
"prism-react-renderer": "^1.3.5",
"qs-lite": "^0.0.3",
"re-resizable": "^6.9.9",
- "react-colorful": "^5.5.1",
"react-docgen-typescript": "^2.2.2",
"react-error-boundary": "^3.1.4",
"react-helmet": "^6.1.0",
- "react-lazy-with-preload": "^2.2.0",
+ "react-lazy-with-preload": "^2.2.1",
"react-refresh": "^0.14.0",
"rehype-mdx-title": "^1.0.0",
"rehype-slug": "4.0.1",
@@ -90,27 +89,27 @@
"remark-parse": "9.0.0",
"remark-stringify": "^9.0.1",
"rimraf": "^3.0.2",
- "sass-loader": "^13.0.2",
- "scroll-into-view-if-needed": "^2.2.29",
+ "sass-loader": "^13.3.0",
+ "scroll-into-view-if-needed": "^3.0.10",
"slugify": "^1.6.5",
"snarkdown": "^2.0.0",
"source-map-support": "^0.5.21",
"speed-measure-webpack-plugin": "^1.5.0",
"string-similarity": "^4.0.4",
"stringify-object": "~4.0.1",
- "style-loader": "^3.3.1",
+ "style-loader": "^3.3.3",
"temp": "^0.9.4",
"tslib": "^2.4.0",
- "tsup": "6.2.1",
+ "tsup": "6.7.0",
"unified": "9.2.2",
"unist-util-find": "^1.0.2",
"unist-util-visit": "2.0.3",
"vfile": "4.2.1",
- "webpack": "^5.74.0",
- "webpack-dev-server": "^4.9.3",
- "webpack-merge": "^5.8.0",
+ "webpack": "^5.84.0",
+ "webpack-dev-server": "^4.15.0",
+ "webpack-merge": "^5.9.0",
"webpack-messages": "^2.0.4",
- "webpack-virtual-modules": "^0.4.4",
+ "webpack-virtual-modules": "^0.5.0",
"workbox-expiration": "^6.5.4",
"workbox-recipes": "^6.5.4",
"workbox-routing": "^6.5.4",
@@ -124,19 +123,24 @@
"directory": "packages/react-showroom"
},
"scripts": {
- "dev": "concurrently \"pnpm run dev:client\" \"pnpm run dev:lib\"",
+ "dev": "concurrently \"pnpm run dev:client\" \"pnpm run dev:lib\" \"pnpm run dev:css\"",
"dev:client": "pnpm run build:client --watch",
"dev:lib": "tsc -b . --watch",
- "build": "pnpm build:client && pnpm build:lib",
+ "dev:css": "pnpm run build:css --watch",
+ "build": "pnpm run build:css && pnpm build:client && pnpm build:lib",
"build:client": "tsc --project tsconfig.client.json",
"build:lib": "tsc",
+ "build:css": "postcss ./node_modules/tailwindcss/tailwind.css -o client-dist/react-showroom.css",
"clean": "rimraf dist client-dist *.tsbuildinfo",
"typecheck:client": "tsc --noEmit --project tsconfig.client.json",
"lint": "eslint src/**"
},
"devDependencies": {
+ "@mkeeorg/postcss-prefixer": "^2.1.3",
"@types/lodash": "^4.14.182",
"@types/unist": "^2.0.6",
+ "postcss-cli": "^10.1.0",
+ "tailwindcss": "^3.3.2",
"typescript": "~4.6.4"
}
}
diff --git a/packages/react-showroom/postcss.config.js b/packages/react-showroom/postcss.config.js
new file mode 100644
index 00000000..22f7f7b5
--- /dev/null
+++ b/packages/react-showroom/postcss.config.js
@@ -0,0 +1 @@
+module.exports = require('@showroomjs/ui/postcss.config');
diff --git a/packages/react-showroom/src/config/create-webpack-config.ts b/packages/react-showroom/src/config/create-webpack-config.ts
index f80772a0..81d6f645 100644
--- a/packages/react-showroom/src/config/create-webpack-config.ts
+++ b/packages/react-showroom/src/config/create-webpack-config.ts
@@ -20,7 +20,6 @@ import {
generateAllComponentsPaths,
generateCodeblocksData,
generateDocPlaceHolder,
- generateReactEntryCompat,
generateSearchIndex,
generateSectionsAndImports,
generateWrapper,
@@ -46,6 +45,8 @@ const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const WebpackMessages = require('webpack-messages');
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
+const showRoomCss = resolveShowroom('client-dist/react-showroom.css');
+
export const createClientWebpackConfig = (
mode: Environment,
config: NormalizedReactShowroomConfiguration,
@@ -81,9 +82,10 @@ export const createClientWebpackConfig = (
const isProd = mode === 'production';
- const clientEntry = resolveShowroom(
- 'client-dist/app/showroom-client-entry.js'
- );
+ const clientEntry = [
+ showRoomCss,
+ resolveShowroom('client-dist/app/showroom-client-entry.js'),
+ ];
const previewEntry = resolveShowroom(
'client-dist/app/preview-client-entry.js'
);
@@ -322,8 +324,6 @@ const createBaseWebpackConfig = (
generateDocPlaceHolder(exampleConfig.placeholder),
[resolveShowroom('node_modules/react-showroom-index.js')]:
generateSearchIndex(sections, search.includeHeadings),
- [resolveShowroom('node_modules/react-showroom-compat.js')]:
- generateReactEntryCompat(),
});
const babelPreset = createBabelPreset(mode);
@@ -576,11 +576,14 @@ const createBaseWebpackConfig = (
},
{
test: /\.css$/,
- // if app don't need CSS, we still need to handle css in @showroomjs/device-frames
+ // if app don't need CSS, we still need to handle css in @showroomjs/device-frames and @showroomjs/ui
...(css.enabled
? {}
: {
- include: [/node_modules\/@showroomjs\/device-frames/],
+ include: [
+ /node_modules\/@showroomjs\/device-frames/,
+ showRoomCss,
+ ],
}),
sideEffects: true,
use: [
@@ -732,9 +735,11 @@ const createBaseWebpackConfig = (
'...', // keep existing minimizer
new CssMinimizerPlugin(),
],
- splitChunks: {
- chunks: 'all',
- },
+ splitChunks: options.ssr
+ ? false
+ : {
+ chunks: 'all',
+ },
},
performance: {
hints: false,
diff --git a/packages/react-showroom/src/lib/generate-showroom-data.ts b/packages/react-showroom/src/lib/generate-showroom-data.ts
index 8c3c2f3b..5535f23e 100644
--- a/packages/react-showroom/src/lib/generate-showroom-data.ts
+++ b/packages/react-showroom/src/lib/generate-showroom-data.ts
@@ -1,11 +1,10 @@
import { getSafeName } from '@showroomjs/core';
-import {
+import type {
+ GetEditUrlFunction,
ReactShowroomComponentSectionConfig,
ReactShowroomSectionConfig,
- GetEditUrlFunction,
} from '@showroomjs/core/react';
import path from 'path';
-import { logToStdout, yellow } from './log-to-stdout';
import { paths, resolveShowroom } from './paths';
let _nameIndex = 0;
@@ -147,9 +146,10 @@ export const generateSectionsAndImports = (
path: string;
name: string;
}> = [];
- const compVar: Array<{
+ const compVars: Array<{
identifier: string;
sourcePath: string;
+ id: string;
}> = [];
function collect(sectionList: Array): string {
@@ -162,6 +162,9 @@ export const generateSectionsAndImports = (
items: ${collect(section.items)},
slug: addTrailingSlash('${section.slug}'),
${section.hideFromSidebar ? 'hideFromSidebar: true,' : ''}
+ collapsible: ${
+ section.collapsible ? `'${section.collapsible}'` : false
+ },
}`;
}
@@ -175,9 +178,10 @@ export const generateSectionsAndImports = (
});
}
- compVar.push({
+ compVars.push({
identifier: name,
sourcePath: section.sourcePath,
+ id: section.id,
});
return `${name} ? {
@@ -308,10 +312,10 @@ export const generateSectionsAndImports = (
: `import * as ${imp.name} from '${imp.path}';`
)
.join('\n')}
- ${compVar
+ ${compVars
.map(
(varDef) =>
- `const ${varDef.identifier} = allCompMetadata['${varDef.sourcePath}'];`
+ `const ${varDef.identifier} = allCompMetadata['${varDef.id}'];`
)
.join('\n')}
export default ${result}`,
@@ -330,6 +334,7 @@ export const generateAllComponents = (
const componentImports: Array<{
name: string;
sourcePath: string;
+ id: string;
codeblockPath: string | null;
}> = [];
@@ -344,6 +349,7 @@ export const generateAllComponents = (
componentImports.push({
name,
sourcePath: section.sourcePath,
+ id: section.id,
codeblockPath:
section.docPath && `${section.docPath}?showroomRemarkCodeblocks`,
});
@@ -361,7 +367,7 @@ export const generateAllComponents = (
${componentImports
.map(
(comp) => `const ${comp.name} = require('${comp.sourcePath}');
- const _showroomMetadata_${comp.name} = allCompMetadata['${comp.sourcePath}'];
+ const _showroomMetadata_${comp.name} = allCompMetadata['${comp.id}'];
${
comp.codeblockPath
? `import _code_${comp.name} from '${comp.codeblockPath}';`
@@ -407,7 +413,10 @@ export const generateAllComponentsPaths = (
export const generateAllComponentsDocs = (
sections: Array
) => {
- const componentPaths: Array = [];
+ const componentPaths: Array<{
+ sourcePath: string;
+ id: string;
+ }> = [];
function collect(sectionList: Array): void {
sectionList.forEach((section) => {
@@ -415,7 +424,7 @@ export const generateAllComponentsDocs = (
collect(section.items);
}
if (section.type === 'component') {
- componentPaths.push(section.sourcePath);
+ componentPaths.push(section);
}
});
}
@@ -423,15 +432,18 @@ export const generateAllComponentsDocs = (
collect(sections);
return `${componentPaths
- .map((path, index) => `import component${index} from '${path}?docgen';`)
+ .map(
+ ({ id, sourcePath }) =>
+ `import component${id} from '${sourcePath}?docgen';`
+ )
.join('\n')}
const allComponentDocs = {};
${componentPaths
.map(
- (_, index) => `if (component${index}) {
- allComponentDocs[component${index}.filePath] = component${index};
+ ({ id }) => `if (component${id}) {
+ allComponentDocs['${id}'] = component${id};
}`
)
.join('\n')}
@@ -465,9 +477,10 @@ export const generateSearchIndex = (
sections: Array,
includeHeadingsInIndex: boolean
) => {
- const compVar: Array<{
+ const compVars: Array<{
identifier: string;
sourcePath: string;
+ id: string;
}> = [];
const imports: Array = [];
@@ -475,7 +488,7 @@ export const generateSearchIndex = (
function collect(sectionList: Array): string {
return `[${sectionList
.map((section) => {
- if (section.hideFromSidebar) {
+ if (section.hideFromSidebar || section.hideFromSearch) {
return 'undefined';
}
@@ -486,9 +499,10 @@ export const generateSearchIndex = (
if (section.type === 'component') {
const name = getName('component');
- compVar.push({
+ compVars.push({
identifier: name,
sourcePath: section.sourcePath,
+ id: section.id,
});
const shouldIndexDoc = includeHeadingsInIndex && !!section.docPath;
@@ -566,65 +580,10 @@ ${imports
: `import * as ${imp.name} from '${imp.path}';`
)
.join('\n')}
-${compVar
+${compVars
.map(
- (varDef) =>
- `const ${varDef.identifier} = allCompMetadata['${varDef.sourcePath}'];`
+ (varDef) => `const ${varDef.identifier} = allCompMetadata['${varDef.id}'];`
)
.join('\n')}
export default ${result};`;
};
-
-export const generateReactEntryCompat = (): string => {
- const ReactDomPath = require.resolve('react-dom', {
- paths: [paths.appPath],
- });
-
- const ReactDOM = require(ReactDomPath);
-
- const reactMajorVer = Number(ReactDOM.version.split('.')[0]);
-
- logToStdout(`Using React version ${yellow(reactMajorVer)}`);
-
- if (reactMajorVer <= 17) {
- return `import * as ReactDOM from 'react-dom';
-
- export const render = (ui, target) => {
- ReactDOM.render(ui, target);
-
- return function unmount() {
- ReactDOM.unmountComponentAtNode(target);
- }
- };
-
- export const hydrate = (ui, target) => {
- ReactDOM.hydrate(ui, target);
-
- return function unmount() {
- ReactDOM.unmountComponentAtNode(target);
- };
- };
-`;
- } else {
- return `import { createRoot, hydrateRoot } from 'react-dom/client';
-
- export const render = (ui, target) => {
- const root = createRoot(target);
-
- root.render(ui);
-
- return function unmount() {
- root.unmount();
- }
- };
-
- export const hydrate = (ui, target) => {
- const root = hydrateRoot(target, ui);
-
- return function unmount() {
- root.unmount();
- };
- };
-`;
- }
-};
diff --git a/packages/react-showroom/src/lib/get-config.ts b/packages/react-showroom/src/lib/get-config.ts
index a4719b30..46d3af61 100644
--- a/packages/react-showroom/src/lib/get-config.ts
+++ b/packages/react-showroom/src/lib/get-config.ts
@@ -156,7 +156,10 @@ export const getConfig = (
ignore: ignores,
});
- collectComponents(componentPaths, sections, [], false);
+ collectComponents(componentPaths, sections, [], {
+ hideFromSearch: false,
+ hideFromSidebar: false,
+ });
} else if (!items) {
const componentPaths = glob.sync(DEFAULT_COMPONENTS_GLOB, {
cwd: paths.appPath,
@@ -164,7 +167,10 @@ export const getConfig = (
ignore: ignores,
});
- collectComponents(componentPaths, sections, [], false);
+ collectComponents(componentPaths, sections, [], {
+ hideFromSearch: false,
+ hideFromSidebar: false,
+ });
}
if (items) {
@@ -289,7 +295,7 @@ export const getConfig = (
componentPaths: Array,
parent: Array,
parentSlugs: Array,
- hideFromSidebar: boolean | undefined
+ options: { hideFromSearch: boolean; hideFromSidebar: boolean }
) {
componentPaths.forEach((comPath) => {
const comPathInfo = path.parse(comPath);
@@ -311,7 +317,8 @@ export const getConfig = (
docPath,
parentSlugs,
id: createHash(comPath),
- hideFromSidebar,
+ hideFromSidebar: options.hideFromSidebar,
+ hideFromSearch: options.hideFromSearch,
};
components.push(section);
@@ -357,7 +364,9 @@ export const getConfig = (
title,
slug: parentSlugs.concat(slug).join('/'),
hideFromSidebar: sectionConfig.hideFromSidebar,
+ hideFromSearch: sectionConfig.hideFromSearch,
items: [],
+ collapsible: sectionConfig.collapsible || false,
};
collectSections(
@@ -400,7 +409,10 @@ export const getConfig = (
sectionConfig.path
? parentSlugs.concat(sectionConfig.path)
: parentSlugs,
- sectionConfig.hideFromSidebar
+ {
+ hideFromSearch: sectionConfig.hideFromSearch || false,
+ hideFromSidebar: sectionConfig.hideFromSidebar || false,
+ }
);
return;
}
@@ -422,13 +434,18 @@ export const getConfig = (
slug: parentSlugs.concat(slug).join('/'),
items: [],
hideFromSidebar: sectionConfig.hideFromSidebar,
+ hideFromSearch: sectionConfig.hideFromSearch,
+ collapsible: sectionConfig.collapsible || false,
};
collectComponents(
componentPaths,
section.items,
parentSlugs.concat(slug),
- sectionConfig.hideFromSidebar
+ {
+ hideFromSearch: sectionConfig.hideFromSearch || false,
+ hideFromSidebar: sectionConfig.hideFromSidebar || false,
+ }
);
parent.push(section);
@@ -461,7 +478,8 @@ export const getConfig = (
title: sectionConfig.title,
sourcePath: docPath,
slug: parentSlugs.concat(slug).join('/'),
- hideFromSidebar: sectionConfig.hideFromSidebar,
+ hideFromSidebar: sectionConfig.hideFromSidebar || false,
+ hideFromSearch: sectionConfig.hideFromSearch || false,
formatLabel: (x) => x,
_associatedComponentName: sectionConfig._associatedComponentName,
});
@@ -492,14 +510,22 @@ export const getConfig = (
title: docGroupTitle,
slug: slugParts.join('/'),
items: [],
- hideFromSidebar: sectionConfig.hideFromSidebar,
+ hideFromSidebar: sectionConfig.hideFromSidebar || false,
+ hideFromSearch: sectionConfig.hideFromSearch || false,
+ collapsible: false,
};
- collectDocs(section.items, slugParts, formatLabel, pagesPaths);
+ collectDocs(section.items, slugParts, formatLabel, pagesPaths, {
+ hideFromSearch: sectionConfig.hideFromSearch || false,
+ hideFromSidebar: sectionConfig.hideFromSidebar || false,
+ });
parent.push(section);
} else {
- collectDocs(parent, parentSlugs, formatLabel, pagesPaths);
+ collectDocs(parent, parentSlugs, formatLabel, pagesPaths, {
+ hideFromSearch: sectionConfig.hideFromSearch || false,
+ hideFromSidebar: sectionConfig.hideFromSidebar || false,
+ });
}
return;
@@ -516,7 +542,8 @@ function collectDocs(
targetItems: Array,
pathToDoc: Array,
formatLabel: (ori: string) => string,
- pagePaths: Array
+ pagePaths: Array,
+ options: { hideFromSearch: boolean; hideFromSidebar: boolean }
) {
pagePaths.forEach((pagePath) => {
const pathInfo = path.parse(pagePath);
@@ -535,6 +562,8 @@ function collectDocs(
sourcePath: path.resolve(paths.appPath, pagePath),
slug: pathToDoc.concat(slug).join('/'),
formatLabel,
+ hideFromSidebar: options.hideFromSidebar,
+ hideFromSearch: options.hideFromSearch,
});
});
}
diff --git a/packages/react-showroom/src/lib/prerender.ts b/packages/react-showroom/src/lib/prerender.ts
index b7e619c3..2a1427d8 100644
--- a/packages/react-showroom/src/lib/prerender.ts
+++ b/packages/react-showroom/src/lib/prerender.ts
@@ -31,10 +31,16 @@ export async function prerenderSite(
if (route !== '') {
pageCount++;
- await fs.outputFile(
- resolveApp(`${config.outDir}/${route}index.html`),
- await getHtml(`/${route}`)
- );
+ try {
+ await fs.outputFile(
+ resolveApp(`${config.outDir}/${route}index.html`),
+ await getHtml(`/${route}`)
+ );
+ } catch (error) {
+ console.group(`Error while prerendering ${route}`);
+ console.error(error);
+ console.groupEnd();
+ }
}
}
@@ -90,10 +96,16 @@ export async function prerenderPreview(
if (route !== '') {
pageCount++;
- await fs.outputFile(
- resolveApp(`${config.outDir}/_preview/${route}index.html`),
- await getHtml(`/${route}`)
- );
+ try {
+ await fs.outputFile(
+ resolveApp(`${config.outDir}/_preview/${route}index.html`),
+ await getHtml(`/${route}`)
+ );
+ } catch (error) {
+ console.group(`Error while prerendering ${route}`);
+ console.error(error);
+ console.groupEnd();
+ }
}
}
diff --git a/packages/react-showroom/src/webpack-loader/showroom-remark-codeblocks-imports-loader.ts b/packages/react-showroom/src/webpack-loader/showroom-remark-codeblocks-imports-loader.ts
index a011fd6c..efef1e43 100644
--- a/packages/react-showroom/src/webpack-loader/showroom-remark-codeblocks-imports-loader.ts
+++ b/packages/react-showroom/src/webpack-loader/showroom-remark-codeblocks-imports-loader.ts
@@ -1,4 +1,4 @@
-import { CodeBlocks, isString } from '@showroomjs/core';
+import { CodeBlocks, codeBlockOverrides, isString } from '@showroomjs/core';
import { ImportConfig } from '@showroomjs/core/react';
import type { LoaderDefinition } from 'webpack';
import { getImportsAttach } from '../lib/get-client-import-map';
@@ -28,6 +28,12 @@ const showroomRemarkCodeblocksImportsLoader: LoaderDefinition).includes(pkgName)
+ ) {
+ continue;
+ }
+
if (
!result.some((importConfig) =>
isString(importConfig)
diff --git a/packages/react-showroom/tailwind.config.js b/packages/react-showroom/tailwind.config.js
new file mode 100644
index 00000000..cc5f39f4
--- /dev/null
+++ b/packages/react-showroom/tailwind.config.js
@@ -0,0 +1,13 @@
+const baseConfig = require('@showroomjs/ui/tailwind.config');
+
+/**
+ * @type {import('tailwindcss').Config}
+ */
+module.exports = {
+ ...baseConfig,
+ content: [
+ './client/**/*.ts',
+ './client/**/*.tsx',
+ './node_modules/@showroomjs/ui/dist/*.js',
+ ],
+};
diff --git a/packages/react-showroom/tsconfig.client.json b/packages/react-showroom/tsconfig.client.json
index 8f8d70d4..ca610ab7 100644
--- a/packages/react-showroom/tsconfig.client.json
+++ b/packages/react-showroom/tsconfig.client.json
@@ -6,13 +6,14 @@
"lib": ["DOM", "ESNext"],
"sourceMap": true,
"strict": true,
- "jsx": "react",
+ "jsx": "react-jsx",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"resolveJsonModule": true,
"outDir": "client-dist",
- "skipLibCheck": true
+ "skipLibCheck": true,
+ "noUnusedLocals": true
},
"include": ["client"]
}
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 94b2ae4d..74e78cef 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -4,35 +4,43 @@
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
+ "module": "dist/index.mjs",
"scripts": {
- "build": "tsc -b .",
+ "build": "tsup",
"dev": "pnpm build --watch",
"clean": "rimraf dist *.tsbuildinfo",
"lint": "eslint src/**"
},
"devDependencies": {
+ "@heroicons/react": "^2.0.18",
+ "@tailwindcss/forms": "^0.5.3",
+ "autoprefixer": "^10.4.14",
+ "postcss": "^8.4.23",
+ "postcss-prefixer": "^3.0.0",
+ "tailwindcss": "^3.3.2",
+ "tsup": "^6.7.0",
"typescript": "~4.6.4"
},
"dependencies": {
- "@heroicons/react": "^1.0.6",
- "@radix-ui/react-announce": "^0.1.5",
- "@radix-ui/react-checkbox": "^1.0.0",
- "@radix-ui/react-collapsible": "^1.0.0",
- "@radix-ui/react-dialog": "^1.0.0",
- "@radix-ui/react-dropdown-menu": "^1.0.0",
- "@radix-ui/react-id": "^1.0.0",
- "@radix-ui/react-popover": "^1.0.0",
- "@radix-ui/react-portal": "^1.0.0",
- "@radix-ui/react-switch": "^1.0.0",
- "@radix-ui/react-tabs": "^1.0.0",
- "@radix-ui/react-toggle": "^1.0.0",
- "@radix-ui/react-tooltip": "^1.0.0",
+ "@radix-ui/react-announce": "^0.1.8",
+ "@radix-ui/react-checkbox": "^1.0.4",
+ "@radix-ui/react-collapsible": "^1.0.3",
+ "@radix-ui/react-dialog": "^1.0.4",
+ "@radix-ui/react-dropdown-menu": "^2.0.5",
+ "@radix-ui/react-id": "^1.0.1",
+ "@radix-ui/react-popover": "^1.0.6",
+ "@radix-ui/react-portal": "^1.0.3",
+ "@radix-ui/react-switch": "^1.0.3",
+ "@radix-ui/react-tabs": "^1.0.4",
+ "@radix-ui/react-toggle": "^1.0.3",
+ "@radix-ui/react-tooltip": "^1.0.6",
"@showroomjs/bundles": "workspace:*",
"@showroomjs/core": "workspace:*",
"@stitches/react": "^1.2.8",
- "classnames": "^2.3.1",
+ "classnames": "^2.3.2",
"downshift": "^6.1.7",
"mitt": "^3.0.0",
+ "react-colorful": "^5.6.1",
"react-highlight-words": "^0.18.0",
"react-textarea-autosize": "^8.3.4",
"rifm": "^0.12.1",
@@ -40,8 +48,8 @@
"use-constant": "^1.1.1"
},
"peerDependencies": {
- "react": "^17.0.0-0 || ^18.0.0-0",
- "react-dom": "^17.0.0-0 || ^18.0.0-0"
+ "react": "^18.0.0-0",
+ "react-dom": "^18.0.0-0"
},
"publishConfig": {
"access": "public"
diff --git a/packages/ui/postcss.config.js b/packages/ui/postcss.config.js
new file mode 100644
index 00000000..8ecc1b2c
--- /dev/null
+++ b/packages/ui/postcss.config.js
@@ -0,0 +1,9 @@
+module.exports = {
+ plugins: {
+ tailwindcss: {},
+ autoprefixer: {},
+ 'postcss-prefixer': {
+ prefix: '_sr-',
+ },
+ },
+};
diff --git a/packages/ui/src/components/alert.mdx b/packages/ui/src/components/alert.mdx
new file mode 100644
index 00000000..9d038d91
--- /dev/null
+++ b/packages/ui/src/components/alert.mdx
@@ -0,0 +1,28 @@
+```tsx
+import * as React from 'react';
+import { usePropsEditor } from 'react-showroom/client';
+
+const Demo = () => {
+ const propsEditor = usePropsEditor({
+ initialProps: {
+ variant: 'error',
+ children: 'Some alert message that requires attention.',
+ },
+ controls: {
+ children: {
+ type: 'text',
+ },
+ },
+ });
+
+ // prevent SSR error
+ const [isClient, setIsClient] = React.useState(false);
+ React.useEffect(() => {
+ setIsClient(true);
+ }, []);
+
+ return isClient ? : null;
+};
+
+;
+```
diff --git a/packages/ui/src/components/alert.tsx b/packages/ui/src/components/alert.tsx
index 6413bf82..fe0f97e0 100644
--- a/packages/ui/src/components/alert.tsx
+++ b/packages/ui/src/components/alert.tsx
@@ -1,11 +1,11 @@
import {
CheckCircleIcon,
- ExclamationIcon,
+ ExclamationTriangleIcon,
InformationCircleIcon,
XCircleIcon,
-} from '@heroicons/react/solid';
+} from '@heroicons/react/20/solid';
import * as Announce from '@radix-ui/react-announce';
-import { css, styled, text } from '../stitches.config';
+import { tw } from '../lib/tw';
export interface AlertProps {
variant: 'error' | 'success' | 'info' | 'warning';
@@ -15,71 +15,31 @@ export interface AlertProps {
export function Alert(props: AlertProps) {
const Icon = iconMap[props.variant];
return (
-
-
-
-
-
+
+
+
+
+
{props.children}
-
-
+
+
);
}
-const IconWrapper = styled('div', { flexShrink: '0' });
-const ContentWrapper = styled('div', { whiteSpace: 'pre-wrap' });
-
const iconMap = {
error: XCircleIcon,
success: CheckCircleIcon,
info: InformationCircleIcon,
- warning: ExclamationIcon,
+ warning: ExclamationTriangleIcon,
};
-
-const iconClass = css({
- width: '1.25rem',
- height: '1.25rem',
- variants: {
- variant: {
- error: {
- color: '$red-400',
- },
- success: {
- color: '$green-400',
- },
- info: {
- color: '$blue-400',
- },
- warning: {
- color: '$yellow-400',
- },
- },
- },
-});
-
-const Root = styled(Announce.Root, {
- borderRadius: '$md',
- padding: '$4',
- display: 'flex',
- gap: '$3',
- variants: {
- variant: {
- success: {
- backgroundColor: '$green-50',
- color: '$green-800',
- },
- error: {
- backgroundColor: '$red-50',
- color: '$red-800',
- },
- info: {
- backgroundColor: '$blue-50',
- color: '$blue-800',
- },
- warning: {
- backgroundColor: '$yellow-60',
- color: '$yellow-800',
- },
- },
- },
-});
diff --git a/packages/ui/src/components/bare-button.ts b/packages/ui/src/components/bare-button.ts
deleted file mode 100644
index 82935cb5..00000000
--- a/packages/ui/src/components/bare-button.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { styled } from '../stitches.config';
-import { buttonBase } from './base';
-
-export const BareButton = styled('button', {
- ...buttonBase,
- position: 'relative',
- '&:active': {
- top: 1,
- },
-});
diff --git a/packages/ui/src/components/breadcrumbs.mdx b/packages/ui/src/components/breadcrumbs.mdx
new file mode 100644
index 00000000..bdddf3f0
--- /dev/null
+++ b/packages/ui/src/components/breadcrumbs.mdx
@@ -0,0 +1,15 @@
+```tsx
+
+```
diff --git a/packages/ui/src/components/breadcrumbs.tsx b/packages/ui/src/components/breadcrumbs.tsx
index 5bfd876d..07d972ac 100644
--- a/packages/ui/src/components/breadcrumbs.tsx
+++ b/packages/ui/src/components/breadcrumbs.tsx
@@ -1,6 +1,6 @@
import { Link } from '@showroomjs/bundles/routing';
import * as React from 'react';
-import { styled } from '../stitches.config';
+import { tw } from '../lib/tw';
export interface BreadcrumbsProps {
items: Array<{
@@ -12,79 +12,42 @@ export interface BreadcrumbsProps {
export const Breadcrumbs = React.forwardRef(
function Breadcrumbs(props, forwardedRef) {
return (
-
-
+
+
+
);
}
);
-const Root = styled('nav', {
- background: 'White',
- display: 'flex',
- borderBottom: '1px solid $gray-200',
-});
-
-const Ol = styled('ol', {
- display: 'flex',
- gap: '4',
- width: '100%',
- listStyleType: 'none',
- margin: 0,
-});
-
-const Item = styled('li', {
- display: 'flex',
- alignItems: 'center',
-});
-
-const Svg = styled('svg', {
- width: 24,
- height: '100%',
- flexShrink: 0,
- color: '$gray-200',
-});
-
-const Text = styled('span', {
- marginLeft: '$4',
- paddingLeft: '$2',
- paddingRight: '$2',
- fontSize: '$sm',
- lineHeight: '$sm',
- color: '$gray-500',
- textDecoration: 'none',
- borderBlock: '1px solid transparent',
- '&:hover': {
- color: '$gray-700',
- },
-});
+const textClass = tw(['text-sm ml-4 px-2 text-gray-500 no-underline']);
diff --git a/packages/ui/src/components/button.mdx b/packages/ui/src/components/button.mdx
new file mode 100644
index 00000000..5a00977d
--- /dev/null
+++ b/packages/ui/src/components/button.mdx
@@ -0,0 +1,21 @@
+```tsx
+import { usePropsEditor } from 'react-showroom/client';
+
+const Demo = () => {
+ const propsEditor = usePropsEditor({
+ initialProps: {
+ variant: 'primary',
+ children: 'Button',
+ },
+ controls: {
+ children: {
+ type: 'text',
+ },
+ },
+ });
+
+ return ;
+};
+
+;
+```
diff --git a/packages/ui/src/components/button.tsx b/packages/ui/src/components/button.tsx
index 318c5817..1fe005e9 100644
--- a/packages/ui/src/components/button.tsx
+++ b/packages/ui/src/components/button.tsx
@@ -1,25 +1,28 @@
-import { styled } from '../stitches.config';
+import * as React from 'react';
+import { tw } from '../lib/tw';
-export const Button = styled('button', {
- px: '$2',
- py: '$1',
- minWidth: 60,
- display: 'inline-flex',
- justifyContent: 'center',
- alignItems: 'center',
- border: '1px solid transparent',
- borderRadius: '$base',
- variants: {
- variant: {
- primary: {
- backgroundColor: '$primary-500',
- color: 'White',
- },
- outline: {
- color: '$primary-500',
- backgroundColor: 'White',
- borderColor: '$primary-500',
- },
- },
- },
-});
+export interface ButtonProps extends React.ComponentPropsWithoutRef<'button'> {
+ variant?: 'primary' | 'outline';
+}
+
+export const Button = React.forwardRef(
+ function Button({ variant, ...props }, forwardedRef) {
+ const classes = React.useMemo(() => {
+ return tw(
+ [
+ 'inline-flex justify-center items-center py-1 min-w-[60px] border rounded cursor-pointer disabled:cursor-default',
+ variant &&
+ {
+ primary: 'bg-primary-600 text-white border-transparent',
+ outline: 'bg-white text-primary-600 border-primary-600',
+ }[variant],
+ ],
+ [props.className]
+ );
+ }, [variant, props.className]);
+
+ return (
+
+ );
+ }
+);
diff --git a/packages/ui/src/components/checkbox.mdx b/packages/ui/src/components/checkbox.mdx
new file mode 100644
index 00000000..42a27ffd
--- /dev/null
+++ b/packages/ui/src/components/checkbox.mdx
@@ -0,0 +1,15 @@
+```tsx
+const Demo = () => {
+ const [checked, setChecked] = React.useState<'indeterminate' | boolean>(
+ 'indeterminate'
+ );
+ return (
+
+
+ {checked ? 'Checked' : 'Unchecked'}
+
+ );
+};
+
+;
+```
diff --git a/packages/ui/src/components/checkbox.tsx b/packages/ui/src/components/checkbox.tsx
index 7cd4775f..79467c55 100644
--- a/packages/ui/src/components/checkbox.tsx
+++ b/packages/ui/src/components/checkbox.tsx
@@ -1,34 +1,10 @@
-import { CheckIcon, MinusIcon } from '@heroicons/react/solid';
+import { CheckIcon, MinusIcon } from '@heroicons/react/20/solid';
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
import * as React from 'react';
-import { styled } from '../stitches.config';
-
-const StyledRoot = styled(CheckboxPrimitive.Root, {
- all: 'unset',
- backgroundColor: 'white',
- width: 16,
- height: 16,
- borderRadius: 4,
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- border: '1px solid $gray-300',
- '&:focus': {
- outline: '1px solid $primary-300',
- outlineOffset: 2,
- },
- '&:disabled': {
- backgroundColor: '$gray-200',
- },
-});
-
-const Indicator = styled(CheckboxPrimitive.Indicator, {
- color: 'white',
- lineHeight: 0,
-});
+import { tw } from '../lib/tw';
export type CheckboxProps = Omit<
- React.ComponentPropsWithoutRef,
+ CheckboxPrimitive.CheckboxProps,
'children' | 'asChild' | 'checked'
> & {
checked: CheckboxPrimitive.CheckedState;
@@ -37,29 +13,33 @@ export type CheckboxProps = Omit<
export const Checkbox = React.forwardRef(
function Checkbox(props, ref) {
return (
-
-
+
{props.checked === 'indeterminate' && (
-
+
)}
{props.checked === true && }
-
-
+
+
);
}
);
-
-const DashIcon = styled(MinusIcon, {
- color: '$primary-500',
-});
diff --git a/packages/ui/src/components/collapsible.mdx b/packages/ui/src/components/collapsible.mdx
new file mode 100644
index 00000000..87b7f263
--- /dev/null
+++ b/packages/ui/src/components/collapsible.mdx
@@ -0,0 +1,20 @@
+```tsx
+const Demo = () => {
+ const [open, setOpen] = React.useState(false);
+ return (
+
+
+
+ Toggle
+
+
+
+
+
+ );
+};
+
+;
+```
diff --git a/packages/ui/src/components/collapsible.tsx b/packages/ui/src/components/collapsible.tsx
index ef4fe47f..61e45713 100644
--- a/packages/ui/src/components/collapsible.tsx
+++ b/packages/ui/src/components/collapsible.tsx
@@ -1,63 +1,91 @@
-import { ChevronDownIcon } from '@heroicons/react/outline';
-import * as Collapsible from '@radix-ui/react-collapsible';
-import { keyframes, styled } from '../stitches.config';
-import { buttonBase } from './base';
+import { ChevronDownIcon } from '@heroicons/react/20/solid';
+import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
+import * as React from 'react';
+import { tw } from '../lib/tw';
-export const Button = styled(Collapsible.Trigger, {
- ...buttonBase,
- color: '$gray-500',
- position: 'relative',
- fontWeight: '600',
- px: '$1',
- outlineRing: '',
+const CollapsibleButton = React.forwardRef<
+ HTMLButtonElement,
+ CollapsiblePrimitive.CollapsibleTriggerProps
+>(function CollapsibleButton(props, forwardedRef) {
+ return (
+
+ );
});
-const open = keyframes({
- from: { height: 0 },
- to: { height: 'var(--radix-collapsible-content-height)' },
-});
+interface CollapsibleContentProps
+ extends React.ComponentPropsWithoutRef<'div'> {
+ animate?: boolean;
+}
-const close = keyframes({
- from: { height: 'var(--radix-collapsible-content-height)' },
- to: { height: 0 },
-});
+const Content = ({ animate, className, ...props }: CollapsibleContentProps) => (
+
+);
-export const Content = styled(Collapsible.Content, {
- overflow: 'hidden',
- transition: 'height 300ms ease-out',
- variants: {
- animate: {
- true: {
- '&[data-state="open"]': { animation: `${open} 300ms ease-out` },
- '&[data-state="closed"]': { animation: `${close} 300ms ease-out` },
- },
- },
- },
+const ToggleIcon = React.forwardRef<
+ SVGSVGElement,
+ React.ComponentPropsWithoutRef<'svg'> & {
+ direction?: 'down' | 'up' | 'right' | 'left';
+ }
+>(function ToggleIcon({ direction, ...props }, forwardedRef) {
+ return (
+
+ );
});
-export const Root = styled(Collapsible.Root);
+const Root = React.forwardRef<
+ HTMLDivElement,
+ CollapsiblePrimitive.CollapsibleProps
+>(function CollapsibleRoot(props, forwardedRef) {
+ return (
+
+ );
+});
-export const ToggleIcon = styled(ChevronDownIcon, {
- color: '$gray-500',
- transition: 'transform 300ms ease-in-out',
- transform: 'rotate(0deg)',
- variants: {
- hide: {
- true: {
- transform: 'rotate(-180deg)',
- },
- },
- direction: {
- down: {},
- up: {
- transform: 'rotate(-180deg)',
- },
- right: {
- transform: 'rotate(-90deg)',
- },
- left: {
- transform: 'rotate(90deg)',
- },
- },
- },
+export const Collapsible = Object.assign(Root, {
+ Button: CollapsibleButton,
+ Content,
+ ToggleIcon,
+ Trigger: CollapsiblePrimitive.Trigger,
});
diff --git a/packages/ui/src/components/color-input.mdx b/packages/ui/src/components/color-input.mdx
new file mode 100644
index 00000000..64310c6d
--- /dev/null
+++ b/packages/ui/src/components/color-input.mdx
@@ -0,0 +1,3 @@
+```tsx
+
+```
diff --git a/packages/ui/src/components/color-input.tsx b/packages/ui/src/components/color-input.tsx
index b30c32af..fa73e81e 100644
--- a/packages/ui/src/components/color-input.tsx
+++ b/packages/ui/src/components/color-input.tsx
@@ -1,24 +1,62 @@
+import { isDefined } from '@showroomjs/core';
import * as React from 'react';
-import { TextInput, TextInputProps } from './text-input';
-import { styled } from '../stitches.config';
-
-export const ColorInput = styled(
- React.forwardRef>(
- function ColorInput({ onValue, ...props }, ref) {
- return (
- {
- if (validHex(value) && onValue) {
- onValue(`#${escapeHex(value)}`);
- }
- }}
- spellCheck={false}
+import { HexColorPicker } from 'react-colorful';
+import { tw } from '../lib/tw';
+import { Popover } from './popover';
+
+export interface ColorInputProps
+ extends Omit, 'type'> {
+ /**
+ * Value of the color, in hex format, starting with # character.
+ *
+ * @example #ff0000
+ */
+ value: string;
+ onValue: (value: string) => void;
+ placeholder?: string;
+}
+
+export const ColorInput = React.forwardRef(
+ function ColorInput(
+ { onValue, value, placeholder = 'Select color', ...props },
+ ref
+ ) {
+ const [_value, _setValue] = React.useState('');
+ const usedValue = isDefined(onValue) ? value : _value;
+ const setValue = isDefined(onValue) ? onValue : _setValue;
+
+ const onChange = React.useCallback(
+ (value: string) => {
+ if (validHex(value)) {
+ setValue(`#${escapeHex(value)}`);
+ }
+ },
+ [setValue]
+ );
+
+ return (
+
+
- );
- }
- )
+ className={tw(
+ [
+ 'form-input block w-36 md:text-sm text-left',
+ 'bg-white border border-zinc-300 rounded',
+ !usedValue && 'text-zinc-300 font-medium',
+ ],
+ [props.className]
+ )}
+ >
+ {usedValue ? usedValue : placeholder}
+
+
+
+
+
+
+
+ );
+ }
);
const matcher = /^#?([0-9A-F]{3,8})$/i;
diff --git a/packages/ui/src/components/copy-button.tsx b/packages/ui/src/components/copy-button.tsx
index 527570a9..4549e40e 100644
--- a/packages/ui/src/components/copy-button.tsx
+++ b/packages/ui/src/components/copy-button.tsx
@@ -1,9 +1,8 @@
import { callAll, noop } from '@showroomjs/core';
import * as React from 'react';
import { copyText } from '../lib/copy';
+import { tw } from '../lib/tw';
import { useTransientState } from '../lib/use-transient-state';
-import { styled } from '../stitches.config';
-import { buttonBase } from './base';
export interface CopyButtonProps
extends React.ComponentPropsWithoutRef<'button'> {
@@ -30,7 +29,7 @@ export const CopyButton = React.forwardRef(
const [copied, setCopied] = useTransientState(false);
return (
-
+
);
}
);
-
-const Button = styled('button', {
- ...buttonBase,
- fontSize: '$sm',
- lineHeight: '$sm',
-});
diff --git a/packages/ui/src/components/dialog.tsx b/packages/ui/src/components/dialog.tsx
index e8df3de0..886f9088 100644
--- a/packages/ui/src/components/dialog.tsx
+++ b/packages/ui/src/components/dialog.tsx
@@ -1,7 +1,8 @@
-import { XIcon } from '@heroicons/react/outline';
+import { XMarkIcon } from '@heroicons/react/24/outline';
import * as DialogPrimitive from '@radix-ui/react-dialog';
import * as React from 'react';
-import { icons, styled, keyframes } from '../stitches.config';
+import { iconClass } from '../shared-styles';
+import { keyframes, styled } from '../stitches.config';
const overlayShow = keyframes({
'0%': { opacity: 0 },
@@ -60,12 +61,14 @@ export interface DialogProps extends DialogPrimitive.DialogProps {
children: React.ReactNode;
}
-export const DialogImpl = ({ children, ...props }: DialogProps) => (
-
-
- {children}
-
-);
+const DialogImpl = function Dialog({ children, ...props }: DialogProps) {
+ return (
+
+
+ {children}
+
+ );
+};
export interface DialogContentProps extends DialogPrimitive.DialogContentProps {
children: React.ReactNode;
@@ -83,7 +86,7 @@ const DialogContent = styled(
{children}
{showCloseBtn && (
-
+
)}
diff --git a/packages/ui/src/components/dropdown-menu.tsx b/packages/ui/src/components/dropdown-menu.tsx
index bac688b2..3ef1b105 100644
--- a/packages/ui/src/components/dropdown-menu.tsx
+++ b/packages/ui/src/components/dropdown-menu.tsx
@@ -34,7 +34,6 @@ const StyledContent = styled(DropdownMenuPrimitive.Content, {
});
const itemStyles = {
- all: 'unset',
fontSize: '$lg',
lineHeight: '$lg',
color: '$gray-700',
diff --git a/packages/ui/src/components/file-input.tsx b/packages/ui/src/components/file-input.tsx
index 25baeb79..dbf5c43d 100644
--- a/packages/ui/src/components/file-input.tsx
+++ b/packages/ui/src/components/file-input.tsx
@@ -1,4 +1,4 @@
-import { UploadIcon } from '@heroicons/react/outline';
+import { ArrowUpTrayIcon } from '@heroicons/react/24/outline';
import { useId } from '@radix-ui/react-id';
import * as React from 'react';
import { styled } from '../stitches.config';
@@ -88,7 +88,7 @@ const Input = styled('input', {
srOnly: true,
});
-const Icon = styled(UploadIcon, {
+const Icon = styled(ArrowUpTrayIcon, {
display: 'inline-block',
width: 48,
height: 48,
diff --git a/packages/ui/src/components/icons.tsx b/packages/ui/src/components/icons.tsx
index 9e2ff1b7..62a2b299 100644
--- a/packages/ui/src/components/icons.tsx
+++ b/packages/ui/src/components/icons.tsx
@@ -1,5 +1,5 @@
import * as React from 'react';
-import { styled } from '../stitches.config';
+import { tw } from '../lib/tw';
export const ResizeIcon = (props: React.ComponentPropsWithoutRef<'svg'>) => (
);
-export const SpinIcon = styled(function SpinIcon(
- props: React.ComponentPropsWithoutRef<'svg'>
-) {
- return (
-
- );
-});
-
-const SpinCircle = styled('circle', {
- opacity: '25%',
-});
-
-const SpinPath = styled('path', {
- opacity: '75%',
-});
+export const SpinIcon = (props: React.ComponentPropsWithoutRef<'svg'>) => (
+
+);
diff --git a/packages/ui/src/components/number-input.tsx b/packages/ui/src/components/number-input.tsx
index f87ce397..90a001fe 100644
--- a/packages/ui/src/components/number-input.tsx
+++ b/packages/ui/src/components/number-input.tsx
@@ -1,4 +1,4 @@
-import { MinusIcon, PlusIcon } from '@heroicons/react/solid';
+import { MinusIcon, PlusIcon } from '@heroicons/react/20/solid';
import { callAll, isDefined, isNumber, noop } from '@showroomjs/core';
import { useRifm } from 'rifm';
import { formatMoney } from '../lib/number';
diff --git a/packages/ui/src/components/popover.tsx b/packages/ui/src/components/popover.tsx
index a22376c4..8600ebd8 100644
--- a/packages/ui/src/components/popover.tsx
+++ b/packages/ui/src/components/popover.tsx
@@ -58,4 +58,5 @@ export const Popover = Object.assign(PopoverPrimitive.Root, {
Arrow: StyledArrow,
Close: StyledClose,
RawClose: PopoverPrimitive.Close,
+ Portal: PopoverPrimitive.Portal,
});
diff --git a/packages/ui/src/components/search-dialog.tsx b/packages/ui/src/components/search-dialog.tsx
index 51e49c10..a80516ab 100644
--- a/packages/ui/src/components/search-dialog.tsx
+++ b/packages/ui/src/components/search-dialog.tsx
@@ -1,13 +1,11 @@
-import { SearchIcon as PlainSearchIcon } from '@heroicons/react/outline';
+import { MagnifyingGlassIcon as SearchIcon } from '@heroicons/react/20/solid';
import { isDefined } from '@showroomjs/core';
-import cx from 'classnames';
import { useCombobox } from 'downshift';
import * as React from 'react';
-import { SpinIcon } from './icons';
-import { spinAnimation } from './animations';
+import { tw } from '../lib/tw';
import { useStableCallback } from '../lib/use-stable-callback';
-import { css, styled } from '../stitches.config';
import { Dialog } from './dialog';
+import { SpinIcon } from './icons';
import { ShortcutKey } from './shortcut-key';
import { TextHighlight } from './text-highlight';
import { TextInput } from './text-input';
@@ -98,123 +96,128 @@ const SearchDialogInternal = function SearchDialog(
});
return (
-
-
-
+
+
{props.isLoading && (
-
+
-
+
)}
}
>
-
- esc
-
+
+
+ esc
+
+
-
+
{isResultsShown && options.length === 0 && (
- No results found.
+
+ No results found.
+
)}
-
{isResultsShown &&
options.map((option, i) => {
const highlighted = i === highlightedIndex;
return (
- -
-
+
- {option.icon &&
{option.icon}}
-
-
+ {option.icon && (
+
+ {option.icon}
+
+ )}
+
+
{option.description && (
-
+
-
+
)}
-
-
-
+
+
+
);
})}
-
-
+
+
);
};
-const SearchMenuRoot = styled('div', {
- display: 'flex',
- flexFlow: 'column',
- height: '100%',
-});
-
-const Menu = styled('ul', {
- flex: 1,
- margin: '0',
- padding: '0',
- listStyle: 'none',
- maxHeight: '70vh',
- overflowY: 'auto',
-});
-
-const Item = styled('li', {
- margin: 0,
- padding: 0,
- width: '100%',
-});
-
type Dismiss = () => void;
const DismissContext = React.createContext(() => {
@@ -223,7 +226,7 @@ const DismissContext = React.createContext(() => {
const SearchDialogRoot = ({ children }: { children: React.ReactNode }) => {
const [isOpen, setIsOpen] = React.useState(false);
- const dismisss = React.useCallback(() => setIsOpen(false), []);
+ const dismiss = React.useCallback(() => setIsOpen(false), []);
React.useEffect(() => {
const onKeyDown = (event: KeyboardEvent) => {
@@ -245,7 +248,7 @@ const SearchDialogRoot = ({ children }: { children: React.ReactNode }) => {
}, []);
return (
-
+
@@ -261,41 +264,28 @@ export const SearchDialog = Object.assign(SearchDialogImpl, {
}: { children: React.ReactNode } & React.ComponentPropsWithoutRef<'button'>) {
return (
-
-
+
{children}
-
+
- ⌘
+
+ ⌘
+
K
-
+
);
},
@@ -310,102 +300,8 @@ export interface Option {
icon?: React.ReactNode;
}
-const InputWrapper = styled('div', {
- position: 'relative',
- backgroundColor: 'White',
-});
-
-const SearchIcon = styled(PlainSearchIcon, {
- position: 'absolute',
- left: '$3',
- top: 14,
- color: '$primary-300',
- '@md': {
- top: '$3',
- },
-});
-
-const OptionIcon = styled('div', {
- flexShrink: 0,
- color: '$gray-400',
-});
-
-const OptionText = styled('div', {
- flex: 1,
- minWidth: 0,
-});
-
-const Kbd = styled('kbd', {
- fontFamily: '$sans',
-});
-
-const Description = styled('div', {
- color: '$gray-500',
- fontSize: '$sm',
- lineHeight: '$sm',
- overflow: 'hidden',
- whiteSpace: 'nowrap',
- textOverflow: 'ellipsis',
-});
-
-const OptionItem = styled('div', {
- display: 'flex',
- alignItems: 'center',
- gap: '$2',
- px: '$3',
- py: '$2',
- color: 'Black',
- cursor: 'pointer',
- variants: {
- highlighted: {
- true: {
- backgroundColor: '$primary-700',
- color: 'White',
- [`& ${Description}`]: {
- color: '$gray-200',
- },
- [`& ${OptionIcon}`]: {
- color: '$gray-200',
- },
- },
- },
- },
-});
-
-const NoResult = styled('div', {
- color: '$gray-600',
- py: '$6',
- textAlign: 'center',
-});
-
-const Abbr = styled('abbr', {
- textDecoration: 'none',
-});
+const Kbd = (props: { children: React.ReactNode }) => (
+
+);
-const triggerInput = css({
- position: 'relative',
- display: 'flex',
- alignItems: 'center',
- gap: '$2',
- '&:focus-visible svg': {
- color: '$primary-400',
- },
- [`&:focus-visible ${Kbd}`]: {
- color: '$primary-400',
- },
-});
-
-const LoadingWrapper = styled('div', {
- position: 'absolute',
- top: 13,
- right: '$3',
- '@md': {
- right: '$14',
- },
-});
-
-const underline = css({
- textDecoration: 'underline',
- backgroundColor: 'inherit',
- color: 'inherit',
-});
+const underlineClass = tw(['underline bg-inherit text-inherit']);
diff --git a/packages/ui/src/components/select.mdx b/packages/ui/src/components/select.mdx
new file mode 100644
index 00000000..4089e3c4
--- /dev/null
+++ b/packages/ui/src/components/select.mdx
@@ -0,0 +1,7 @@
+```tsx
+
+ One
+ Two
+ Three
+
+```
diff --git a/packages/ui/src/components/select.tsx b/packages/ui/src/components/select.tsx
index 5e4cb0cc..0fd68726 100644
--- a/packages/ui/src/components/select.tsx
+++ b/packages/ui/src/components/select.tsx
@@ -1,16 +1,13 @@
import * as React from 'react';
import { callAll } from '../lib';
-import { styled } from '../stitches.config';
+import { tw } from '../lib/tw';
export interface SelectProps extends React.ComponentPropsWithoutRef<'select'> {
onValue?: (value: string) => void;
}
-export const Select = styled(
- React.forwardRef(function Select(
- { onValue, ...props },
- ref
- ) {
+export const Select = React.forwardRef(
+ function Select({ onValue, ...props }, ref) {
return (
onValue(ev.target.value))
)}
+ className={tw(
+ ['form-select w-full border-zinc-300 rounded md:text-sm'],
+ [props.className]
+ )}
ref={ref}
/>
);
- }),
- {
- backgroundImage: `url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e")`,
- backgroundPosition: 'right .5rem center',
- backgroundRepeat: 'no-repeat',
- backgroundSize: '1.5em 1.5em',
- borderRadius: '$base',
- border: '1px solid $gray-300',
- width: '100%',
- minWidth: 'none',
- px: '$3',
- py: '$1',
- fontSize: '$lg',
- fontFamily: 'inherit',
- lineHeight: '$lg',
- color: 'Black',
- backgroundColor: 'White',
- appearance: 'none',
- '@md': {
- fontSize: '$base',
- lineHeight: '$base',
- },
- '&:focus': {
- outline: 'none',
- borderColor: '$primary-300',
- },
- '&::placeholder': {
- color: '$gray-400',
- },
}
);
diff --git a/packages/ui/src/components/shortcut-key.tsx b/packages/ui/src/components/shortcut-key.tsx
index 98a3ffe7..adc9cfe8 100644
--- a/packages/ui/src/components/shortcut-key.tsx
+++ b/packages/ui/src/components/shortcut-key.tsx
@@ -1,11 +1,28 @@
-import { styled } from '../stitches.config';
-
-export const ShortcutKey = styled('span', {
- px: '$1',
- py: '$0.5',
- fontSize: '$sm',
- lineHeight: '$sm',
- color: '$gray-400',
- border: '1px solid $gray-300',
- borderRadius: '$md',
-});
+import * as React from 'react';
+import { tw } from '../lib/tw';
+
+export interface ShortcutKeyProps
+ extends React.ComponentPropsWithoutRef<'span'> {
+ render?: (p: {
+ className?: string;
+ children: React.ReactNode;
+ }) => React.ReactElement | null;
+}
+
+export const ShortcutKey = React.forwardRef(
+ function ShortcutKey({ render, className, ...props }, ref) {
+ const cls = tw(
+ ['text-sm px-1 py-0.5 text-zinc-400 border border-zinc-300 rounded-md'],
+ [className]
+ );
+
+ if (render) {
+ return render({
+ className: cls,
+ children: props.children,
+ });
+ }
+
+ return ;
+ }
+);
diff --git a/packages/ui/src/components/tabs.tsx b/packages/ui/src/components/tabs.tsx
index 647244dc..dfc10a10 100644
--- a/packages/ui/src/components/tabs.tsx
+++ b/packages/ui/src/components/tabs.tsx
@@ -1,42 +1,48 @@
import * as TabsPrimitive from '@radix-ui/react-tabs';
-import { styled } from '../stitches.config';
+import { tw } from '../lib/tw';
+import * as React from 'react';
export const Tabs = Object.assign({}, TabsPrimitive, {
- List: styled(TabsPrimitive.List, {
- position: 'relative',
- top: 1,
- overflowX: 'auto',
- }),
- Trigger: styled(TabsPrimitive.Trigger, {
- all: 'unset',
- cursor: 'pointer',
- fontSize: '$sm',
- lineHeight: '$sm',
- px: '$2',
- py: '$1',
- backgroundColor: 'inherit',
- borderTop: '1px solid',
- borderLeft: '1px solid',
- borderRight: '1px solid',
- borderColor: 'transparent',
- borderBottom: '1px solid $gray-300',
- borderTopLeftRadius: '$base',
- borderTopRightRadius: '$base',
- outlineRing: '',
- '&[data-state="active"]': {
- backgroundColor: '$gray-200',
- color: '$primary-800',
- borderColor: '$gray-300',
- borderBottomColor: 'transparent',
- },
- }),
- Content: styled(TabsPrimitive.Content, {
- backgroundColor: '$gray-200',
- border: '1px solid $gray-300',
- borderTopRightRadius: '$base',
- borderBottomRightRadius: '$base',
- borderBottomLeftRadius: '$base',
- }),
+ List: React.forwardRef(
+ function TabList(props, forwardedRef) {
+ return (
+
+ );
+ }
+ ),
+ Trigger: React.forwardRef(
+ function TabTrigger(props, forwardedRef) {
+ return (
+
+ );
+ }
+ ),
+ Content: React.forwardRef(
+ function TabContent(props, forwardedRef) {
+ return (
+
+ );
+ }
+ ),
RawList: TabsPrimitive.List,
RawTrigger: TabsPrimitive.Trigger,
RawContent: TabsPrimitive.Content,
diff --git a/packages/ui/src/components/text-highlight.tsx b/packages/ui/src/components/text-highlight.tsx
index a4eab888..acbb40b8 100644
--- a/packages/ui/src/components/text-highlight.tsx
+++ b/packages/ui/src/components/text-highlight.tsx
@@ -1,5 +1,5 @@
import Highlighter, { HighlighterProps } from 'react-highlight-words';
-import { css } from '../stitches.config';
+import { tw } from '../lib/tw';
export type TextHighlightProps = HighlighterProps;
@@ -7,7 +7,7 @@ export type TextHighlightProps = HighlighterProps;
* Wrapper of `react-highlight-words` with change of default.
*/
export const TextHighlight = ({
- highlightClassName = cls().className,
+ highlightClassName = defaultHighlightClass,
...props
}: TextHighlightProps) => {
return (
@@ -19,6 +19,4 @@ export const TextHighlight = ({
);
};
-const cls = css({
- backgroundColor: '$primary-200',
-});
+const defaultHighlightClass = tw(['bg-primary-200']);
diff --git a/packages/ui/src/components/text-input.tsx b/packages/ui/src/components/text-input.tsx
index 86e800a9..dacca1ea 100644
--- a/packages/ui/src/components/text-input.tsx
+++ b/packages/ui/src/components/text-input.tsx
@@ -1,17 +1,14 @@
import * as React from 'react';
import { callAll } from '../lib';
-import { styled } from '../stitches.config';
+import { tw } from '../lib/tw';
export interface TextInputProps
extends React.ComponentPropsWithoutRef<'input'> {
onValue?: (value: string) => void;
}
-export const TextInput = styled(
- React.forwardRef(function TextInput(
- { onValue, ...props },
- ref
- ) {
+export const TextInput = React.forwardRef(
+ function TextInput({ onValue, ...props }, ref) {
return (
onValue(ev.target.value))
)}
+ className={tw(
+ [
+ 'form-input w-full sm:text-sm text-zinc-900 disabled:text-zinc-500 border-zinc-300 rounded',
+ ],
+ [props.className]
+ )}
ref={ref}
/>
);
- }),
- {
- borderRadius: '$base',
- border: '1px solid $gray-300',
- width: '100%',
- minWidth: 'none',
- px: '$3',
- py: '$1',
- fontSize: '$lg',
- fontFamily: 'inherit',
- lineHeight: '$lg',
- color: 'Black',
- backgroundColor: 'White',
- '@md': {
- fontSize: '$base',
- lineHeight: '$base',
- },
- '&:focus': {
- outline: 'none',
- borderColor: '$primary-300',
- },
- '&::placeholder': {
- color: '$gray-400',
- },
}
);
diff --git a/packages/ui/src/components/textarea.mdx b/packages/ui/src/components/textarea.mdx
new file mode 100644
index 00000000..457109b7
--- /dev/null
+++ b/packages/ui/src/components/textarea.mdx
@@ -0,0 +1,3 @@
+```tsx
+
+```
diff --git a/packages/ui/src/components/textarea.tsx b/packages/ui/src/components/textarea.tsx
index 4501efa5..843932a4 100644
--- a/packages/ui/src/components/textarea.tsx
+++ b/packages/ui/src/components/textarea.tsx
@@ -1,10 +1,24 @@
-import TextareaAutosize from 'react-textarea-autosize';
-import { styled } from '../stitches.config';
+import TextareaAutosize, {
+ TextareaAutosizeProps,
+} from 'react-textarea-autosize';
+import { tw } from '../lib/tw';
+import * as React from 'react';
-export const Textarea = styled(TextareaAutosize, {
- width: '100%',
- resize: 'block',
- borderRadius: '$base',
- border: '1px solid $gray-300',
- outlineRing: '',
+export const Textarea = React.forwardRef<
+ HTMLTextAreaElement,
+ TextareaAutosizeProps & { isError?: boolean }
+>(function Textarea({ isError, className, ...props }, forwardedRef) {
+ return (
+
+ );
});
diff --git a/packages/ui/src/index.ts b/packages/ui/src/index.ts
index 94f05672..cf9f9860 100644
--- a/packages/ui/src/index.ts
+++ b/packages/ui/src/index.ts
@@ -1,20 +1,21 @@
+import 'tailwindcss/tailwind.css';
+
import useConstantImpl from 'use-constant';
export const useConstant = useConstantImpl;
export { useId } from '@radix-ui/react-id';
export { Root as Portal } from '@radix-ui/react-portal';
export * from './components/alert';
-export { BareButton } from './components/bare-button';
export { Breadcrumbs } from './components/breadcrumbs';
export { Button } from './components/button';
export { Checkbox } from './components/checkbox';
-export * as Collapsible from './components/collapsible';
+export { Collapsible } from './components/collapsible';
export { ColorInput } from './components/color-input';
export { CopyButton } from './components/copy-button';
export * from './components/dialog';
export {
DropdownMenu,
- DropdownMenuContentProps,
+ type DropdownMenuContentProps,
} from './components/dropdown-menu';
export { FileInput } from './components/file-input';
export * from './components/icon-button';
@@ -34,6 +35,7 @@ export { TextTooltip, Tooltip } from './components/tooltip';
export * from './lib';
export { copyText } from './lib/copy';
export { createNameContext } from './lib/create-named-context';
+export { tw } from './lib/tw';
export { useDebounce } from './lib/use-debounce';
export { useDebouncedCallback } from './lib/use-debounced-callback';
export { IsClientContextProvider, useIsClient } from './lib/use-is-client';
@@ -44,4 +46,5 @@ export { usePersistedState } from './lib/use-persisted-state';
export { searchParamsToObject, useQueryParams } from './lib/use-query-params';
export { useStableCallback } from './lib/use-stable-callback';
export { useTransientState } from './lib/use-transient-state';
+export { iconClass } from './shared-styles';
export * from './stitches.config';
diff --git a/packages/ui/src/lib/tw.ts b/packages/ui/src/lib/tw.ts
new file mode 100644
index 00000000..8cb72db9
--- /dev/null
+++ b/packages/ui/src/lib/tw.ts
@@ -0,0 +1,31 @@
+const prefix = '_sr-';
+
+/**
+ * Prepend `'_sr-'` to class names and merge them
+ */
+export const tw = (
+ classes: Array,
+ plainClasses?: Array
+) => {
+ const used: Array = [];
+
+ classes.forEach((c) => {
+ if (c && typeof c === 'string') {
+ if (c.indexOf(' ') > -1) {
+ used.push(tw(c.split(' ')));
+ } else {
+ used.push(prefix + c);
+ }
+ }
+ });
+
+ if (Array.isArray(plainClasses)) {
+ plainClasses.forEach((c) => {
+ if (c && typeof c === 'string') {
+ used.push(c);
+ }
+ });
+ }
+
+ return used.join(' ');
+};
diff --git a/packages/ui/src/shared-styles.ts b/packages/ui/src/shared-styles.ts
new file mode 100644
index 00000000..77734fa7
--- /dev/null
+++ b/packages/ui/src/shared-styles.ts
@@ -0,0 +1,3 @@
+import { tw } from './lib/tw';
+
+export const iconClass = tw(['text-zinc-400']);
diff --git a/packages/ui/src/stitches.config.ts b/packages/ui/src/stitches.config.ts
index 22094bf6..9d01db7d 100644
--- a/packages/ui/src/stitches.config.ts
+++ b/packages/ui/src/stitches.config.ts
@@ -224,10 +224,6 @@ export const {
config,
} = result;
-export const icons = css({
- color: '$gray-400',
-});
-
export const text = css({
variants: {
variant: {
diff --git a/packages/ui/tailwind.config.js b/packages/ui/tailwind.config.js
new file mode 100644
index 00000000..e85b00db
--- /dev/null
+++ b/packages/ui/tailwind.config.js
@@ -0,0 +1,48 @@
+const defaultColors = require('tailwindcss/colors');
+
+/**
+ * @type {import('tailwindcss').Config}
+ */
+module.exports = {
+ content: ['./src/**/*.ts', './src/**/*.tsx'],
+ theme: {
+ extend: {
+ colors: {
+ primary: {
+ 50: `var(--react-showroom-primary-50, ${defaultColors.sky['50']})`,
+ 100: `var(--react-showroom-primary-100, ${defaultColors.sky['100']})`,
+ 200: `var(--react-showroom-primary-200, ${defaultColors.sky['200']})`,
+ 300: `var(--react-showroom-primary-300, ${defaultColors.sky['300']})`,
+ 400: `var(--react-showroom-primary-400, ${defaultColors.sky['400']})`,
+ 500: `var(--react-showroom-primary-500, ${defaultColors.sky['500']})`,
+ 600: `var(--react-showroom-primary-600, ${defaultColors.sky['600']})`,
+ 700: `var(--react-showroom-primary-700, ${defaultColors.sky['700']})`,
+ 800: `var(--react-showroom-primary-800, ${defaultColors.sky['800']})`,
+ 900: `var(--react-showroom-primary-900, ${defaultColors.sky['900']})`,
+ },
+ },
+ keyframes: {
+ 'collapsible-open': {
+ from: { height: 0 },
+ to: { height: 'var(--radix-collapsible-content-height)' },
+ },
+ 'collapsible-closed': {
+ from: { height: 'var(--radix-collapsible-content-height)' },
+ to: { height: 0 },
+ },
+ },
+ animation: {
+ 'collapsible-open': 'collapsible-open 300ms ease-out',
+ 'collapsible-closed': 'collapsible-closed 300ms ease-out',
+ },
+ },
+ },
+ plugins: [
+ require('@tailwindcss/forms')({
+ strategy: 'class',
+ }),
+ ],
+ corePlugins: {
+ preflight: false,
+ },
+};
diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json
index e72fe115..f33eced1 100644
--- a/packages/ui/tsconfig.json
+++ b/packages/ui/tsconfig.json
@@ -8,15 +8,14 @@
"strict": true,
"noUnusedLocals": true,
"moduleResolution": "node",
- "composite": true,
- "rootDir": "src",
"outDir": "dist",
"importHelpers": true,
"downlevelIteration": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"jsx": "react-jsx",
- "skipLibCheck": true
+ "skipLibCheck": true,
+ "isolatedModules": true
},
"include": ["src"]
}
diff --git a/packages/ui/tsup.config.ts b/packages/ui/tsup.config.ts
new file mode 100644
index 00000000..6f51444c
--- /dev/null
+++ b/packages/ui/tsup.config.ts
@@ -0,0 +1,8 @@
+import { defineConfig } from 'tsup';
+
+export default defineConfig({
+ entry: ['src/index.ts'],
+ sourcemap: true,
+ dts: true,
+ format: ['cjs', 'esm'],
+});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3c364191..8cd56d78 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,4853 +1,4015 @@
-lockfileVersion: 5.4
+lockfileVersion: '6.0'
+
+settings:
+ autoInstallPeers: true
+ excludeLinksFromLockfile: false
importers:
.:
- specifiers:
- '@changesets/cli': ^2.24.2
- '@playwright/test': ^1.24.2
- '@rollup/plugin-commonjs': ^22.0.2
- '@rollup/plugin-node-resolve': ^13.3.0
- '@rollup/plugin-typescript': ^8.3.4
- '@types/cross-spawn': ^6.0.2
- '@types/fs-extra': ^9.0.13
- '@types/github-slugger': ^1.3.0
- '@types/glob': ^7.2.0
- '@types/hast': ^2.3.4
- '@types/jest': ^28.1.6
- '@types/lz-string': ^1.3.34
- '@types/mdast': ^3.0.10
- '@types/mime-types': ^2.1.1
- '@types/react': ^18.0.16
- '@types/react-dom': ^18.0.6
- '@types/react-helmet': ^6.1.5
- '@types/react-highlight-words': ^0.16.4
- '@types/rimraf': ^3.0.2
- '@types/string-similarity': ^4.0.0
- '@types/stringify-object': 4.0.1
- '@types/temp': ^0.9.1
- concurrently: ^7.3.0
- eslint: ^8.43.0
- http-server: ^14.1.1
- jest: ^28.1.3
- monaco-editor: ^0.33.0
- prettier: ^2.7.1
- react: ^18.2.0
- react-dom: ^18.2.0
- rimraf: ^3.0.2
- rollup: ^2.77.2
- tailwindcss: ^3.1.8
- ts-jest: ^28.0.7
- turbo: ^1.4.2
- type-fest: ^2.18.0
- why-is-node-running: ^2.2.2
devDependencies:
- '@changesets/cli': 2.24.2
- '@playwright/test': 1.24.2
- '@rollup/plugin-commonjs': 22.0.2_rollup@2.77.2
- '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.2
- '@rollup/plugin-typescript': 8.3.4_rollup@2.77.2
- '@types/cross-spawn': 6.0.2
- '@types/fs-extra': 9.0.13
- '@types/github-slugger': 1.3.0
- '@types/glob': 7.2.0
- '@types/hast': 2.3.4
- '@types/jest': 28.1.6
- '@types/lz-string': 1.3.34
- '@types/mdast': 3.0.10
- '@types/mime-types': 2.1.1
- '@types/react': 18.0.16
- '@types/react-dom': 18.0.6
- '@types/react-helmet': 6.1.5
- '@types/react-highlight-words': 0.16.4
- '@types/rimraf': 3.0.2
- '@types/string-similarity': 4.0.0
- '@types/stringify-object': 4.0.1
- '@types/temp': 0.9.1
- concurrently: 7.3.0
- eslint: 8.43.0
- http-server: 14.1.1
- jest: 28.1.3
- monaco-editor: 0.33.0
- prettier: 2.7.1
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- rimraf: 3.0.2
- rollup: 2.77.2
- tailwindcss: 3.1.8
- ts-jest: 28.0.7_jest@28.1.3
- turbo: 1.4.2
- type-fest: 2.18.0
- why-is-node-running: 2.2.2
+ '@changesets/cli':
+ specifier: ^2.26.1
+ version: 2.26.1
+ '@playwright/test':
+ specifier: ^1.34.3
+ version: 1.34.3
+ '@rollup/plugin-commonjs':
+ specifier: ^25.0.2
+ version: 25.0.2(rollup@3.25.1)
+ '@rollup/plugin-node-resolve':
+ specifier: ^15.0.2
+ version: 15.0.2(rollup@3.25.1)
+ '@rollup/plugin-typescript':
+ specifier: ^11.1.1
+ version: 11.1.1(rollup@3.25.1)(typescript@4.6.4)
+ '@types/cross-spawn':
+ specifier: ^6.0.2
+ version: 6.0.2
+ '@types/fs-extra':
+ specifier: ^9.0.13
+ version: 9.0.13
+ '@types/github-slugger':
+ specifier: ^1.3.0
+ version: 1.3.0
+ '@types/glob':
+ specifier: ^7.2.0
+ version: 7.2.0
+ '@types/hast':
+ specifier: ^2.3.4
+ version: 2.3.4
+ '@types/jest':
+ specifier: ^28.1.6
+ version: 28.1.6
+ '@types/mdast':
+ specifier: ^3.0.10
+ version: 3.0.10
+ '@types/mime-types':
+ specifier: ^2.1.1
+ version: 2.1.1
+ '@types/react':
+ specifier: ^18.0.16
+ version: 18.0.16
+ '@types/react-dom':
+ specifier: ^18.0.6
+ version: 18.0.6
+ '@types/react-helmet':
+ specifier: ^6.1.5
+ version: 6.1.5
+ '@types/react-highlight-words':
+ specifier: ^0.16.4
+ version: 0.16.4
+ '@types/rimraf':
+ specifier: ^3.0.2
+ version: 3.0.2
+ '@types/string-similarity':
+ specifier: ^4.0.0
+ version: 4.0.0
+ '@types/stringify-object':
+ specifier: 4.0.1
+ version: 4.0.1
+ '@types/temp':
+ specifier: ^0.9.1
+ version: 0.9.1
+ concurrently:
+ specifier: ^7.3.0
+ version: 7.3.0
+ eslint:
+ specifier: ^8.43.0
+ version: 8.43.0
+ http-server:
+ specifier: ^14.1.1
+ version: 14.1.1
+ jest:
+ specifier: ^28.1.3
+ version: 28.1.3
+ monaco-editor:
+ specifier: ^0.38.0
+ version: 0.38.0
+ prettier:
+ specifier: ^2.7.1
+ version: 2.7.1
+ react:
+ specifier: ^18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.2.0(react@18.2.0)
+ rimraf:
+ specifier: ^3.0.2
+ version: 3.0.2
+ rollup:
+ specifier: ^3.25.1
+ version: 3.25.1
+ tailwindcss:
+ specifier: ^3.1.8
+ version: 3.1.8(postcss@8.4.23)
+ ts-jest:
+ specifier: ^28.0.7
+ version: 28.0.7(@babel/core@7.21.8)(jest@28.1.3)(typescript@4.6.4)
+ turbo:
+ specifier: ^1.9.9
+ version: 1.9.9
+ type-fest:
+ specifier: ^2.18.0
+ version: 2.18.0
+ why-is-node-running:
+ specifier: ^2.2.2
+ version: 2.2.2
docs:
- specifiers:
- '@babel/runtime': ^7.18.9
- '@heroicons/react': ^1.0.6
- '@tailwindcss/forms': ^0.5.2
- autoprefixer: ^10.4.8
- classnames: ^2.3.1
- css-loader: ^6.7.1
- css-minimizer-webpack-plugin: ^4.0.0
- esbuild-loader: ^2.19.0
- mini-css-extract-plugin: ^2.6.1
- postcss: ^8.4.16
- postcss-loader: ^7.0.1
- react: ^18.2.0
- react-dom: ^18.2.0
- react-hook-form: ^7.34.0
- react-showroom: workspace:*
- style-loader: ^3.3.1
- tailwindcss: ^3.1.8
dependencies:
- '@babel/runtime': 7.18.9
- '@heroicons/react': 1.0.6_react@18.2.0
- classnames: 2.3.1
- esbuild-loader: 2.19.0
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-hook-form: 7.34.0_react@18.2.0
- react-showroom: link:../packages/react-showroom
+ '@babel/runtime':
+ specifier: ^7.21.5
+ version: 7.21.5
+ '@heroicons/react':
+ specifier: ^2.0.18
+ version: 2.0.18(react@18.2.0)
+ '@showroomjs/ui':
+ specifier: workspace:*
+ version: link:../packages/ui
+ classnames:
+ specifier: ^2.3.2
+ version: 2.3.2
+ esbuild-loader:
+ specifier: ^3.0.1
+ version: 3.0.1(webpack@5.84.0)
+ react:
+ specifier: ^18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.2.0(react@18.2.0)
+ react-hook-form:
+ specifier: ^7.34.0
+ version: 7.34.0(react@18.2.0)
+ react-showroom:
+ specifier: workspace:*
+ version: link:../packages/react-showroom
devDependencies:
- '@tailwindcss/forms': 0.5.2_tailwindcss@3.1.8
- autoprefixer: 10.4.8_postcss@8.4.16
- css-loader: 6.7.1
- css-minimizer-webpack-plugin: 4.0.0
- mini-css-extract-plugin: 2.6.1
- postcss: 8.4.16
- postcss-loader: 7.0.1_postcss@8.4.16
- style-loader: 3.3.1
- tailwindcss: 3.1.8
+ '@tailwindcss/forms':
+ specifier: ^0.5.2
+ version: 0.5.2(tailwindcss@3.1.8)
+ autoprefixer:
+ specifier: ^10.4.14
+ version: 10.4.14(postcss@8.4.16)
+ css-loader:
+ specifier: ^6.7.4
+ version: 6.7.4(webpack@5.84.0)
+ css-minimizer-webpack-plugin:
+ specifier: ^5.0.0
+ version: 5.0.0(webpack@5.84.0)
+ mini-css-extract-plugin:
+ specifier: ^2.7.6
+ version: 2.7.6(webpack@5.84.0)
+ postcss:
+ specifier: ^8.4.16
+ version: 8.4.16
+ postcss-loader:
+ specifier: ^7.3.0
+ version: 7.3.0(postcss@8.4.16)(webpack@5.84.0)
+ style-loader:
+ specifier: ^3.3.3
+ version: 3.3.3(webpack@5.84.0)
+ tailwindcss:
+ specifier: ^3.1.8
+ version: 3.1.8(postcss@8.4.16)
examples/client-only-example:
- specifiers:
- '@babel/runtime': ^7.18.9
- autoprefixer: ^10.4.8
- classnames: ^2.3.1
- postcss: ^8.4.16
- react: ^18.2.0
- react-dom: ^18.2.0
- react-showroom: workspace:*
- tailwindcss: ^3.1.8
- typescript: ~4.6.4
- webpack: ^5.74.0
dependencies:
- '@babel/runtime': 7.18.9
- classnames: 2.3.1
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-showroom: link:../../packages/react-showroom
+ '@babel/runtime':
+ specifier: ^7.21.5
+ version: 7.21.5
+ classnames:
+ specifier: ^2.3.2
+ version: 2.3.2
+ react:
+ specifier: ^18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.2.0(react@18.2.0)
+ react-showroom:
+ specifier: workspace:*
+ version: link:../../packages/react-showroom
devDependencies:
- autoprefixer: 10.4.8_postcss@8.4.16
- postcss: 8.4.16
- tailwindcss: 3.1.8
- typescript: 4.6.4
- webpack: 5.74.0
+ autoprefixer:
+ specifier: ^10.4.14
+ version: 10.4.14(postcss@8.4.16)
+ postcss:
+ specifier: ^8.4.16
+ version: 8.4.16
+ tailwindcss:
+ specifier: ^3.1.8
+ version: 3.1.8(postcss@8.4.16)
+ typescript:
+ specifier: ~4.6.4
+ version: 4.6.4
+ webpack:
+ specifier: ^5.84.0
+ version: 5.84.0
examples/cra-example:
- specifiers:
- '@testing-library/jest-dom': ^5.16.5
- '@testing-library/react': ^13.3.0
- '@testing-library/user-event': ^14.4.2
- '@types/jest': ^28.1.6
- '@types/node': ^18.0.1
- '@types/react': ^18.0.16
- '@types/react-dom': ^18.0.6
- '@types/testing-library__jest-dom': ^5.14.5
- classnames: ^2.3.1
- react: ^18.2.0
- react-dom: ^18.2.0
- react-scripts: 5.0.1
- react-showroom: workspace:*
- sass: ^1.54.3
- tailwindcss: ^3.1.8
- typescript: ~4.6.4
- web-vitals: ^2.1.4
- dependencies:
- '@testing-library/jest-dom': 5.16.5
- '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y
- '@testing-library/user-event': 14.4.2
- '@types/jest': 28.1.6
- '@types/node': 18.0.1
- '@types/react': 18.0.16
- '@types/react-dom': 18.0.6
- classnames: 2.3.1
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-scripts: 5.0.1_2bztllcmbkqwlubtmv2ap5hlc4
- typescript: 4.6.4
- web-vitals: 2.1.4
+ dependencies:
+ '@testing-library/jest-dom':
+ specifier: ^5.16.5
+ version: 5.16.5
+ '@testing-library/react':
+ specifier: ^13.3.0
+ version: 13.3.0(react-dom@18.2.0)(react@18.2.0)
+ '@testing-library/user-event':
+ specifier: ^14.4.2
+ version: 14.4.2(@testing-library/dom@8.16.1)
+ '@types/jest':
+ specifier: ^28.1.6
+ version: 28.1.6
+ '@types/node':
+ specifier: ^18.0.1
+ version: 18.0.1
+ '@types/react':
+ specifier: ^18.0.16
+ version: 18.0.16
+ '@types/react-dom':
+ specifier: ^18.0.6
+ version: 18.0.6
+ classnames:
+ specifier: ^2.3.2
+ version: 2.3.2
+ react:
+ specifier: ^18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.2.0(react@18.2.0)
+ react-scripts:
+ specifier: 5.0.1
+ version: 5.0.1(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.5)(eslint@8.43.0)(react@18.2.0)(sass@1.62.1)(type-fest@2.18.0)(typescript@4.6.4)
+ typescript:
+ specifier: ~4.6.4
+ version: 4.6.4
+ web-vitals:
+ specifier: ^2.1.4
+ version: 2.1.4
devDependencies:
- '@types/testing-library__jest-dom': 5.14.5
- react-showroom: link:../../packages/react-showroom
- sass: 1.54.3
- tailwindcss: 3.1.8
+ '@types/testing-library__jest-dom':
+ specifier: ^5.14.5
+ version: 5.14.5
+ react-showroom:
+ specifier: workspace:*
+ version: link:../../packages/react-showroom
+ sass:
+ specifier: ^1.62.1
+ version: 1.62.1
+ tailwindcss:
+ specifier: ^3.1.8
+ version: 3.1.8(postcss@8.4.23)
examples/react-example:
- specifiers:
- '@babel/core': ^7.18.10
- '@babel/plugin-transform-runtime': ^7.18.10
- '@babel/preset-env': ^7.18.10
- '@babel/preset-react': ^7.18.6
- '@babel/preset-typescript': ^7.18.6
- '@babel/runtime': ^7.18.9
- '@heroicons/react': ^1.0.6
- '@tailwindcss/forms': ^0.5.2
- '@testing-library/dom': ^8.16.1
- '@testing-library/react': ^13.3.0
- '@testing-library/user-event': ^14.4.2
- '@types/jest': ^28.1.6
- '@vanilla-extract/css': ^1.7.2
- '@vanilla-extract/webpack-plugin': ^2.1.11
- autoprefixer: ^10.4.8
- babel-loader: ^8.2.5
- classnames: ^2.3.1
- css-loader: ^6.7.1
- css-minimizer-webpack-plugin: ^4.0.0
- jest: ^28.1.3
- mini-css-extract-plugin: ^2.6.1
- msw: ^0.42.1
- postcss: ^8.4.16
- postcss-loader: ^7.0.1
- react: ^18.2.0
- react-dom: ^18.2.0
- react-hook-form: ^7.34.0
- react-query: ^3.39.1
- react-showroom: workspace:*
- react-textarea-autosize: ^8.3.4
- style-loader: ^3.3.1
- tailwindcss: ^3.1.8
- typescript: ~4.6.4
- webpack: ^5.74.0
dependencies:
- '@babel/runtime': 7.18.9
- '@heroicons/react': 1.0.6_react@18.2.0
- '@tailwindcss/forms': 0.5.2_tailwindcss@3.1.8
- classnames: 2.3.1
- css-minimizer-webpack-plugin: 4.0.0_webpack@5.74.0
- mini-css-extract-plugin: 2.6.1_webpack@5.74.0
- msw: 0.42.1_typescript@4.6.4
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-hook-form: 7.34.0_react@18.2.0
- react-query: 3.39.1_biqbaboplfbrettd7655fr4n2y
- react-showroom: link:../../packages/react-showroom
- react-textarea-autosize: 8.3.4_react@18.2.0
+ '@babel/runtime':
+ specifier: ^7.21.5
+ version: 7.21.5
+ '@heroicons/react':
+ specifier: ^2.0.18
+ version: 2.0.18(react@18.2.0)
+ '@tailwindcss/forms':
+ specifier: ^0.5.2
+ version: 0.5.2(tailwindcss@3.1.8)
+ '@tanstack/react-query':
+ specifier: ^4.29.7
+ version: 4.29.7(react-dom@18.2.0)(react@18.2.0)
+ classnames:
+ specifier: ^2.3.2
+ version: 2.3.2
+ css-minimizer-webpack-plugin:
+ specifier: ^5.0.0
+ version: 5.0.0(webpack@5.84.0)
+ mini-css-extract-plugin:
+ specifier: ^2.7.6
+ version: 2.7.6(webpack@5.84.0)
+ msw:
+ specifier: ^0.42.1
+ version: 0.42.1(typescript@4.6.4)
+ react:
+ specifier: ^18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.2.0(react@18.2.0)
+ react-hook-form:
+ specifier: ^7.34.0
+ version: 7.34.0(react@18.2.0)
+ react-showroom:
+ specifier: workspace:*
+ version: link:../../packages/react-showroom
+ react-textarea-autosize:
+ specifier: ^8.3.4
+ version: 8.3.4(@types/react@18.0.16)(react@18.2.0)
devDependencies:
- '@babel/core': 7.18.10
- '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10
- '@babel/preset-env': 7.18.10_@babel+core@7.18.10
- '@babel/preset-react': 7.18.6_@babel+core@7.18.10
- '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10
- '@testing-library/dom': 8.16.1
- '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y
- '@testing-library/user-event': 14.4.2_znfriv3ismgf3ybh2woqwlpfea
- '@types/jest': 28.1.6
- '@vanilla-extract/css': 1.7.2
- '@vanilla-extract/webpack-plugin': 2.1.11_webpack@5.74.0
- autoprefixer: 10.4.8_postcss@8.4.16
- babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm
- css-loader: 6.7.1_webpack@5.74.0
- jest: 28.1.3
- postcss: 8.4.16
- postcss-loader: 7.0.1_qjv4cptcpse3y5hrjkrbb7drda
- style-loader: 3.3.1_webpack@5.74.0
- tailwindcss: 3.1.8
- typescript: 4.6.4
- webpack: 5.74.0
+ '@babel/core':
+ specifier: ^7.21.8
+ version: 7.21.8
+ '@babel/plugin-transform-runtime':
+ specifier: ^7.21.4
+ version: 7.21.4(@babel/core@7.21.8)
+ '@babel/preset-env':
+ specifier: ^7.21.5
+ version: 7.21.5(@babel/core@7.21.8)
+ '@babel/preset-react':
+ specifier: ^7.18.6
+ version: 7.18.6(@babel/core@7.21.8)
+ '@babel/preset-typescript':
+ specifier: ^7.21.5
+ version: 7.21.5(@babel/core@7.21.8)
+ '@testing-library/dom':
+ specifier: ^8.16.1
+ version: 8.16.1
+ '@testing-library/react':
+ specifier: ^13.3.0
+ version: 13.3.0(react-dom@18.2.0)(react@18.2.0)
+ '@testing-library/user-event':
+ specifier: ^14.4.2
+ version: 14.4.2(@testing-library/dom@8.16.1)
+ '@types/jest':
+ specifier: ^28.1.6
+ version: 28.1.6
+ '@vanilla-extract/css':
+ specifier: ^1.11.0
+ version: 1.11.0
+ '@vanilla-extract/webpack-plugin':
+ specifier: ^2.2.0
+ version: 2.2.0(webpack@5.84.0)
+ autoprefixer:
+ specifier: ^10.4.14
+ version: 10.4.14(postcss@8.4.16)
+ babel-loader:
+ specifier: ^9.1.2
+ version: 9.1.2(@babel/core@7.21.8)(webpack@5.84.0)
+ css-loader:
+ specifier: ^6.7.4
+ version: 6.7.4(webpack@5.84.0)
+ jest:
+ specifier: ^28.1.3
+ version: 28.1.3
+ postcss:
+ specifier: ^8.4.16
+ version: 8.4.16
+ postcss-loader:
+ specifier: ^7.3.0
+ version: 7.3.0(postcss@8.4.16)(webpack@5.84.0)
+ style-loader:
+ specifier: ^3.3.3
+ version: 3.3.3(webpack@5.84.0)
+ tailwindcss:
+ specifier: ^3.1.8
+ version: 3.1.8(postcss@8.4.16)
+ typescript:
+ specifier: ~4.6.4
+ version: 4.6.4
+ webpack:
+ specifier: ^5.84.0
+ version: 5.84.0
examples/subpath-example:
- specifiers:
- '@babel/runtime': ^7.18.9
- '@tailwindcss/forms': ^0.5.2
- autoprefixer: ^10.4.8
- classnames: ^2.3.1
- msw: ^0.42.1
- postcss: ^8.4.16
- postcss-loader: ^7.0.1
- react: ^18.2.0
- react-dom: ^18.2.0
- react-showroom: workspace:*
- tailwindcss: ^3.1.8
- tsup: 6.2.1
- typescript: ~4.6.4
dependencies:
- '@babel/runtime': 7.18.9
- '@tailwindcss/forms': 0.5.2_tailwindcss@3.1.8
- classnames: 2.3.1
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-showroom: link:../../packages/react-showroom
+ '@babel/runtime':
+ specifier: ^7.21.5
+ version: 7.21.5
+ '@tailwindcss/forms':
+ specifier: ^0.5.2
+ version: 0.5.2(tailwindcss@3.1.8)
+ classnames:
+ specifier: ^2.3.2
+ version: 2.3.2
+ react:
+ specifier: ^18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.2.0(react@18.2.0)
+ react-showroom:
+ specifier: workspace:*
+ version: link:../../packages/react-showroom
devDependencies:
- autoprefixer: 10.4.8_postcss@8.4.16
- msw: 0.42.1_typescript@4.6.4
- postcss: 8.4.16
- postcss-loader: 7.0.1_postcss@8.4.16
- tailwindcss: 3.1.8
- tsup: 6.2.1_o3ynno4hhxtssdpqxbpaxspdrq
- typescript: 4.6.4
+ autoprefixer:
+ specifier: ^10.4.14
+ version: 10.4.14(postcss@8.4.16)
+ msw:
+ specifier: ^0.42.1
+ version: 0.42.1(typescript@4.6.4)
+ postcss:
+ specifier: ^8.4.16
+ version: 8.4.16
+ postcss-loader:
+ specifier: ^7.3.0
+ version: 7.3.0(postcss@8.4.16)(webpack@5.84.0)
+ tailwindcss:
+ specifier: ^3.1.8
+ version: 3.1.8(postcss@8.4.16)
+ tsup:
+ specifier: 6.7.0
+ version: 6.7.0(postcss@8.4.16)(typescript@4.6.4)
+ typescript:
+ specifier: ~4.6.4
+ version: 4.6.4
packages/bundles:
- specifiers:
- '@rollup/plugin-replace': ^4.0.0
- react-query: ^3.39.1
- react-router-dom: 6.3.0
- react-simple-code-editor: ^0.11.2
- tslib: ^2.4.0
- typescript: ~4.6.4
- dependencies:
- react-router-dom: 6.3.0
+ dependencies:
+ react:
+ specifier: ^18.0.0-0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.0.0-0
+ version: 18.2.0(react@18.2.0)
+ react-router-dom:
+ specifier: 6.3.0
+ version: 6.3.0(react-dom@18.2.0)(react@18.2.0)
devDependencies:
- '@rollup/plugin-replace': 4.0.0
- react-query: 3.39.1
- react-simple-code-editor: 0.11.2
- tslib: 2.4.0
- typescript: 4.6.4
+ '@rollup/plugin-replace':
+ specifier: ^5.0.2
+ version: 5.0.2(rollup@3.25.1)
+ '@tanstack/react-query':
+ specifier: ^4.29.7
+ version: 4.29.7(react-dom@18.2.0)(react@18.2.0)
+ react-simple-code-editor:
+ specifier: ^0.11.2
+ version: 0.11.2(react-dom@18.2.0)(react@18.2.0)
+ rollup:
+ specifier: ^3.25.1
+ version: 3.25.1
+ tslib:
+ specifier: ^2.4.0
+ version: 2.4.0
+ typescript:
+ specifier: ~4.6.4
+ version: 4.6.4
packages/core:
- specifiers:
- acorn: ^8.8.0
- acorn-walk: ^8.2.0
- axe-core: ^4.4.3
- domutils: ^3.0.1
- esbuild: 0.14.53
- html-webpack-tags-plugin: ^3.0.2
- htmlparser2: ^8.0.1
- prism-react-renderer: ^1.3.5
- react-docgen-typescript: ^2.2.2
- tslib: ^2.4.0
- typescript: ~4.6.4
- webpack: ^5.74.0
- dependencies:
- acorn: 8.8.0
- acorn-walk: 8.2.0
- domutils: 3.0.1
- htmlparser2: 8.0.1
- prism-react-renderer: 1.3.5
- tslib: 2.4.0
+ dependencies:
+ acorn:
+ specifier: ^8.8.2
+ version: 8.8.2
+ acorn-walk:
+ specifier: ^8.2.0
+ version: 8.2.0
+ domutils:
+ specifier: ^3.0.1
+ version: 3.0.1
+ htmlparser2:
+ specifier: ^8.0.1
+ version: 8.0.1
+ prism-react-renderer:
+ specifier: ^1.3.5
+ version: 1.3.5(react@18.2.0)
+ tslib:
+ specifier: ^2.4.0
+ version: 2.4.0
devDependencies:
- axe-core: 4.4.3
- esbuild: 0.14.53
- html-webpack-tags-plugin: 3.0.2_webpack@5.74.0
- react-docgen-typescript: 2.2.2_typescript@4.6.4
- typescript: 4.6.4
- webpack: 5.74.0_esbuild@0.14.53
+ axe-core:
+ specifier: ^4.7.1
+ version: 4.7.1
+ esbuild:
+ specifier: 0.17.19
+ version: 0.17.19
+ html-webpack-tags-plugin:
+ specifier: ^3.0.2
+ version: 3.0.2(html-webpack-plugin@5.5.1)(webpack@5.84.0)
+ react-docgen-typescript:
+ specifier: ^2.2.2
+ version: 2.2.2(typescript@4.6.4)
+ typescript:
+ specifier: ~4.6.4
+ version: 4.6.4
+ webpack:
+ specifier: ^5.84.0
+ version: 5.84.0(esbuild@0.17.19)
packages/device-frames:
- specifiers:
- '@heroicons/react': ^1.0.6
- postcss: ^8.4.16
- tsup: 6.2.1
- typescript: ~4.6.4
dependencies:
- '@heroicons/react': 1.0.6
+ '@heroicons/react':
+ specifier: ^2.0.18
+ version: 2.0.18(react@18.2.0)
+ react:
+ specifier: ^18.0.0-0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.0.0-0
+ version: 18.2.0(react@18.2.0)
devDependencies:
- postcss: 8.4.16
- tsup: 6.2.1_o3ynno4hhxtssdpqxbpaxspdrq
- typescript: 4.6.4
+ postcss:
+ specifier: ^8.4.16
+ version: 8.4.16
+ tsup:
+ specifier: 6.7.0
+ version: 6.7.0(postcss@8.4.16)(typescript@4.6.4)
+ typescript:
+ specifier: ~4.6.4
+ version: 4.6.4
packages/measure:
- specifiers:
- tsup: 6.2.1
- typescript: ~4.6.4
+ dependencies:
+ react:
+ specifier: ^18.0.0-0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.0.0-0
+ version: 18.2.0(react@18.2.0)
devDependencies:
- tsup: 6.2.1_typescript@4.6.4
- typescript: 4.6.4
+ tsup:
+ specifier: 6.7.0
+ version: 6.7.0(postcss@8.4.23)(typescript@4.6.4)
+ typescript:
+ specifier: ~4.6.4
+ version: 4.6.4
packages/react-showroom:
- specifiers:
- '@babel/core': ^7.18.10
- '@babel/plugin-transform-runtime': ^7.18.10
- '@babel/preset-env': ^7.18.10
- '@babel/preset-react': ^7.18.6
- '@babel/preset-typescript': ^7.18.6
- '@babel/runtime': ^7.18.9
- '@heroicons/react': ^1.0.6
- '@monaco-editor/react': ^4.4.5
- '@pmmmwh/react-refresh-webpack-plugin': ^0.5.7
- '@react-hook/resize-observer': ^1.2.6
- '@showroomjs/bundles': workspace:*
- '@showroomjs/core': workspace:*
- '@showroomjs/device-frames': workspace:*
- '@showroomjs/measure': workspace:*
- '@showroomjs/ui': workspace:*
- '@testing-library/dom': ^8.16.1
- '@types/lodash': ^4.14.182
- '@types/unist': ^2.0.6
- axe-core: ^4.4.3
- babel-loader: ^8.2.5
- cac: ^6.7.12
- classnames: ^2.3.1
- copy-webpack-plugin: ^11.0.0
- cross-spawn: ^7.0.3
- css-loader: ^6.7.1
- css-minimizer-webpack-plugin: ^4.0.0
- esbuild: 0.14.53
- esbuild-wasm: 0.14.53
- estree-util-value-to-estree: ^1.3.0
- front-matter: ^4.0.2
- fs-extra: ^10.1.0
- github-slugger: ^1.4.0
- glob: ^8.0.3
- hast-util-heading: 1.0.5
- hast-util-heading-rank: 1.0.1
- hast-util-to-html: 7.1.3
- html-webpack-plugin: ^5.5.0
- html-webpack-tags-plugin: ^3.0.2
- lodash: ^4.17.21
- lz-string: ^1.4.4
- match-sorter: ^6.3.1
- mdast-util-to-string: '2'
- mime-types: ^2.1.35
- mini-css-extract-plugin: ~2.6.1
- monaco-themes: ^0.4.2
- nanocolors: ^0.2.13
- node-fetch: ^2.6.7
- open: ^8.4.0
- parse-numeric-range: ^1.3.0
- postcss: ^8.4.16
- postcss-loader: ^7.0.1
- prism-react-renderer: ^1.3.5
- qs-lite: ^0.0.3
- re-resizable: ^6.9.9
- react-colorful: ^5.5.1
- react-docgen-typescript: ^2.2.2
- react-error-boundary: ^3.1.4
- react-helmet: ^6.1.0
- react-lazy-with-preload: ^2.2.0
- react-refresh: ^0.14.0
- rehype-mdx-title: ^1.0.0
- rehype-slug: 4.0.1
- remark-frontmatter: 3.0.0
- remark-gfm: 1.0.0
- remark-mdx-frontmatter: ^1.1.1
- remark-parse: 9.0.0
- remark-stringify: ^9.0.1
- rimraf: ^3.0.2
- sass-loader: ^13.0.2
- scroll-into-view-if-needed: ^2.2.29
- slugify: ^1.6.5
- snarkdown: ^2.0.0
- source-map-support: ^0.5.21
- speed-measure-webpack-plugin: ^1.5.0
- string-similarity: ^4.0.4
- stringify-object: ~4.0.1
- style-loader: ^3.3.1
- temp: ^0.9.4
- tslib: ^2.4.0
- tsup: 6.2.1
- typescript: ~4.6.4
- unified: 9.2.2
- unist-util-find: ^1.0.2
- unist-util-visit: 2.0.3
- vfile: 4.2.1
- webpack: ^5.74.0
- webpack-dev-server: ^4.9.3
- webpack-merge: ^5.8.0
- webpack-messages: ^2.0.4
- webpack-virtual-modules: ^0.4.4
- workbox-expiration: ^6.5.4
- workbox-recipes: ^6.5.4
- workbox-routing: ^6.5.4
- workbox-strategies: ^6.5.4
- workbox-webpack-plugin: ^6.5.4
- xdm: ^3.4.0
dependencies:
- '@babel/core': 7.18.10
- '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10
- '@babel/preset-env': 7.18.10_@babel+core@7.18.10
- '@babel/preset-react': 7.18.6_@babel+core@7.18.10
- '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10
- '@babel/runtime': 7.18.9
- '@heroicons/react': 1.0.6
- '@monaco-editor/react': 4.4.5
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.7_4qofgipiuz5gtllxmvke2xa2ki
- '@react-hook/resize-observer': 1.2.6
- '@showroomjs/bundles': link:../bundles
- '@showroomjs/core': link:../core
- '@showroomjs/device-frames': link:../device-frames
- '@showroomjs/measure': link:../measure
- '@showroomjs/ui': link:../ui
- '@testing-library/dom': 8.16.1
- axe-core: 4.4.3
- babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm
- cac: 6.7.12
- classnames: 2.3.1
- copy-webpack-plugin: 11.0.0_webpack@5.74.0
- cross-spawn: 7.0.3
- css-loader: 6.7.1_webpack@5.74.0
- css-minimizer-webpack-plugin: 4.0.0_5gr7ozscerpk45yowhskzxp43q
- esbuild: 0.14.53
- esbuild-wasm: 0.14.53
- estree-util-value-to-estree: 1.3.0
- front-matter: 4.0.2
- fs-extra: 10.1.0
- github-slugger: 1.4.0
- glob: 8.0.3
- hast-util-heading: 1.0.5
- hast-util-heading-rank: 1.0.1
- hast-util-to-html: 7.1.3
- html-webpack-plugin: 5.5.0_webpack@5.74.0
- html-webpack-tags-plugin: 3.0.2_dseqt6curza6cwqlyc3eowsnru
- lodash: 4.17.21
- lz-string: 1.4.4
- match-sorter: 6.3.1
- mdast-util-to-string: 2.0.0
- mime-types: 2.1.35
- mini-css-extract-plugin: 2.6.1_webpack@5.74.0
- monaco-themes: 0.4.2
- nanocolors: 0.2.13
- node-fetch: 2.6.7
- open: 8.4.0
- parse-numeric-range: 1.3.0
- postcss: 8.4.16
- postcss-loader: 7.0.1_qjv4cptcpse3y5hrjkrbb7drda
- prism-react-renderer: 1.3.5
- qs-lite: 0.0.3
- re-resizable: 6.9.9
- react-colorful: 5.5.1
- react-docgen-typescript: 2.2.2_typescript@4.6.4
- react-error-boundary: 3.1.4
- react-helmet: 6.1.0
- react-lazy-with-preload: 2.2.0
- react-refresh: 0.14.0
- rehype-mdx-title: 1.0.0
- rehype-slug: 4.0.1
- remark-frontmatter: 3.0.0
- remark-gfm: 1.0.0
- remark-mdx-frontmatter: 1.1.1
- remark-parse: 9.0.0
- remark-stringify: 9.0.1
- rimraf: 3.0.2
- sass-loader: 13.0.2_webpack@5.74.0
- scroll-into-view-if-needed: 2.2.29
- slugify: 1.6.5
- snarkdown: 2.0.0
- source-map-support: 0.5.21
- speed-measure-webpack-plugin: 1.5.0_webpack@5.74.0
- string-similarity: 4.0.4
- stringify-object: 4.0.1
- style-loader: 3.3.1_webpack@5.74.0
- temp: 0.9.4
- tslib: 2.4.0
- tsup: 6.2.1_o3ynno4hhxtssdpqxbpaxspdrq
- unified: 9.2.2
- unist-util-find: 1.0.2
- unist-util-visit: 2.0.3
- vfile: 4.2.1
- webpack: 5.74.0_esbuild@0.14.53
- webpack-dev-server: 4.9.3_webpack@5.74.0
- webpack-merge: 5.8.0
- webpack-messages: 2.0.4
- webpack-virtual-modules: 0.4.4
- workbox-expiration: 6.5.4
- workbox-recipes: 6.5.4
- workbox-routing: 6.5.4
- workbox-strategies: 6.5.4
- workbox-webpack-plugin: 6.5.4_webpack@5.74.0
- xdm: 3.4.0
+ '@babel/core':
+ specifier: ^7.21.8
+ version: 7.21.8
+ '@babel/plugin-transform-runtime':
+ specifier: ^7.21.4
+ version: 7.21.4(@babel/core@7.21.8)
+ '@babel/preset-env':
+ specifier: ^7.21.5
+ version: 7.21.5(@babel/core@7.21.8)
+ '@babel/preset-react':
+ specifier: ^7.18.6
+ version: 7.18.6(@babel/core@7.21.8)
+ '@babel/preset-typescript':
+ specifier: ^7.21.5
+ version: 7.21.5(@babel/core@7.21.8)
+ '@babel/runtime':
+ specifier: ^7.21.5
+ version: 7.21.5
+ '@heroicons/react':
+ specifier: ^2.0.18
+ version: 2.0.18(react@18.2.0)
+ '@monaco-editor/react':
+ specifier: ^4.5.1
+ version: 4.5.1(monaco-editor@0.38.0)(react-dom@18.2.0)(react@18.2.0)
+ '@pmmmwh/react-refresh-webpack-plugin':
+ specifier: ^0.5.10
+ version: 0.5.10(react-refresh@0.14.0)(type-fest@2.18.0)(webpack-dev-server@4.15.0)(webpack@5.84.0)
+ '@react-hook/resize-observer':
+ specifier: ^1.2.6
+ version: 1.2.6(react@18.2.0)
+ '@showroomjs/bundles':
+ specifier: workspace:*
+ version: link:../bundles
+ '@showroomjs/core':
+ specifier: workspace:*
+ version: link:../core
+ '@showroomjs/device-frames':
+ specifier: workspace:*
+ version: link:../device-frames
+ '@showroomjs/measure':
+ specifier: workspace:*
+ version: link:../measure
+ '@showroomjs/ui':
+ specifier: workspace:*
+ version: link:../ui
+ '@testing-library/dom':
+ specifier: ^8.16.1
+ version: 8.16.1
+ axe-core:
+ specifier: ^4.7.1
+ version: 4.7.1
+ babel-loader:
+ specifier: ^9.1.2
+ version: 9.1.2(@babel/core@7.21.8)(webpack@5.84.0)
+ cac:
+ specifier: ^6.7.14
+ version: 6.7.14
+ classnames:
+ specifier: ^2.3.2
+ version: 2.3.2
+ copy-webpack-plugin:
+ specifier: ^11.0.0
+ version: 11.0.0(webpack@5.84.0)
+ cross-spawn:
+ specifier: ^7.0.3
+ version: 7.0.3
+ css-loader:
+ specifier: ^6.7.4
+ version: 6.7.4(webpack@5.84.0)
+ css-minimizer-webpack-plugin:
+ specifier: ^5.0.0
+ version: 5.0.0(esbuild@0.17.19)(webpack@5.84.0)
+ esbuild:
+ specifier: 0.17.19
+ version: 0.17.19
+ esbuild-wasm:
+ specifier: 0.17.19
+ version: 0.17.19
+ estree-util-value-to-estree:
+ specifier: ^1.3.0
+ version: 1.3.0
+ front-matter:
+ specifier: ^4.0.2
+ version: 4.0.2
+ fs-extra:
+ specifier: ^11.1.1
+ version: 11.1.1
+ github-slugger:
+ specifier: ^1.4.0
+ version: 1.4.0
+ glob:
+ specifier: ^8.0.3
+ version: 8.0.3
+ hast-util-heading:
+ specifier: 1.0.5
+ version: 1.0.5
+ hast-util-heading-rank:
+ specifier: 1.0.1
+ version: 1.0.1
+ hast-util-to-html:
+ specifier: 7.1.3
+ version: 7.1.3
+ html-webpack-plugin:
+ specifier: ^5.5.1
+ version: 5.5.1(webpack@5.84.0)
+ html-webpack-tags-plugin:
+ specifier: ^3.0.2
+ version: 3.0.2(html-webpack-plugin@5.5.1)(webpack@5.84.0)
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ lz-string:
+ specifier: ^1.5.0
+ version: 1.5.0
+ match-sorter:
+ specifier: ^6.3.1
+ version: 6.3.1
+ mdast-util-to-string:
+ specifier: '2'
+ version: 2.0.0
+ mime-types:
+ specifier: ^2.1.35
+ version: 2.1.35
+ mini-css-extract-plugin:
+ specifier: ~2.7.6
+ version: 2.7.6(webpack@5.84.0)
+ monaco-themes:
+ specifier: ^0.4.4
+ version: 0.4.4
+ nanocolors:
+ specifier: ^0.2.13
+ version: 0.2.13
+ node-fetch:
+ specifier: ^2.6.7
+ version: 2.6.7
+ open:
+ specifier: ^8.4.0
+ version: 8.4.0
+ parse-numeric-range:
+ specifier: ^1.3.0
+ version: 1.3.0
+ postcss:
+ specifier: ^8.4.16
+ version: 8.4.16
+ postcss-loader:
+ specifier: ^7.3.0
+ version: 7.3.0(postcss@8.4.16)(webpack@5.84.0)
+ prism-react-renderer:
+ specifier: ^1.3.5
+ version: 1.3.5(react@18.2.0)
+ qs-lite:
+ specifier: ^0.0.3
+ version: 0.0.3
+ re-resizable:
+ specifier: ^6.9.9
+ version: 6.9.9(react-dom@18.2.0)(react@18.2.0)
+ react:
+ specifier: ^18.0.0-0
+ version: 18.2.0
+ react-docgen-typescript:
+ specifier: ^2.2.2
+ version: 2.2.2(typescript@4.6.4)
+ react-dom:
+ specifier: ^18.0.0-0
+ version: 18.2.0(react@18.2.0)
+ react-error-boundary:
+ specifier: ^3.1.4
+ version: 3.1.4(react@18.2.0)
+ react-helmet:
+ specifier: ^6.1.0
+ version: 6.1.0(react@18.2.0)
+ react-lazy-with-preload:
+ specifier: ^2.2.1
+ version: 2.2.1
+ react-refresh:
+ specifier: ^0.14.0
+ version: 0.14.0
+ rehype-mdx-title:
+ specifier: ^1.0.0
+ version: 1.0.0
+ rehype-slug:
+ specifier: 4.0.1
+ version: 4.0.1
+ remark-frontmatter:
+ specifier: 3.0.0
+ version: 3.0.0
+ remark-gfm:
+ specifier: 1.0.0
+ version: 1.0.0
+ remark-mdx-frontmatter:
+ specifier: ^1.1.1
+ version: 1.1.1
+ remark-parse:
+ specifier: 9.0.0
+ version: 9.0.0
+ remark-stringify:
+ specifier: ^9.0.1
+ version: 9.0.1
+ rimraf:
+ specifier: ^3.0.2
+ version: 3.0.2
+ sass:
+ specifier: '*'
+ version: 1.54.3
+ sass-loader:
+ specifier: ^13.3.0
+ version: 13.3.0(sass@1.54.3)(webpack@5.84.0)
+ scroll-into-view-if-needed:
+ specifier: ^3.0.10
+ version: 3.0.10
+ slugify:
+ specifier: ^1.6.5
+ version: 1.6.5
+ snarkdown:
+ specifier: ^2.0.0
+ version: 2.0.0
+ source-map-support:
+ specifier: ^0.5.21
+ version: 0.5.21
+ speed-measure-webpack-plugin:
+ specifier: ^1.5.0
+ version: 1.5.0(webpack@5.84.0)
+ string-similarity:
+ specifier: ^4.0.4
+ version: 4.0.4
+ stringify-object:
+ specifier: ~4.0.1
+ version: 4.0.1
+ style-loader:
+ specifier: ^3.3.3
+ version: 3.3.3(webpack@5.84.0)
+ temp:
+ specifier: ^0.9.4
+ version: 0.9.4
+ tslib:
+ specifier: ^2.4.0
+ version: 2.4.0
+ tsup:
+ specifier: 6.7.0
+ version: 6.7.0(postcss@8.4.16)(typescript@4.6.4)
+ unified:
+ specifier: 9.2.2
+ version: 9.2.2
+ unist-util-find:
+ specifier: ^1.0.2
+ version: 1.0.2
+ unist-util-visit:
+ specifier: 2.0.3
+ version: 2.0.3
+ vfile:
+ specifier: 4.2.1
+ version: 4.2.1
+ webpack:
+ specifier: ^5.84.0
+ version: 5.84.0(esbuild@0.17.19)
+ webpack-dev-server:
+ specifier: ^4.15.0
+ version: 4.15.0(webpack@5.84.0)
+ webpack-merge:
+ specifier: ^5.9.0
+ version: 5.9.0
+ webpack-messages:
+ specifier: ^2.0.4
+ version: 2.0.4
+ webpack-virtual-modules:
+ specifier: ^0.5.0
+ version: 0.5.0
+ workbox-expiration:
+ specifier: ^6.5.4
+ version: 6.5.4
+ workbox-recipes:
+ specifier: ^6.5.4
+ version: 6.5.4
+ workbox-routing:
+ specifier: ^6.5.4
+ version: 6.5.4
+ workbox-strategies:
+ specifier: ^6.5.4
+ version: 6.5.4
+ workbox-webpack-plugin:
+ specifier: ^6.5.4
+ version: 6.5.4(webpack@5.84.0)
+ xdm:
+ specifier: ^3.4.0
+ version: 3.4.0
devDependencies:
- '@types/lodash': 4.14.182
- '@types/unist': 2.0.6
- typescript: 4.6.4
+ '@mkeeorg/postcss-prefixer':
+ specifier: ^2.1.3
+ version: 2.1.3(postcss@8.4.16)
+ '@types/lodash':
+ specifier: ^4.14.182
+ version: 4.14.182
+ '@types/unist':
+ specifier: ^2.0.6
+ version: 2.0.6
+ postcss-cli:
+ specifier: ^10.1.0
+ version: 10.1.0(postcss@8.4.16)
+ tailwindcss:
+ specifier: ^3.3.2
+ version: 3.3.2
+ typescript:
+ specifier: ~4.6.4
+ version: 4.6.4
packages/ui:
- specifiers:
- '@heroicons/react': ^1.0.6
- '@radix-ui/react-announce': ^0.1.5
- '@radix-ui/react-checkbox': ^1.0.0
- '@radix-ui/react-collapsible': ^1.0.0
- '@radix-ui/react-dialog': ^1.0.0
- '@radix-ui/react-dropdown-menu': ^1.0.0
- '@radix-ui/react-id': ^1.0.0
- '@radix-ui/react-popover': ^1.0.0
- '@radix-ui/react-portal': ^1.0.0
- '@radix-ui/react-switch': ^1.0.0
- '@radix-ui/react-tabs': ^1.0.0
- '@radix-ui/react-toggle': ^1.0.0
- '@radix-ui/react-tooltip': ^1.0.0
- '@showroomjs/bundles': workspace:*
- '@showroomjs/core': workspace:*
- '@stitches/react': ^1.2.8
- classnames: ^2.3.1
- downshift: ^6.1.7
- mitt: ^3.0.0
- react-highlight-words: ^0.18.0
- react-textarea-autosize: ^8.3.4
- rifm: ^0.12.1
- tslib: ^2.4.0
- typescript: ~4.6.4
- use-constant: ^1.1.1
- dependencies:
- '@heroicons/react': 1.0.6
- '@radix-ui/react-announce': 0.1.5
- '@radix-ui/react-checkbox': 1.0.0
- '@radix-ui/react-collapsible': 1.0.0
- '@radix-ui/react-dialog': 1.0.0
- '@radix-ui/react-dropdown-menu': 1.0.0
- '@radix-ui/react-id': 1.0.0
- '@radix-ui/react-popover': 1.0.0
- '@radix-ui/react-portal': 1.0.0
- '@radix-ui/react-switch': 1.0.0
- '@radix-ui/react-tabs': 1.0.0
- '@radix-ui/react-toggle': 1.0.0
- '@radix-ui/react-tooltip': 1.0.0
- '@showroomjs/bundles': link:../bundles
- '@showroomjs/core': link:../core
- '@stitches/react': 1.2.8
- classnames: 2.3.1
- downshift: 6.1.7
- mitt: 3.0.0
- react-highlight-words: 0.18.0
- react-textarea-autosize: 8.3.4
- rifm: 0.12.1
- tslib: 2.4.0
- use-constant: 1.1.1
+ dependencies:
+ '@radix-ui/react-announce':
+ specifier: ^0.1.8
+ version: 0.1.8(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-checkbox':
+ specifier: ^1.0.4
+ version: 1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-collapsible':
+ specifier: ^1.0.3
+ version: 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-dialog':
+ specifier: ^1.0.4
+ version: 1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-dropdown-menu':
+ specifier: ^2.0.5
+ version: 2.0.5(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id':
+ specifier: ^1.0.1
+ version: 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-popover':
+ specifier: ^1.0.6
+ version: 1.0.6(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal':
+ specifier: ^1.0.3
+ version: 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-switch':
+ specifier: ^1.0.3
+ version: 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-tabs':
+ specifier: ^1.0.4
+ version: 1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle':
+ specifier: ^1.0.3
+ version: 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-tooltip':
+ specifier: ^1.0.6
+ version: 1.0.6(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@showroomjs/bundles':
+ specifier: workspace:*
+ version: link:../bundles
+ '@showroomjs/core':
+ specifier: workspace:*
+ version: link:../core
+ '@stitches/react':
+ specifier: ^1.2.8
+ version: 1.2.8(react@18.2.0)
+ classnames:
+ specifier: ^2.3.2
+ version: 2.3.2
+ downshift:
+ specifier: ^6.1.7
+ version: 6.1.7(react@18.2.0)
+ mitt:
+ specifier: ^3.0.0
+ version: 3.0.0
+ react:
+ specifier: ^18.0.0-0
+ version: 18.2.0
+ react-colorful:
+ specifier: ^5.6.1
+ version: 5.6.1(react-dom@18.2.0)(react@18.2.0)
+ react-dom:
+ specifier: ^18.0.0-0
+ version: 18.2.0(react@18.2.0)
+ react-highlight-words:
+ specifier: ^0.18.0
+ version: 0.18.0(react@18.2.0)
+ react-textarea-autosize:
+ specifier: ^8.3.4
+ version: 8.3.4(@types/react@18.0.16)(react@18.2.0)
+ rifm:
+ specifier: ^0.12.1
+ version: 0.12.1(react@18.2.0)
+ tslib:
+ specifier: ^2.4.0
+ version: 2.4.0
+ use-constant:
+ specifier: ^1.1.1
+ version: 1.1.1(react@18.2.0)
devDependencies:
- typescript: 4.6.4
+ '@heroicons/react':
+ specifier: ^2.0.18
+ version: 2.0.18(react@18.2.0)
+ '@tailwindcss/forms':
+ specifier: ^0.5.3
+ version: 0.5.3(tailwindcss@3.3.2)
+ autoprefixer:
+ specifier: ^10.4.14
+ version: 10.4.14(postcss@8.4.23)
+ postcss:
+ specifier: ^8.4.23
+ version: 8.4.23
+ postcss-prefixer:
+ specifier: ^3.0.0
+ version: 3.0.0(postcss@8.4.23)
+ tailwindcss:
+ specifier: ^3.3.2
+ version: 3.3.2
+ tsup:
+ specifier: ^6.7.0
+ version: 6.7.0(postcss@8.4.23)(typescript@4.6.4)
+ typescript:
+ specifier: ~4.6.4
+ version: 4.6.4
packages:
- /@adobe/css-tools/4.0.1:
- resolution: {integrity: sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g==}
+ /@adobe/css-tools@4.2.0:
+ resolution: {integrity: sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==}
dev: false
- /@ampproject/remapping/2.1.2:
- resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/trace-mapping': 0.3.4
- dev: false
+ /@alloc/quick-lru@5.2.0:
+ resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
+ engines: {node: '>=10'}
+ dev: true
- /@ampproject/remapping/2.2.0:
- resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
+ /@ampproject/remapping@2.2.1:
+ resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/gen-mapping': 0.1.1
- '@jridgewell/trace-mapping': 0.3.14
-
- /@apideck/better-ajv-errors/0.3.3_ajv@8.11.0:
- resolution: {integrity: sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==}
- engines: {node: '>=10'}
- peerDependencies:
- ajv: '>=8'
- dependencies:
- ajv: 8.11.0
- json-schema: 0.4.0
- jsonpointer: 5.0.0
- leven: 3.1.0
- dev: false
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.18
- /@apideck/better-ajv-errors/0.3.6_ajv@8.11.0:
+ /@apideck/better-ajv-errors@0.3.6(ajv@8.12.0):
resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==}
engines: {node: '>=10'}
peerDependencies:
ajv: '>=8'
dependencies:
- ajv: 8.11.0
+ ajv: 8.12.0
json-schema: 0.4.0
jsonpointer: 5.0.1
leven: 3.1.0
dev: false
- /@babel/code-frame/7.16.7:
- resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': 7.16.10
- dev: false
-
- /@babel/code-frame/7.18.6:
- resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
+ /@babel/code-frame@7.21.4:
+ resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
- /@babel/compat-data/7.17.10:
- resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==}
- engines: {node: '>=6.9.0'}
- dev: false
-
- /@babel/compat-data/7.18.5:
- resolution: {integrity: sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg==}
- engines: {node: '>=6.9.0'}
- dev: false
-
- /@babel/compat-data/7.18.6:
- resolution: {integrity: sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==}
- engines: {node: '>=6.9.0'}
- dev: false
-
- /@babel/compat-data/7.18.8:
- resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==}
+ /@babel/compat-data@7.21.9:
+ resolution: {integrity: sha512-FUGed8kfhyWvbYug/Un/VPJD41rDIgoVVcR+FuzhzOYyRz5uED+Gd3SLZml0Uw2l2aHFb7ZgdW5mGA3G2cCCnQ==}
engines: {node: '>=6.9.0'}
- /@babel/core/7.18.10:
+ /@babel/core@7.18.10:
resolution: {integrity: sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.12
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10
- '@babel/helper-module-transforms': 7.18.9
- '@babel/helpers': 7.18.9
- '@babel/parser': 7.18.11
- '@babel/template': 7.18.10
- '@babel/traverse': 7.18.11
- '@babel/types': 7.18.10
- convert-source-map: 1.8.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/core/7.18.5:
- resolution: {integrity: sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.1.2
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.18.2
- '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helpers': 7.18.2
- '@babel/parser': 7.18.5
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.5
- '@babel/types': 7.18.4
- convert-source-map: 1.8.0
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.21.4
+ '@babel/generator': 7.21.9
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.10)
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helpers': 7.21.5
+ '@babel/parser': 7.21.9
+ '@babel/template': 7.21.9
+ '@babel/traverse': 7.21.5
+ '@babel/types': 7.21.5
+ convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
- json5: 2.2.1
+ json5: 2.2.3
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/core/7.18.6:
- resolution: {integrity: sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==}
+ /@babel/core@7.21.8:
+ resolution: {integrity: sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.7
- '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6
- '@babel/helper-module-transforms': 7.18.6
- '@babel/helpers': 7.18.6
- '@babel/parser': 7.18.6
- '@babel/template': 7.18.6
- '@babel/traverse': 7.18.6
- '@babel/types': 7.18.7
- convert-source-map: 1.8.0
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.21.4
+ '@babel/generator': 7.21.9
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helpers': 7.21.5
+ '@babel/parser': 7.21.9
+ '@babel/template': 7.21.9
+ '@babel/traverse': 7.21.5
+ '@babel/types': 7.21.5
+ convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
- json5: 2.2.1
+ json5: 2.2.3
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/eslint-parser/7.17.0_hh6gdl3bupb3oz2rn4ykfrzfzm:
- resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==}
+ /@babel/eslint-parser@7.21.8(@babel/core@7.18.10)(eslint@8.43.0):
+ resolution: {integrity: sha512-HLhI+2q+BP3sf78mFUZNCGc10KEmoUqtUT1OCdMZsN+qr4qFeLUod62/zAnF3jNQstwyasDkZnVXwfK2Bml7MQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': '>=7.11.0'
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@babel/core': 7.18.5
+ '@babel/core': 7.18.10
+ '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 8.43.0
- eslint-scope: 5.1.1
eslint-visitor-keys: 2.1.0
semver: 6.3.0
dev: false
- /@babel/generator/7.17.10:
- resolution: {integrity: sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.10
- '@jridgewell/gen-mapping': 0.1.1
- jsesc: 2.5.2
- dev: false
-
- /@babel/generator/7.18.12:
- resolution: {integrity: sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.10
- '@jridgewell/gen-mapping': 0.3.2
- jsesc: 2.5.2
-
- /@babel/generator/7.18.2:
- resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.4
- '@jridgewell/gen-mapping': 0.3.1
- jsesc: 2.5.2
- dev: false
-
- /@babel/generator/7.18.7:
- resolution: {integrity: sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==}
+ /@babel/generator@7.21.9:
+ resolution: {integrity: sha512-F3fZga2uv09wFdEjEQIJxXALXfz0+JaOb7SabvVMmjHxeVTuGW8wgE8Vp1Hd7O+zMTYtcfEISGRzPkeiaPPsvg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.7
- '@jridgewell/gen-mapping': 0.3.2
+ '@babel/types': 7.21.5
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.18
jsesc: 2.5.2
- /@babel/helper-annotate-as-pure/7.16.7:
- resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
+ /@babel/helper-annotate-as-pure@7.18.6:
+ resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.4
- dev: false
+ '@babel/types': 7.21.5
- /@babel/helper-annotate-as-pure/7.18.6:
- resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.21.5:
+ resolution: {integrity: sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.7
+ '@babel/types': 7.21.5
- /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7:
- resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==}
+ /@babel/helper-compilation-targets@7.21.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/helper-explode-assignable-expression': 7.16.7
- '@babel/types': 7.18.4
+ '@babel/compat-data': 7.21.9
+ '@babel/core': 7.18.10
+ '@babel/helper-validator-option': 7.21.0
+ browserslist: 4.21.5
+ lru-cache: 5.1.1
+ semver: 6.3.0
dev: false
- /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
- resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
+ /@babel/helper-compilation-targets@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.18.10
+ '@babel/compat-data': 7.21.9
+ '@babel/core': 7.21.8
+ '@babel/helper-validator-option': 7.21.0
+ browserslist: 4.21.5
+ lru-cache: 5.1.1
+ semver: 6.3.0
- /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.5:
- resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==}
+ /@babel/helper-create-class-features-plugin@7.21.8(@babel/core@7.18.10):
+ resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.18.5
- '@babel/core': 7.18.5
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.21.0
+ '@babel/core': 7.18.10
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-member-expression-to-functions': 7.21.5
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-replace-supers': 7.21.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/helper-split-export-declaration': 7.18.6
semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/helper-compilation-targets/7.18.6_@babel+core@7.18.5:
- resolution: {integrity: sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==}
+ /@babel/helper-create-class-features-plugin@7.21.8(@babel/core@7.21.8):
+ resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.18.6
- '@babel/core': 7.18.5
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.1
+ '@babel/core': 7.21.8
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-member-expression-to-functions': 7.21.5
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-replace-supers': 7.21.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/helper-split-export-declaration': 7.18.6
semver: 6.3.0
- dev: false
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-compilation-targets/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==}
+ /@babel/helper-create-regexp-features-plugin@7.21.8(@babel/core@7.18.10):
+ resolution: {integrity: sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.18.6
- '@babel/core': 7.18.6
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.1
+ '@babel/core': 7.18.10
+ '@babel/helper-annotate-as-pure': 7.18.6
+ regexpu-core: 5.3.2
semver: 6.3.0
dev: false
- /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==}
+ /@babel/helper-create-regexp-features-plugin@7.21.8(@babel/core@7.21.8):
+ resolution: {integrity: sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.18.8
- '@babel/core': 7.18.10
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.3
+ '@babel/core': 7.21.8
+ '@babel/helper-annotate-as-pure': 7.18.6
+ regexpu-core: 5.3.2
semver: 6.3.0
- /@babel/helper-create-class-features-plugin/7.16.10_@babel+core@7.18.5:
- resolution: {integrity: sha512-wDeej0pu3WN/ffTxMNCPW5UCiOav8IcLRxSIyp/9+IF2xJUM9h/OYjg0IJLHaL6F8oU8kqMz9nc1vryXhMsgXg==}
- engines: {node: '>=6.9.0'}
+ /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-member-expression-to-functions': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/core': 7.18.10
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
+ debug: 4.3.4
+ lodash.debounce: 4.0.8
+ resolve: 1.22.2
+ semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-create-class-features-plugin/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==}
- engines: {node: '>=6.9.0'}
+ /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-member-expression-to-functions': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/core': 7.21.8
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
+ debug: 4.3.4
+ lodash.debounce: 4.0.8
+ resolve: 1.22.2
+ semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.18.5:
- resolution: {integrity: sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==}
+ /@babel/helper-environment-visitor@7.21.5:
+ resolution: {integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==}
+ engines: {node: '>=6.9.0'}
+
+ /@babel/helper-function-name@7.21.0:
+ resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-member-expression-to-functions': 7.17.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/template': 7.21.9
+ '@babel/types': 7.21.5
- /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.5:
- resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==}
+ /@babel/helper-hoist-variables@7.18.6:
+ resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.18.2
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-member-expression-to-functions': 7.17.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.18.2
- '@babel/helper-split-export-declaration': 7.16.7
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/types': 7.21.5
- /@babel/helper-create-class-features-plugin/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==}
+ /@babel/helper-member-expression-to-functions@7.21.5:
+ resolution: {integrity: sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.6
- '@babel/helper-function-name': 7.18.6
- '@babel/helper-member-expression-to-functions': 7.18.6
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.18.6
+ '@babel/types': 7.21.5
+
+ /@babel/helper-module-imports@7.21.4:
+ resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.21.5
+
+ /@babel/helper-module-transforms@7.21.5:
+ resolution: {integrity: sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-simple-access': 7.21.5
'@babel/helper-split-export-declaration': 7.18.6
+ '@babel/helper-validator-identifier': 7.19.1
+ '@babel/template': 7.21.9
+ '@babel/traverse': 7.21.5
+ '@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==}
+ /@babel/helper-optimise-call-expression@7.18.6:
+ resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.18.9
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.18.9
- '@babel/helper-split-export-declaration': 7.18.6
- transitivePeerDependencies:
- - supports-color
-
- /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.6:
- resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.18.9
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.18.9
- '@babel/helper-split-export-declaration': 7.18.6
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.18.5:
- resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- regexpu-core: 5.0.1
- dev: false
+ '@babel/types': 7.21.5
- /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==}
+ /@babel/helper-plugin-utils@7.21.5:
+ resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- regexpu-core: 5.0.1
- dev: false
- /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==}
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.18.10):
+ resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.10
'@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.1.0
-
- /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.5:
- resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.1.0
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-wrap-function': 7.20.5
+ '@babel/types': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==}
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.8):
+ resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.6
+ '@babel/core': 7.21.8
'@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.1.0
- dev: false
-
- /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.5:
- resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.5
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/traverse': 7.18.6
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.6:
- resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/traverse': 7.18.6
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.1
- semver: 6.3.0
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-wrap-function': 7.20.5
+ '@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.10:
- resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
+ /@babel/helper-replace-supers@7.21.5:
+ resolution: {integrity: sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==}
+ engines: {node: '>=6.9.0'}
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.1
- semver: 6.3.0
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-member-expression-to-functions': 7.21.5
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/template': 7.21.9
+ '@babel/traverse': 7.21.5
+ '@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- /@babel/helper-environment-visitor/7.16.7:
- resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==}
+ /@babel/helper-simple-access@7.21.5:
+ resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.16.8
- dev: false
-
- /@babel/helper-environment-visitor/7.18.2:
- resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==}
- engines: {node: '>=6.9.0'}
- dev: false
-
- /@babel/helper-environment-visitor/7.18.6:
- resolution: {integrity: sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-environment-visitor/7.18.9:
- resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
- engines: {node: '>=6.9.0'}
+ '@babel/types': 7.21.5
- /@babel/helper-explode-assignable-expression/7.16.7:
- resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==}
+ /@babel/helper-skip-transparent-expression-wrappers@7.20.0:
+ resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.4
- dev: false
-
- /@babel/helper-explode-assignable-expression/7.18.6:
- resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.21.5
- /@babel/helper-function-name/7.16.7:
- resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==}
+ /@babel/helper-split-export-declaration@7.18.6:
+ resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-get-function-arity': 7.16.7
- '@babel/template': 7.16.7
- '@babel/types': 7.16.8
- dev: false
+ '@babel/types': 7.21.5
- /@babel/helper-function-name/7.17.9:
- resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==}
+ /@babel/helper-string-parser@7.21.5:
+ resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.16.7
- '@babel/types': 7.18.4
- dev: false
- /@babel/helper-function-name/7.18.6:
- resolution: {integrity: sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==}
+ /@babel/helper-validator-identifier@7.19.1:
+ resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.18.10
- /@babel/helper-function-name/7.18.9:
- resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==}
+ /@babel/helper-validator-option@7.21.0:
+ resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.18.10
- /@babel/helper-get-function-arity/7.16.7:
- resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==}
+ /@babel/helper-wrap-function@7.20.5:
+ resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.16.8
- dev: false
+ '@babel/helper-function-name': 7.21.0
+ '@babel/template': 7.21.9
+ '@babel/traverse': 7.21.5
+ '@babel/types': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-hoist-variables/7.16.7:
- resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==}
+ /@babel/helpers@7.21.5:
+ resolution: {integrity: sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.4
- dev: false
+ '@babel/template': 7.21.9
+ '@babel/traverse': 7.21.5
+ '@babel/types': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-hoist-variables/7.18.6:
- resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
+ /@babel/highlight@7.18.6:
+ resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.7
+ '@babel/helper-validator-identifier': 7.19.1
+ chalk: 2.4.2
+ js-tokens: 4.0.0
- /@babel/helper-member-expression-to-functions/7.16.7:
- resolution: {integrity: sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/parser@7.21.9:
+ resolution: {integrity: sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
dependencies:
- '@babel/types': 7.16.8
- dev: false
+ '@babel/types': 7.21.5
- /@babel/helper-member-expression-to-functions/7.17.7:
- resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/types': 7.17.10
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/helper-member-expression-to-functions/7.18.6:
- resolution: {integrity: sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.10
-
- /@babel/helper-member-expression-to-functions/7.18.9:
- resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/types': 7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/helper-module-imports/7.16.7:
- resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.18.10):
+ resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
dependencies:
- '@babel/types': 7.18.4
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.10)
dev: false
- /@babel/helper-module-imports/7.18.6:
- resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.8):
+ resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
dependencies:
- '@babel/types': 7.18.7
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.8)
- /@babel/helper-module-transforms/7.18.0:
- resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==}
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.18.10):
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-environment-visitor': 7.18.2
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-simple-access': 7.18.2
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/helper-validator-identifier': 7.16.7
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.5
- '@babel/types': 7.18.4
+ '@babel/core': 7.18.10
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-module-transforms/7.18.6:
- resolution: {integrity: sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==}
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.8):
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-environment-visitor': 7.18.6
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-simple-access': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.18.6
- '@babel/template': 7.18.6
- '@babel/traverse': 7.18.6
- '@babel/types': 7.18.7
+ '@babel/core': 7.21.8
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.8)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.8)
transitivePeerDependencies:
- supports-color
- /@babel/helper-module-transforms/7.18.9:
- resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==}
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-simple-access': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.18.6
- '@babel/template': 7.18.10
- '@babel/traverse': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/core': 7.18.10
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
-
- /@babel/helper-optimise-call-expression/7.16.7:
- resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.16.8
- dev: false
-
- /@babel/helper-optimise-call-expression/7.18.6:
- resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.10
-
- /@babel/helper-plugin-utils/7.16.7:
- resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-plugin-utils/7.17.12:
- resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==}
- engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-plugin-utils/7.18.6:
- resolution: {integrity: sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-plugin-utils/7.18.9:
- resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-remap-async-to-generator/7.16.8:
- resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==}
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-wrap-function': 7.16.8
- '@babel/types': 7.18.4
+ '@babel/core': 7.21.8
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/helper-remap-async-to-generator/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==}
+ /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.18.10):
+ resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.6
- '@babel/helper-wrap-function': 7.18.6
- '@babel/types': 7.18.7
+ '@babel/core': 7.18.10
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
+ /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.8):
+ resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-wrap-function': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.8)
transitivePeerDependencies:
- supports-color
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.6:
- resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
+ /@babel/plugin-proposal-decorators@7.21.0(@babel/core@7.18.10):
+ resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-wrap-function': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/core': 7.18.10
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-replace-supers': 7.21.5
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/plugin-syntax-decorators': 7.21.0(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-replace-supers/7.16.7:
- resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==}
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-environment-visitor': 7.18.2
- '@babel/helper-member-expression-to-functions': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/traverse': 7.18.5
- '@babel/types': 7.18.4
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.10)
dev: false
- /@babel/helper-replace-supers/7.18.2:
- resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==}
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-environment-visitor': 7.18.2
- '@babel/helper-member-expression-to-functions': 7.17.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/traverse': 7.18.5
- '@babel/types': 7.18.4
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.8)
- /@babel/helper-replace-supers/7.18.6:
- resolution: {integrity: sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==}
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.18.10):
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-environment-visitor': 7.18.6
- '@babel/helper-member-expression-to-functions': 7.18.6
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.18.6
- '@babel/types': 7.18.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.10)
+ dev: false
- /@babel/helper-replace-supers/7.18.9:
- resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==}
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.8):
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.18.9
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.18.11
- '@babel/types': 7.18.10
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.8)
- /@babel/helper-simple-access/7.18.2:
- resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==}
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/types': 7.18.4
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.10)
dev: false
- /@babel/helper-simple-access/7.18.6:
- resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/types': 7.18.7
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.8)
- /@babel/helper-skip-transparent-expression-wrappers/7.16.0:
- resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==}
+ /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.18.10):
+ resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/types': 7.16.8
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.10)
dev: false
- /@babel/helper-skip-transparent-expression-wrappers/7.18.6:
- resolution: {integrity: sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==}
+ /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.8):
+ resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/types': 7.18.7
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.8)
- /@babel/helper-skip-transparent-expression-wrappers/7.18.9:
- resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==}
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/types': 7.18.10
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.10)
+ dev: false
- /@babel/helper-split-export-declaration/7.16.7:
- resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/types': 7.18.4
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.8)
- /@babel/helper-split-export-declaration/7.18.6:
- resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/types': 7.18.10
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.10)
+ dev: false
- /@babel/helper-string-parser/7.18.10:
- resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==}
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.8)
- /@babel/helper-validator-identifier/7.16.7:
- resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.18.10):
+ resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.21.9
+ '@babel/core': 7.18.10
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.18.10)
+ dev: false
- /@babel/helper-validator-identifier/7.18.6:
- resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.8):
+ resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.21.9
+ '@babel/core': 7.21.8
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.8)
- /@babel/helper-validator-option/7.16.7:
- resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==}
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.10)
dev: false
- /@babel/helper-validator-option/7.18.6:
- resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.8)
- /@babel/helper-wrap-function/7.16.8:
- resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==}
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.18.10):
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-function-name': 7.17.9
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.5
- '@babel/types': 7.18.4
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.10)
dev: false
- /@babel/helper-wrap-function/7.18.11:
- resolution: {integrity: sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==}
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.8):
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-function-name': 7.18.9
- '@babel/template': 7.18.10
- '@babel/traverse': 7.18.11
- '@babel/types': 7.18.10
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.8)
- /@babel/helper-wrap-function/7.18.6:
- resolution: {integrity: sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==}
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-function-name': 7.18.6
- '@babel/template': 7.18.6
- '@babel/traverse': 7.18.6
- '@babel/types': 7.18.7
+ '@babel/core': 7.18.10
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helpers/7.18.2:
- resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==}
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.5
- '@babel/types': 7.18.4
+ '@babel/core': 7.21.8
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/helpers/7.18.6:
- resolution: {integrity: sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==}
+ /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.18.10):
+ resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/template': 7.18.6
- '@babel/traverse': 7.18.6
- '@babel/types': 7.18.7
+ '@babel/core': 7.18.10
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helpers/7.18.9:
- resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==}
+ /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.8):
+ resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/template': 7.18.10
- '@babel/traverse': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.8)
transitivePeerDependencies:
- supports-color
- /@babel/highlight/7.16.10:
- resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-validator-identifier': 7.16.7
- chalk: 2.4.2
- js-tokens: 4.0.0
+ '@babel/core': 7.18.10
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/highlight/7.18.6:
- resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.18.6
- chalk: 2.4.2
- js-tokens: 4.0.0
-
- /@babel/parser/7.17.10:
- resolution: {integrity: sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.17.10
-
- /@babel/parser/7.18.11:
- resolution: {integrity: sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/types': 7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/parser/7.18.5:
- resolution: {integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.18.10):
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/types': 7.18.4
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/parser/7.18.6:
- resolution: {integrity: sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.8):
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/types': 7.18.7
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.18.10):
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.8):
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
- '@babel/core': ^7.13.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.5
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==}
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.13.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.6
- '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.13.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==}
+ /@babel/plugin-syntax-decorators@7.21.0(@babel/core@7.18.10):
+ resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-remap-async-to-generator': 7.16.8
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.18.10:
- resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-proposal-async-generator-functions/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-environment-visitor': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-remap-async-to-generator': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.6
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.16.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
+ /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.18.10):
+ resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
+ /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.21.8):
+ resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-class-static-block/7.18.0_@babel+core@7.18.5:
- resolution: {integrity: sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==}
+ /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.18.10):
+ resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.12.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
+ /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.8):
+ resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.12.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.18.10):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
- '@babel/core': ^7.12.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.6
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-decorators/7.17.9_@babel+core@7.18.5:
- resolution: {integrity: sha512-EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.8):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/plugin-syntax-decorators': 7.17.0_@babel+core@7.18.5
- charcodes: 0.2.0
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.5
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
+ /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.18.10):
+ resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==}
+ /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.8):
+ resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.5
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-export-namespace-from/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.18.10):
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.8):
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.5
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.18.10):
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.8):
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.5
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-logical-assignment-operators/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.5
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.5
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.6
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.5
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.5:
- resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==}
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.10
- '@babel/core': 7.18.5
- '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.5
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-object-rest-spread/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==}
+ /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.18.10):
+ resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.18.6
- '@babel/core': 7.18.6
- '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.6
- '@babel/plugin-transform-parameters': 7.18.6_@babel+core@7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
+ /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.21.8):
+ resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.18.8
- '@babel/core': 7.18.10
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
+ /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.5
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
+ /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
+ /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.18.10):
+ resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.18.10)
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
+ /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.8):
+ resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.5
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.8)
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==}
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.5
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-optional-chaining/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==}
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.6
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.6
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.18.10):
+ resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.18.5:
- resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.8):
+ resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-class-features-plugin': 7.16.10_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.16.7
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==}
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.18.10):
+ resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.10
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.10)
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-replace-supers': 7.21.5
+ '@babel/helper-split-export-declaration': 7.18.6
+ globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.8):
+ resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.21.8
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-replace-supers': 7.21.5
+ '@babel/helper-split-export-declaration': 7.18.6
+ globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/template': 7.21.9
dev: false
- /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
+ /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.5
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/template': 7.21.9
- /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==}
+ /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.6
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==}
- engines: {node: '>=4'}
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.18.10):
+ resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.5:
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.8):
+ resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.18.9
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.18.10
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10:
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.21.8
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.5:
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.18.10):
+ resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.18.10)
dev: false
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.6:
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.5:
- resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.18.10):
+ resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.10
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.10)
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10:
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.8):
+ resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.21.8
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.5:
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.18.10):
+ resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.6:
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.8):
+ resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.10:
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.5:
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.9
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.6:
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.18.10):
+ resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.18.10
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-syntax-decorators/7.17.0_@babel+core@7.18.5:
- resolution: {integrity: sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==}
+ /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.8):
+ resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
-
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.5:
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-simple-access': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.6:
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-simple-access': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.18.10):
+ resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
-
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.5:
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-validator-identifier': 7.19.1
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.6:
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.8):
+ resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-validator-identifier': 7.19.1
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==}
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.10
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-syntax-import-assertions/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw==}
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
+ /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
+ /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.10:
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.5:
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-replace-supers': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.5:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-replace-supers': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.6:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==}
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10:
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.5:
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ /@babel/plugin-transform-react-constant-elements@7.21.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.6:
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.5:
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.18.10)
dev: false
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.6:
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.8)
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10:
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ /@babel/plugin-transform-react-jsx@7.21.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.18.10)
+ '@babel/types': 7.21.5
+ dev: false
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.5:
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ /@babel/plugin-transform-react-jsx@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.8)
+ '@babel/types': 7.21.5
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.6:
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.21.8
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.5:
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ regenerator-transform: 0.15.1
dev: false
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.6:
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ regenerator-transform: 0.15.1
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.5:
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.6:
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ /@babel/plugin-transform-runtime@7.21.4(@babel/core@7.18.10):
+ resolution: {integrity: sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-plugin-utils': 7.21.5
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.18.10)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.18.10)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.18.10)
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ /@babel/plugin-transform-runtime@7.21.4(@babel/core@7.21.8):
+ resolution: {integrity: sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.21.8
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-plugin-utils': 7.21.5
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.8)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.8)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.8)
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.5:
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.6:
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.10:
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ /@babel/plugin-transform-spread@7.20.7(@babel/core@7.18.10):
+ resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ dev: false
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.5:
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.8):
+ resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.6:
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.10:
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.5:
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.18.10):
+ resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.6:
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.8):
+ resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-typescript/7.17.10_@babel+core@7.18.5:
- resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==}
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.18.10):
+ resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==}
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.8):
+ resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
+ /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.18.10)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
- /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==}
+ /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.8)
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
+ /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: false
- /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
+ /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==}
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-remap-async-to-generator': 7.16.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.18.10
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
dev: false
- /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.21.8
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
+ /@babel/preset-env@7.21.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.6
+ '@babel/compat-data': 7.21.9
+ '@babel/core': 7.18.10
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.10)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.18.10)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.18.10)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.18.10)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.18.10)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.18.10)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.10)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.18.10)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.10)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.10)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.18.10)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.18.10)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.18.10)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.18.10)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.18.10)
+ '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.18.10)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.18.10)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.18.10)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.18.10)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.18.10)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.18.10)
+ '@babel/types': 7.21.5
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.18.10)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.18.10)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.18.10)
+ core-js-compat: 3.30.2
+ semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
+ /@babel/preset-env@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ '@babel/compat-data': 7.21.9
+ '@babel/core': 7.21.8
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.8)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.8)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.8)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.8)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.8)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.8)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.8)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.8)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.8)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.8)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.8)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.8)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.8)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.8)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.8)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.8)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.8)
+ '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.8)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.8)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.8)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.8)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.8)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.8)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.8)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.8)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.8)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.8)
+ '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.8)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.21.8)
+ '@babel/types': 7.21.5
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.8)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.8)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.8)
+ core-js-compat: 3.30.2
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/preset-modules@0.1.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
-
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/types': 7.21.5
+ esutils: 2.0.3
dev: false
- /@babel/plugin-transform-block-scoping/7.18.4_@babel+core@7.18.5:
- resolution: {integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==}
- engines: {node: '>=6.9.0'}
+ /@babel/preset-modules@0.1.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.8)
+ '@babel/types': 7.21.5
+ esutils: 2.0.3
- /@babel/plugin-transform-block-scoping/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==}
+ /@babel/preset-react@7.18.6(@babel/core@7.18.10):
+ resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.18.10)
dev: false
- /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
+ /@babel/preset-react@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.21.8)
- /@babel/plugin-transform-classes/7.18.4_@babel+core@7.18.5:
- resolution: {integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==}
+ /@babel/preset-typescript@7.21.5(@babel/core@7.18.10):
+ resolution: {integrity: sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.18.2
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-replace-supers': 7.18.2
- '@babel/helper-split-export-declaration': 7.16.7
- globals: 11.12.0
+ '@babel/core': 7.18.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.18.10)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-classes/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==}
+ /@babel/preset-typescript@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.6
- '@babel/helper-function-name': 7.18.6
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-replace-supers': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- globals: 11.12.0
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.8)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.8)
transitivePeerDependencies:
- supports-color
+
+ /@babel/regjsgen@0.8.0:
+ resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
+
+ /@babel/runtime@7.18.9:
+ resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.13.11
dev: false
- /@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==}
+ /@babel/runtime@7.21.5:
+ resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-replace-supers': 7.18.9
- '@babel/helper-split-export-declaration': 7.18.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ regenerator-runtime: 0.13.11
- /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==}
+ /@babel/runtime@7.22.3:
+ resolution: {integrity: sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
+ regenerator-runtime: 0.13.11
dev: false
- /@babel/plugin-transform-computed-properties/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==}
+ /@babel/template@7.21.9:
+ resolution: {integrity: sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/code-frame': 7.21.4
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.21.5
- /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
+ /@babel/traverse@7.21.5:
+ resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/code-frame': 7.21.4
+ '@babel/generator': 7.21.9
+ '@babel/helper-environment-visitor': 7.21.5
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.21.5
+ debug: 4.3.4
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.5:
- resolution: {integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==}
+ /@babel/types@7.21.5:
+ resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ '@babel/helper-string-parser': 7.21.5
+ '@babel/helper-validator-identifier': 7.19.1
+ to-fast-properties: 2.0.0
- /@babel/plugin-transform-destructuring/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@bcoe/v8-coverage@0.2.3:
+ resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
+
+ /@changesets/apply-release-plan@6.1.3:
+ resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==}
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/runtime': 7.21.5
+ '@changesets/config': 2.3.0
+ '@changesets/get-version-range-type': 0.3.2
+ '@changesets/git': 2.0.0
+ '@changesets/types': 5.2.1
+ '@manypkg/get-packages': 1.1.3
+ detect-indent: 6.1.0
+ fs-extra: 7.0.1
+ lodash.startcase: 4.4.0
+ outdent: 0.5.0
+ prettier: 2.7.1
+ resolve-from: 5.0.0
+ semver: 5.7.1
+ dev: true
- /@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/assemble-release-plan@5.2.3:
+ resolution: {integrity: sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g==}
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/runtime': 7.21.5
+ '@changesets/errors': 0.1.4
+ '@changesets/get-dependents-graph': 1.3.5
+ '@changesets/types': 5.2.1
+ '@manypkg/get-packages': 1.1.3
+ semver: 5.7.1
+ dev: true
- /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/changelog-git@0.1.14:
+ resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==}
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ '@changesets/types': 5.2.1
+ dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/cli@2.26.1:
+ resolution: {integrity: sha512-XnTa+b51vt057fyAudvDKGB0Sh72xutQZNAdXkCqPBKO2zvs2yYZx5hFZj1u9cbtpwM6Sxtcr02/FQJfZOzemQ==}
+ hasBin: true
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/runtime': 7.21.5
+ '@changesets/apply-release-plan': 6.1.3
+ '@changesets/assemble-release-plan': 5.2.3
+ '@changesets/changelog-git': 0.1.14
+ '@changesets/config': 2.3.0
+ '@changesets/errors': 0.1.4
+ '@changesets/get-dependents-graph': 1.3.5
+ '@changesets/get-release-plan': 3.0.16
+ '@changesets/git': 2.0.0
+ '@changesets/logger': 0.0.5
+ '@changesets/pre': 1.0.14
+ '@changesets/read': 0.5.9
+ '@changesets/types': 5.2.1
+ '@changesets/write': 0.2.3
+ '@manypkg/get-packages': 1.1.3
+ '@types/is-ci': 3.0.0
+ '@types/semver': 6.2.3
+ ansi-colors: 4.1.3
+ chalk: 2.4.2
+ enquirer: 2.3.6
+ external-editor: 3.1.0
+ fs-extra: 7.0.1
+ human-id: 1.0.2
+ is-ci: 3.0.1
+ meow: 6.1.1
+ outdent: 0.5.0
+ p-limit: 2.3.0
+ preferred-pm: 3.0.3
+ resolve-from: 5.0.0
+ semver: 5.7.1
+ spawndamnit: 2.0.0
+ term-size: 2.2.1
+ tty-table: 4.2.1
+ dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.5:
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/config@2.3.0:
+ resolution: {integrity: sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ==}
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.18.9
- dev: false
+ '@changesets/errors': 0.1.4
+ '@changesets/get-dependents-graph': 1.3.5
+ '@changesets/logger': 0.0.5
+ '@changesets/types': 5.2.1
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+ micromatch: 4.0.5
+ dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/errors@0.1.4:
+ resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==}
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- dev: false
+ extendable-error: 0.1.7
+ dev: true
- /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/get-dependents-graph@1.3.5:
+ resolution: {integrity: sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA==}
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ '@changesets/types': 5.2.1
+ '@manypkg/get-packages': 1.1.3
+ chalk: 2.4.2
+ fs-extra: 7.0.1
+ semver: 5.7.1
+ dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/get-release-plan@3.0.16:
+ resolution: {integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==}
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
+ '@babel/runtime': 7.21.5
+ '@changesets/assemble-release-plan': 5.2.3
+ '@changesets/config': 2.3.0
+ '@changesets/pre': 1.0.14
+ '@changesets/read': 0.5.9
+ '@changesets/types': 5.2.1
+ '@manypkg/get-packages': 1.1.3
+ dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/get-version-range-type@0.3.2:
+ resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==}
+ dev: true
+
+ /@changesets/git@2.0.0:
+ resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==}
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/runtime': 7.21.5
+ '@changesets/errors': 0.1.4
+ '@changesets/types': 5.2.1
+ '@manypkg/get-packages': 1.1.3
+ is-subdir: 1.2.0
+ micromatch: 4.0.5
+ spawndamnit: 2.0.0
+ dev: true
- /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/logger@0.0.5:
+ resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==}
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
+ chalk: 2.4.2
+ dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/parse@0.3.16:
+ resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==}
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
+ '@changesets/types': 5.2.1
+ js-yaml: 3.14.1
+ dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@changesets/pre@1.0.14:
+ resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==}
+ dependencies:
+ '@babel/runtime': 7.21.5
+ '@changesets/errors': 0.1.4
+ '@changesets/types': 5.2.1
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+ dev: true
+
+ /@changesets/read@0.5.9:
+ resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==}
+ dependencies:
+ '@babel/runtime': 7.21.5
+ '@changesets/git': 2.0.0
+ '@changesets/logger': 0.0.5
+ '@changesets/parse': 0.3.16
+ '@changesets/types': 5.2.1
+ chalk: 2.4.2
+ fs-extra: 7.0.1
+ p-filter: 2.1.0
+ dev: true
+
+ /@changesets/types@4.1.0:
+ resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
+ dev: true
+
+ /@changesets/types@5.2.1:
+ resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==}
+ dev: true
+
+ /@changesets/write@0.2.3:
+ resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==}
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/runtime': 7.21.5
+ '@changesets/types': 5.2.1
+ fs-extra: 7.0.1
+ human-id: 1.0.2
+ prettier: 2.7.1
+ dev: true
+
+ /@csstools/normalize.css@12.0.0:
+ resolution: {integrity: sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==}
dev: false
- /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.16):
+ resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.18.5
+ '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13)
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.5:
- resolution: {integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-color-function@1.1.1(postcss@8.4.16):
+ resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.16)
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
dev: false
- /@babel/plugin-transform-for-of/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.16):
+ resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
dev: false
- /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.10:
- resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.16):
+ resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
+ dev: false
- /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.16):
+ resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-plugin-utils': 7.17.12
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.16)
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
dev: false
- /@babel/plugin-transform-function-name/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.16):
+ resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6
- '@babel/helper-function-name': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
+ '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13)
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-nested-calc@1.0.0(postcss@8.4.16):
+ resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10
- '@babel/helper-function-name': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
+ dev: false
- /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.16):
+ resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
dev: false
- /@babel/plugin-transform-literals/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.16):
+ resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.16)
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
dev: false
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.16):
+ resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.3
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
+ dev: false
- /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.16):
+ resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
dev: false
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.16):
+ resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
+ dev: false
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.16):
+ resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==}
+ engines: {node: ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
dev: false
- /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.18.5:
- resolution: {integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==}
- engines: {node: '>=6.9.0'}
+ /@csstools/postcss-unset-value@1.0.2(postcss@8.4.16):
+ resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss: ^8.2
dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
+ postcss: 8.4.16
dev: false
- /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
- engines: {node: '>=6.9.0'}
+ /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.13):
+ resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==}
+ engines: {node: ^14 || ^16 || >=18}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ postcss-selector-parser: ^6.0.10
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-module-transforms': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
-
- /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-module-transforms': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.5:
- resolution: {integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-simple-access': 7.18.2
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-module-transforms': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-simple-access': 7.18.6
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
-
- /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-module-transforms': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-simple-access': 7.18.6
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-systemjs/7.18.5_@babel+core@7.18.5:
- resolution: {integrity: sha512-SEewrhPpcqMF1V7DhnEbhVJLrC+nnYfe1E0piZMZXBpxi9WvZqWGwpsk7JYP7wPWeqaBh4gyKlBhHJu3uz5g4Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-validator-identifier': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-systemjs/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-validator-identifier': 7.18.6
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.18.9
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-validator-identifier': 7.18.6
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
-
- /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.18.5:
- resolution: {integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-module-transforms': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- transitivePeerDependencies:
- - supports-color
-
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-module-transforms': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.6
-
- /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/plugin-transform-new-target/7.18.5_@babel+core@7.18.5:
- resolution: {integrity: sha512-TuRL5uGW4KXU6OsRj+mLp9BM7pO8e7SGNTEokQRRxHFkXYMFiy2jlKSZPFtI/mKORDzciH+hneskcSOp0gU8hg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
-
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-replace-supers': 7.16.7
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-replace-supers': 7.18.6
- transitivePeerDependencies:
- - supports-color
-
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-replace-supers': 7.18.6
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-parameters/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.10:
- resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
-
- /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
-
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/plugin-transform-react-constant-elements/7.17.6_@babel+core@7.18.5:
- resolution: {integrity: sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
-
- /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.5
- dev: false
-
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.10
-
- /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.5
- '@babel/types': 7.18.4
- dev: false
-
- /@babel/plugin-transform-react-jsx/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.10
- '@babel/types': 7.18.7
-
- /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
-
- /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.18.5:
- resolution: {integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- regenerator-transform: 0.15.0
- dev: false
-
- /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- regenerator-transform: 0.15.0
-
- /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- regenerator-transform: 0.15.0
- dev: false
-
- /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
-
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/plugin-transform-runtime/7.18.10_@babel+core@7.18.10:
- resolution: {integrity: sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.10
- babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10
- babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/plugin-transform-runtime/7.18.5_@babel+core@7.18.5:
- resolution: {integrity: sha512-Q17hHxXr2fplrE+5BSC1j1Fo5cOA8YeP8XW3/1paI8MzF/faZGh0MaH1KC4jLAvqLPamQWHB5/B7KqSLY1kuHA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.5
- babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.5
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.5
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
-
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- dev: false
-
- /@babel/plugin-transform-spread/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.6
- dev: false
-
- /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
-
- /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
-
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.5:
- resolution: {integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-template-literals/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
-
- /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-typeof-symbol/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
-
- /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.5:
- resolution: {integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-typescript/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.10
- transitivePeerDependencies:
- - supports-color
-
- /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.10:
- resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
-
- /@babel/plugin-transform-unicode-escapes/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.18.5:
- resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- dev: false
-
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.6
-
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- dev: false
-
- /@babel/preset-env/7.18.10_@babel+core@7.18.10:
- resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.18.8
- '@babel/core': 7.18.10
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.18.10
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.10
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.18.10
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.10
- '@babel/preset-modules': 0.1.5_@babel+core@7.18.10
- '@babel/types': 7.18.10
- babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.10
- babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10
- babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10
- core-js-compat: 3.24.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/preset-env/7.18.2_@babel+core@7.18.5:
- resolution: {integrity: sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.17.10
- '@babel/core': 7.18.5
- '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-proposal-async-generator-functions': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-proposal-class-static-block': 7.18.0_@babel+core@7.18.5
- '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-proposal-json-strings': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-proposal-logical-assignment-operators': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.5
- '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-import-assertions': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.5
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.5
- '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.18.5
- '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.18.5
- '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.5
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-duplicate-keys': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.5
- '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.5
- '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.5
- '@babel/plugin-transform-modules-systemjs': 7.18.5_@babel+core@7.18.5
- '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.5
- '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-new-target': 7.18.5_@babel+core@7.18.5
- '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.18.5
- '@babel/plugin-transform-reserved-words': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.5
- '@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.5
- '@babel/preset-modules': 0.1.5_@babel+core@7.18.5
- '@babel/types': 7.18.4
- babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.5
- babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.5
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.5
- core-js-compat: 3.22.5
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/preset-env/7.18.6_@babel+core@7.18.6:
- resolution: {integrity: sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.18.6
- '@babel/core': 7.18.6
- '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-async-generator-functions': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-export-namespace-from': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-object-rest-spread': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.6
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.6
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.6
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.6
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.6
- '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.6
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.6
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.6
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.6
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.6
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.6
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.6
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.6
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.6
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-block-scoping': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-classes': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-computed-properties': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-destructuring': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-duplicate-keys': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-for-of': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-function-name': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-literals': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-modules-systemjs': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-parameters': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-spread': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-template-literals': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-typeof-symbol': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-unicode-escapes': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.6
- '@babel/preset-modules': 0.1.5_@babel+core@7.18.6
- '@babel/types': 7.18.7
- babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.6
- babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.6
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.6
- core-js-compat: 3.23.3
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/preset-modules/0.1.5_@babel+core@7.18.10:
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10
- '@babel/types': 7.18.7
- esutils: 2.0.3
-
- /@babel/preset-modules/0.1.5_@babel+core@7.18.5:
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.5
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.5
- '@babel/types': 7.18.7
- esutils: 2.0.3
- dev: false
-
- /@babel/preset-modules/0.1.5_@babel+core@7.18.6:
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.6
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.6
- '@babel/types': 7.18.7
- esutils: 2.0.3
- dev: false
-
- /@babel/preset-react/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-h5U+rwreXtZaRBEQhW1hOJLMq8XNJBQ/9oymXiCXTuT/0uOwpbT0gUt+sXeOqoXBgNuUKI7TaObVwoEyWkpFgA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.5
- '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.18.5
- dev: false
-
- /@babel/preset-react/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.10
-
- /@babel/preset-typescript/7.17.12_@babel+core@7.18.5:
- resolution: {integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-typescript': 7.18.4_@babel+core@7.18.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/preset-typescript/7.18.6_@babel+core@7.18.10:
- resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.6
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-typescript': 7.18.6_@babel+core@7.18.10
- transitivePeerDependencies:
- - supports-color
-
- /@babel/runtime-corejs3/7.17.9:
- resolution: {integrity: sha512-WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- core-js-pure: 3.22.5
- regenerator-runtime: 0.13.9
- dev: false
-
- /@babel/runtime/7.18.3:
- resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==}
- engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: 0.13.9
-
- /@babel/runtime/7.18.6:
- resolution: {integrity: sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: 0.13.9
- dev: false
-
- /@babel/runtime/7.18.9:
- resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: 0.13.9
-
- /@babel/template/7.16.7:
- resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/parser': 7.18.5
- '@babel/types': 7.18.4
- dev: false
-
- /@babel/template/7.18.10:
- resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/parser': 7.18.11
- '@babel/types': 7.18.10
-
- /@babel/template/7.18.6:
- resolution: {integrity: sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/parser': 7.18.6
- '@babel/types': 7.18.7
-
- /@babel/traverse/7.17.10:
- resolution: {integrity: sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.10
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.17.10
- '@babel/types': 7.17.10
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/traverse/7.18.11:
- resolution: {integrity: sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.12
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.18.11
- '@babel/types': 7.18.10
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/traverse/7.18.5:
- resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.18.2
- '@babel/helper-environment-visitor': 7.18.2
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.18.5
- '@babel/types': 7.18.4
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/traverse/7.18.6:
- resolution: {integrity: sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.7
- '@babel/helper-environment-visitor': 7.18.6
- '@babel/helper-function-name': 7.18.6
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.18.6
- '@babel/types': 7.18.7
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/types/7.16.8:
- resolution: {integrity: sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.16.7
- to-fast-properties: 2.0.0
- dev: false
-
- /@babel/types/7.17.10:
- resolution: {integrity: sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.16.7
- to-fast-properties: 2.0.0
-
- /@babel/types/7.18.10:
- resolution: {integrity: sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.18.10
- '@babel/helper-validator-identifier': 7.18.6
- to-fast-properties: 2.0.0
-
- /@babel/types/7.18.4:
- resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.16.7
- to-fast-properties: 2.0.0
+ postcss-selector-parser: 6.0.13
dev: false
- /@babel/types/7.18.7:
- resolution: {integrity: sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.18.6
- to-fast-properties: 2.0.0
+ /@emotion/hash@0.9.1:
+ resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==}
+ dev: true
- /@bcoe/v8-coverage/0.2.3:
- resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
+ /@esbuild/android-arm64@0.17.19:
+ resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ optional: true
- /@changesets/apply-release-plan/6.0.4:
- resolution: {integrity: sha512-PutV/ymf8cZMqvaLe/Lh5cP3kBQ9FZl6oGQ3qRDxWD1ML+/uH3jrCE7S7Zw7IVSXkD0lnMD+1dAX7fsOJ6ZvgA==}
- dependencies:
- '@babel/runtime': 7.18.9
- '@changesets/config': 2.1.1
- '@changesets/get-version-range-type': 0.3.2
- '@changesets/git': 1.4.1
- '@changesets/types': 5.1.0
- '@manypkg/get-packages': 1.1.3
- detect-indent: 6.1.0
- fs-extra: 7.0.1
- lodash.startcase: 4.4.0
- outdent: 0.5.0
- prettier: 1.19.1
- resolve-from: 5.0.0
- semver: 5.7.1
+ /@esbuild/android-arm64@0.17.6:
+ resolution: {integrity: sha512-YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/assemble-release-plan/5.2.0:
- resolution: {integrity: sha512-ewY24PEbSec2eKX0+KM7eyENA2hUUp6s4LF9p/iBxTtc+TX2Xbx5rZnlLKZkc8tpuQ3PZbyjLFXWhd1PP6SjCg==}
- dependencies:
- '@babel/runtime': 7.18.9
- '@changesets/errors': 0.1.4
- '@changesets/get-dependents-graph': 1.3.3
- '@changesets/types': 5.1.0
- '@manypkg/get-packages': 1.1.3
- semver: 5.7.1
- dev: true
+ /@esbuild/android-arm@0.17.19:
+ resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ optional: true
- /@changesets/changelog-git/0.1.12:
- resolution: {integrity: sha512-Xv2CPjTBmwjl8l4ZyQ3xrsXZMq8WafPUpEonDpTmcb24XY8keVzt7ZSCJuDz035EiqrjmDKDhODoQ6XiHudlig==}
- dependencies:
- '@changesets/types': 5.1.0
+ /@esbuild/android-arm@0.17.6:
+ resolution: {integrity: sha512-bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/cli/2.24.2:
- resolution: {integrity: sha512-Bya7bnxF8Sz+O25M6kseAludVsCy5nXSW9u2Lbje/XbJTyU5q/xwIiXF9aTUzVi/4jyKoKoOasx7B1/z+NJLzg==}
- hasBin: true
- dependencies:
- '@babel/runtime': 7.18.9
- '@changesets/apply-release-plan': 6.0.4
- '@changesets/assemble-release-plan': 5.2.0
- '@changesets/changelog-git': 0.1.12
- '@changesets/config': 2.1.1
- '@changesets/errors': 0.1.4
- '@changesets/get-dependents-graph': 1.3.3
- '@changesets/get-release-plan': 3.0.13
- '@changesets/git': 1.4.1
- '@changesets/logger': 0.0.5
- '@changesets/pre': 1.0.12
- '@changesets/read': 0.5.7
- '@changesets/types': 5.1.0
- '@changesets/write': 0.1.9
- '@manypkg/get-packages': 1.1.3
- '@types/is-ci': 3.0.0
- '@types/semver': 6.2.3
- ansi-colors: 4.1.3
- chalk: 2.4.2
- enquirer: 2.3.6
- external-editor: 3.1.0
- fs-extra: 7.0.1
- human-id: 1.0.2
- is-ci: 3.0.1
- meow: 6.1.1
- outdent: 0.5.0
- p-limit: 2.3.0
- preferred-pm: 3.0.3
- resolve-from: 5.0.0
- semver: 5.7.1
- spawndamnit: 2.0.0
- term-size: 2.2.1
- tty-table: 4.1.6
- dev: true
+ /@esbuild/android-x64@0.17.19:
+ resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ optional: true
- /@changesets/config/2.1.1:
- resolution: {integrity: sha512-nSRINMqHpdtBpNVT9Eh9HtmLhOwOTAeSbaqKM5pRmGfsvyaROTBXV84ujF9UsWNlV71YxFbxTbeZnwXSGQlyTw==}
- dependencies:
- '@changesets/errors': 0.1.4
- '@changesets/get-dependents-graph': 1.3.3
- '@changesets/logger': 0.0.5
- '@changesets/types': 5.1.0
- '@manypkg/get-packages': 1.1.3
- fs-extra: 7.0.1
- micromatch: 4.0.5
+ /@esbuild/android-x64@0.17.6:
+ resolution: {integrity: sha512-MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/errors/0.1.4:
- resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==}
- dependencies:
- extendable-error: 0.1.7
+ /@esbuild/darwin-arm64@0.17.19:
+ resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/darwin-arm64@0.17.6:
+ resolution: {integrity: sha512-bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/get-dependents-graph/1.3.3:
- resolution: {integrity: sha512-h4fHEIt6X+zbxdcznt1e8QD7xgsXRAXd2qzLlyxoRDFSa6SxJrDAUyh7ZUNdhjBU4Byvp4+6acVWVgzmTy4UNQ==}
- dependencies:
- '@changesets/types': 5.1.0
- '@manypkg/get-packages': 1.1.3
- chalk: 2.4.2
- fs-extra: 7.0.1
- semver: 5.7.1
+ /@esbuild/darwin-x64@0.17.19:
+ resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/darwin-x64@0.17.6:
+ resolution: {integrity: sha512-xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/get-release-plan/3.0.13:
- resolution: {integrity: sha512-Zl/UN4FUzb5LwmzhO2STRijJT5nQCN4syPEs0p1HSIR+O2iVOzes+2yTLF2zGiOx8qPOsFx/GRSAvuhSzm+9ig==}
- dependencies:
- '@babel/runtime': 7.18.9
- '@changesets/assemble-release-plan': 5.2.0
- '@changesets/config': 2.1.1
- '@changesets/pre': 1.0.12
- '@changesets/read': 0.5.7
- '@changesets/types': 5.1.0
- '@manypkg/get-packages': 1.1.3
+ /@esbuild/freebsd-arm64@0.17.19:
+ resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/freebsd-arm64@0.17.6:
+ resolution: {integrity: sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/get-version-range-type/0.3.2:
- resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==}
+ /@esbuild/freebsd-x64@0.17.19:
+ resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/freebsd-x64@0.17.6:
+ resolution: {integrity: sha512-Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/git/1.4.1:
- resolution: {integrity: sha512-GWwRXEqBsQ3nEYcyvY/u2xUK86EKAevSoKV/IhELoZ13caZ1A1TSak/71vyKILtzuLnFPk5mepP5HjBxr7lZ9Q==}
- dependencies:
- '@babel/runtime': 7.18.9
- '@changesets/errors': 0.1.4
- '@changesets/types': 5.1.0
- '@manypkg/get-packages': 1.1.3
- is-subdir: 1.2.0
- spawndamnit: 2.0.0
+ /@esbuild/linux-arm64@0.17.19:
+ resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-arm64@0.17.6:
+ resolution: {integrity: sha512-bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/logger/0.0.5:
- resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==}
- dependencies:
- chalk: 2.4.2
+ /@esbuild/linux-arm@0.17.19:
+ resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-arm@0.17.6:
+ resolution: {integrity: sha512-7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/parse/0.3.14:
- resolution: {integrity: sha512-SWnNVyC9vz61ueTbuxvA6b4HXcSx2iaWr2VEa37lPg1Vw+cEyQp7lOB219P7uow1xFfdtIEEsxbzXnqLAAaY8w==}
- dependencies:
- '@changesets/types': 5.1.0
- js-yaml: 3.14.1
+ /@esbuild/linux-ia32@0.17.19:
+ resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-ia32@0.17.6:
+ resolution: {integrity: sha512-ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/pre/1.0.12:
- resolution: {integrity: sha512-RFzWYBZx56MtgMesXjxx7ymyI829/rcIw/41hvz3VJPnY8mDscN7RJyYu7Xm7vts2Fcd+SRcO0T/Ws3I1/6J7g==}
- dependencies:
- '@babel/runtime': 7.18.9
- '@changesets/errors': 0.1.4
- '@changesets/types': 5.1.0
- '@manypkg/get-packages': 1.1.3
- fs-extra: 7.0.1
+ /@esbuild/linux-loong64@0.17.19:
+ resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-loong64@0.17.6:
+ resolution: {integrity: sha512-y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/read/0.5.7:
- resolution: {integrity: sha512-Iteg0ccTPpkJ+qFzY97k7qqdVE5Kz30TqPo9GibpBk2g8tcLFUqf+Qd0iXPLcyhUZpPL1U6Hia1gINHNKIKx4g==}
- dependencies:
- '@babel/runtime': 7.18.9
- '@changesets/git': 1.4.1
- '@changesets/logger': 0.0.5
- '@changesets/parse': 0.3.14
- '@changesets/types': 5.1.0
- chalk: 2.4.2
- fs-extra: 7.0.1
- p-filter: 2.1.0
+ /@esbuild/linux-mips64el@0.17.19:
+ resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-mips64el@0.17.6:
+ resolution: {integrity: sha512-09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/types/4.1.0:
- resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
+ /@esbuild/linux-ppc64@0.17.19:
+ resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-ppc64@0.17.6:
+ resolution: {integrity: sha512-AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
+
+ /@esbuild/linux-riscv64@0.17.19:
+ resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
- /@changesets/types/5.1.0:
- resolution: {integrity: sha512-uUByGATZCdaPkaO9JkBsgGDjEvHyY2Sb0e/J23+cwxBi5h0fxpLF/HObggO/Fw8T2nxK6zDfJbPsdQt5RwYFJA==}
+ /@esbuild/linux-riscv64@0.17.6:
+ resolution: {integrity: sha512-Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@changesets/write/0.1.9:
- resolution: {integrity: sha512-E90ZrsrfJVOOQaP3Mm5Xd7uDwBAqq3z5paVEavTHKA8wxi7NAL8CmjgbGxSFuiP7ubnJA2BuHlrdE4z86voGOg==}
- dependencies:
- '@babel/runtime': 7.18.9
- '@changesets/types': 5.1.0
- fs-extra: 7.0.1
- human-id: 1.0.2
- prettier: 1.19.1
+ /@esbuild/linux-s390x@0.17.19:
+ resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-s390x@0.17.6:
+ resolution: {integrity: sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@csstools/normalize.css/12.0.0:
- resolution: {integrity: sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==}
- dev: false
-
- /@csstools/postcss-color-function/1.1.0_postcss@8.4.14:
- resolution: {integrity: sha512-5D5ND/mZWcQoSfYnSPsXtuiFxhzmhxt6pcjrFLJyldj+p0ZN2vvRpYNX+lahFTtMhAYOa2WmkdGINr0yP0CvGA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.4
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14
- postcss: 8.4.14
- postcss-value-parser: 4.2.0
- dev: false
+ /@esbuild/linux-x64@0.17.19:
+ resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
- /@csstools/postcss-font-format-keywords/1.0.0_postcss@8.4.14:
- resolution: {integrity: sha512-oO0cZt8do8FdVBX8INftvIA4lUrKUSCcWUf9IwH9IPWOgKT22oAZFXeHLoDK7nhB2SmkNycp5brxfNMRLIhd6Q==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
- dependencies:
- postcss: 8.4.14
- postcss-value-parser: 4.2.0
- dev: false
+ /@esbuild/linux-x64@0.17.6:
+ resolution: {integrity: sha512-a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@csstools/postcss-hwb-function/1.0.0_postcss@8.4.14:
- resolution: {integrity: sha512-VSTd7hGjmde4rTj1rR30sokY3ONJph1reCBTUXqeW1fKwETPy1x4t/XIeaaqbMbC5Xg4SM/lyXZ2S8NELT2TaA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
- dependencies:
- postcss: 8.4.14
- postcss-value-parser: 4.2.0
- dev: false
+ /@esbuild/netbsd-x64@0.17.19:
+ resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ optional: true
- /@csstools/postcss-ic-unit/1.0.0_postcss@8.4.14:
- resolution: {integrity: sha512-i4yps1mBp2ijrx7E96RXrQXQQHm6F4ym1TOD0D69/sjDjZvQ22tqiEvaNw7pFZTUO5b9vWRHzbHzP9+UKuw+bA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14
- postcss: 8.4.14
- postcss-value-parser: 4.2.0
- dev: false
+ /@esbuild/netbsd-x64@0.17.6:
+ resolution: {integrity: sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@csstools/postcss-is-pseudo-class/2.0.3_postcss@8.4.14:
- resolution: {integrity: sha512-wMQ3GMWrJyRQfvBJsD38ndF/nwHT32xevSn8w2X+iCoWqmhhoj0K7HgdGW8XQhah6sdENBa8yS9gRosdezaQZw==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.4
- dependencies:
- '@csstools/selector-specificity': 1.0.0_444rcjjorr3kpoqtvoodsr46pu
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
- dev: false
+ /@esbuild/openbsd-x64@0.17.19:
+ resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ optional: true
- /@csstools/postcss-normalize-display-values/1.0.0_postcss@8.4.14:
- resolution: {integrity: sha512-bX+nx5V8XTJEmGtpWTO6kywdS725t71YSLlxWt78XoHUbELWgoCXeOFymRJmL3SU1TLlKSIi7v52EWqe60vJTQ==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
- dependencies:
- postcss: 8.4.14
- postcss-value-parser: 4.2.0
- dev: false
+ /@esbuild/openbsd-x64@0.17.6:
+ resolution: {integrity: sha512-xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@csstools/postcss-oklab-function/1.1.0_postcss@8.4.14:
- resolution: {integrity: sha512-e/Q5HopQzmnQgqimG9v3w2IG4VRABsBq3itOcn4bnm+j4enTgQZ0nWsaH/m9GV2otWGQ0nwccYL5vmLKyvP1ww==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.4
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14
- postcss: 8.4.14
- postcss-value-parser: 4.2.0
- dev: false
+ /@esbuild/sunos-x64@0.17.19:
+ resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ optional: true
- /@csstools/postcss-progressive-custom-properties/1.3.0_postcss@8.4.14:
- resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
- dependencies:
- postcss: 8.4.14
- postcss-value-parser: 4.2.0
- dev: false
+ /@esbuild/sunos-x64@0.17.6:
+ resolution: {integrity: sha512-gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@csstools/postcss-stepped-value-functions/1.0.0_postcss@8.4.14:
- resolution: {integrity: sha512-q8c4bs1GumAiRenmFjASBcWSLKrbzHzWl6C2HcaAxAXIiL2rUlUWbqQZUjwVG5tied0rld19j/Mm90K3qI26vw==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
- dependencies:
- postcss: 8.4.14
- postcss-value-parser: 4.2.0
- dev: false
+ /@esbuild/win32-arm64@0.17.19:
+ resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
- /@csstools/postcss-unset-value/1.0.1_postcss@8.4.14:
- resolution: {integrity: sha512-f1G1WGDXEU/RN1TWAxBPQgQudtLnLQPyiWdtypkPC+mVYNKFKH/HYXSxH4MVNqwF8M0eDsoiU7HumJHCg/L/jg==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
- dependencies:
- postcss: 8.4.14
- dev: false
+ /@esbuild/win32-arm64@0.17.6:
+ resolution: {integrity: sha512-G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@csstools/selector-specificity/1.0.0_444rcjjorr3kpoqtvoodsr46pu:
- resolution: {integrity: sha512-RkYG5KiGNX0fJ5YoI0f4Wfq2Yo74D25Hru4fxTOioYdQvHBxcrrtTTyT5Ozzh2ejcNrhFy7IEts2WyEY7yi5yw==}
- engines: {node: ^12 || ^14 || >=16}
- peerDependencies:
- postcss: ^8.3
- postcss-selector-parser: ^6.0.10
- dependencies:
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
- dev: false
+ /@esbuild/win32-ia32@0.17.19:
+ resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ optional: true
- /@emotion/hash/0.8.0:
- resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
+ /@esbuild/win32-ia32@0.17.6:
+ resolution: {integrity: sha512-96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /@esbuild/linux-loong64/0.14.53:
- resolution: {integrity: sha512-W2dAL6Bnyn4xa/QRSU3ilIK4EzD5wgYXKXJiS1HDF5vU3675qc2bvFyLwbUcdmssDveyndy7FbitrCoiV/eMLg==}
+ /@esbuild/win32-x64@0.17.19:
+ resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==}
engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/win32-x64@0.17.6:
+ resolution: {integrity: sha512-n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
requiresBuild: true
+ dev: true
optional: true
- /@eslint-community/eslint-utils/4.4.0_eslint@8.43.0:
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.43.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4856,11 +4018,11 @@ packages:
eslint: 8.43.0
eslint-visitor-keys: 3.4.1
- /@eslint-community/regexpp/4.5.1:
+ /@eslint-community/regexpp@4.5.1:
resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- /@eslint/eslintrc/2.0.3:
+ /@eslint/eslintrc@2.0.3:
resolution: {integrity: sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -4868,7 +4030,7 @@ packages:
debug: 4.3.4
espree: 9.5.2
globals: 13.20.0
- ignore: 5.2.0
+ ignore: 5.2.4
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
@@ -4876,47 +4038,39 @@ packages:
transitivePeerDependencies:
- supports-color
- /@eslint/js/8.43.0:
+ /@eslint/js@8.43.0:
resolution: {integrity: sha512-s2UHCoiXfxMvmfzqoN+vrQ84ahUSYde9qNO1MdxmoEhyHWsfmwOpFlwYV+ePJEVc7gFnATGUi376WowX1N7tFg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /@floating-ui/core/0.7.3:
- resolution: {integrity: sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==}
+ /@floating-ui/core@1.2.6:
+ resolution: {integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg==}
dev: false
- /@floating-ui/dom/0.5.4:
- resolution: {integrity: sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==}
+ /@floating-ui/dom@1.2.9:
+ resolution: {integrity: sha512-sosQxsqgxMNkV3C+3UqTS6LxP7isRLwX8WMepp843Rb3/b0Wz8+MdUkxJksByip3C2WwLugLHN1b4ibn//zKwQ==}
dependencies:
- '@floating-ui/core': 0.7.3
+ '@floating-ui/core': 1.2.6
dev: false
- /@floating-ui/react-dom/0.7.2:
- resolution: {integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==}
+ /@floating-ui/react-dom@2.0.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Ke0oU3SeuABC2C4OFu2mSAwHIP5WUiV98O9YWoHV4Q5aT6E9k06DV0Khi5uYspR8xmmBk08t8ZDcz3TR3ARkEg==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- '@floating-ui/dom': 0.5.4
- use-isomorphic-layout-effect: 1.1.2
- transitivePeerDependencies:
- - '@types/react'
- dev: false
-
- /@heroicons/react/1.0.6:
- resolution: {integrity: sha512-JJCXydOFWMDpCP4q13iEplA503MQO3xLoZiKum+955ZCtHINWnx26CUxVxxFQu/uLb4LW3ge15ZpzIkXKkJ8oQ==}
- peerDependencies:
- react: '>= 16'
+ '@floating-ui/dom': 1.2.9
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@heroicons/react/1.0.6_react@18.2.0:
- resolution: {integrity: sha512-JJCXydOFWMDpCP4q13iEplA503MQO3xLoZiKum+955ZCtHINWnx26CUxVxxFQu/uLb4LW3ge15ZpzIkXKkJ8oQ==}
+ /@heroicons/react@2.0.18(react@18.2.0):
+ resolution: {integrity: sha512-7TyMjRrZZMBPa+/5Y8lN0iyvUU/01PeMGX2+RE7cQWpEUIcb4QotzUObFkJDejj/HUH4qjP/eQ0gzzKs2f+6Yw==}
peerDependencies:
react: '>= 16'
dependencies:
react: 18.2.0
- dev: false
- /@humanwhocodes/config-array/0.11.10:
+ /@humanwhocodes/config-array@0.11.10:
resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==}
engines: {node: '>=10.10.0'}
dependencies:
@@ -4926,14 +4080,14 @@ packages:
transitivePeerDependencies:
- supports-color
- /@humanwhocodes/module-importer/1.0.1:
+ /@humanwhocodes/module-importer@1.0.1:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- /@humanwhocodes/object-schema/1.2.1:
+ /@humanwhocodes/object-schema@1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
- /@istanbuljs/load-nyc-config/1.1.0:
+ /@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
dependencies:
@@ -4943,11 +4097,11 @@ packages:
js-yaml: 3.14.1
resolve-from: 5.0.0
- /@istanbuljs/schema/0.1.3:
+ /@istanbuljs/schema@0.1.3:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
- /@jest/console/27.5.1:
+ /@jest/console@27.5.1:
resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -4959,31 +4113,18 @@ packages:
slash: 3.0.0
dev: false
- /@jest/console/28.1.0:
- resolution: {integrity: sha512-tscn3dlJFGay47kb4qVruQg/XWlmvU0xp3EJOjzzY+sBaI+YgwKcvAmTcyYU7xEiLLIY5HCdWRooAL8dqkFlDA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@jest/types': 28.1.0
- '@types/node': 18.0.1
- chalk: 4.1.2
- jest-message-util: 28.1.0
- jest-util: 28.1.0
- slash: 3.0.0
- dev: false
-
- /@jest/console/28.1.3:
+ /@jest/console@28.1.3:
resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/types': 28.1.3
- '@types/node': 18.6.4
+ '@types/node': 18.0.1
chalk: 4.1.2
jest-message-util: 28.1.3
jest-util: 28.1.3
slash: 3.0.0
- dev: true
- /@jest/core/27.5.1:
+ /@jest/core@27.5.1:
resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
@@ -5002,7 +4143,7 @@ packages:
chalk: 4.1.2
emittery: 0.8.1
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 27.5.1
jest-config: 27.5.1
jest-haste-map: 27.5.1
@@ -5028,7 +4169,7 @@ packages:
- utf-8-validate
dev: false
- /@jest/core/28.1.3:
+ /@jest/core@28.1.3:
resolution: {integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -5042,14 +4183,14 @@ packages:
'@jest/test-result': 28.1.3
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.6.4
+ '@types/node': 18.0.1
ansi-escapes: 4.3.2
chalk: 4.1.2
- ci-info: 3.3.2
+ ci-info: 3.8.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 28.1.3
- jest-config: 28.1.3_@types+node@18.6.4
+ jest-config: 28.1.3(@types/node@18.0.1)
jest-haste-map: 28.1.3
jest-message-util: 28.1.3
jest-regex-util: 28.0.2
@@ -5071,7 +4212,7 @@ packages:
- ts-node
dev: true
- /@jest/environment/27.5.1:
+ /@jest/environment@27.5.1:
resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -5081,24 +4222,24 @@ packages:
jest-mock: 27.5.1
dev: false
- /@jest/environment/28.1.3:
+ /@jest/environment@28.1.3:
resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/fake-timers': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.6.4
+ '@types/node': 18.0.1
jest-mock: 28.1.3
dev: true
- /@jest/expect-utils/28.1.3:
+ /@jest/expect-utils@28.1.3:
resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
jest-get-type: 28.0.2
dev: true
- /@jest/expect/28.1.3:
+ /@jest/expect@28.1.3:
resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -5108,7 +4249,7 @@ packages:
- supports-color
dev: true
- /@jest/fake-timers/27.5.1:
+ /@jest/fake-timers@27.5.1:
resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -5120,19 +4261,19 @@ packages:
jest-util: 27.5.1
dev: false
- /@jest/fake-timers/28.1.3:
+ /@jest/fake-timers@28.1.3:
resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/types': 28.1.3
'@sinonjs/fake-timers': 9.1.2
- '@types/node': 18.6.4
+ '@types/node': 18.0.1
jest-message-util: 28.1.3
jest-mock: 28.1.3
jest-util: 28.1.3
dev: true
- /@jest/globals/27.5.1:
+ /@jest/globals@27.5.1:
resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -5141,7 +4282,7 @@ packages:
expect: 27.5.1
dev: false
- /@jest/globals/28.1.3:
+ /@jest/globals@28.1.3:
resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -5152,7 +4293,7 @@ packages:
- supports-color
dev: true
- /@jest/reporters/27.5.1:
+ /@jest/reporters@27.5.1:
resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
@@ -5171,12 +4312,12 @@ packages:
collect-v8-coverage: 1.0.1
exit: 0.1.2
glob: 7.2.3
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
istanbul-lib-coverage: 3.2.0
- istanbul-lib-instrument: 5.2.0
+ istanbul-lib-instrument: 5.2.1
istanbul-lib-report: 3.0.0
istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.4
+ istanbul-reports: 3.1.5
jest-haste-map: 27.5.1
jest-resolve: 27.5.1
jest-util: 27.5.1
@@ -5190,7 +4331,7 @@ packages:
- supports-color
dev: false
- /@jest/reporters/28.1.3:
+ /@jest/reporters@28.1.3:
resolution: {integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -5204,15 +4345,15 @@ packages:
'@jest/test-result': 28.1.3
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
- '@jridgewell/trace-mapping': 0.3.14
- '@types/node': 18.6.4
+ '@jridgewell/trace-mapping': 0.3.18
+ '@types/node': 18.0.1
chalk: 4.1.2
collect-v8-coverage: 1.0.1
exit: 0.1.2
glob: 7.2.3
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
istanbul-lib-coverage: 3.2.0
- istanbul-lib-instrument: 5.2.0
+ istanbul-lib-instrument: 5.2.1
istanbul-lib-report: 3.0.0
istanbul-lib-source-maps: 4.0.1
istanbul-reports: 3.1.5
@@ -5223,43 +4364,42 @@ packages:
string-length: 4.0.2
strip-ansi: 6.0.1
terminal-link: 2.1.1
- v8-to-istanbul: 9.0.1
+ v8-to-istanbul: 9.1.0
transitivePeerDependencies:
- supports-color
dev: true
- /@jest/schemas/28.0.2:
- resolution: {integrity: sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA==}
+ /@jest/schemas@28.1.3:
+ resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@sinclair/typebox': 0.23.5
- dev: false
+ '@sinclair/typebox': 0.24.51
- /@jest/schemas/28.1.3:
- resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/schemas@29.4.3:
+ resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@sinclair/typebox': 0.24.27
+ '@sinclair/typebox': 0.25.24
- /@jest/source-map/27.5.1:
+ /@jest/source-map@27.5.1:
resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
callsites: 3.1.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
source-map: 0.6.1
dev: false
- /@jest/source-map/28.1.2:
+ /@jest/source-map@28.1.2:
resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@jridgewell/trace-mapping': 0.3.14
+ '@jridgewell/trace-mapping': 0.3.18
callsites: 3.1.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
dev: true
- /@jest/test-result/27.5.1:
+ /@jest/test-result@27.5.1:
resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -5269,17 +4409,7 @@ packages:
collect-v8-coverage: 1.0.1
dev: false
- /@jest/test-result/28.1.0:
- resolution: {integrity: sha512-sBBFIyoPzrZho3N+80P35A5oAkSKlGfsEFfXFWuPGBsW40UAjCkGakZhn4UQK4iQlW2vgCDMRDOob9FGKV8YoQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@jest/console': 28.1.0
- '@jest/types': 28.1.0
- '@types/istanbul-lib-coverage': 2.0.4
- collect-v8-coverage: 1.0.1
- dev: false
-
- /@jest/test-result/28.1.3:
+ /@jest/test-result@28.1.3:
resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -5287,41 +4417,40 @@ packages:
'@jest/types': 28.1.3
'@types/istanbul-lib-coverage': 2.0.4
collect-v8-coverage: 1.0.1
- dev: true
- /@jest/test-sequencer/27.5.1:
+ /@jest/test-sequencer@27.5.1:
resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/test-result': 27.5.1
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-haste-map: 27.5.1
jest-runtime: 27.5.1
transitivePeerDependencies:
- supports-color
dev: false
- /@jest/test-sequencer/28.1.3:
+ /@jest/test-sequencer@28.1.3:
resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/test-result': 28.1.3
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-haste-map: 28.1.3
slash: 3.0.0
dev: true
- /@jest/transform/27.5.1:
+ /@jest/transform@27.5.1:
resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/core': 7.18.5
+ '@babel/core': 7.18.10
'@jest/types': 27.5.1
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
fast-json-stable-stringify: 2.1.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-haste-map: 27.5.1
jest-regex-util: 27.5.1
jest-util: 27.5.1
@@ -5334,169 +4463,117 @@ packages:
- supports-color
dev: false
- /@jest/transform/28.1.3:
+ /@jest/transform@28.1.3:
resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@babel/core': 7.18.10
+ '@babel/core': 7.21.8
'@jest/types': 28.1.3
- '@jridgewell/trace-mapping': 0.3.14
+ '@jridgewell/trace-mapping': 0.3.18
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
fast-json-stable-stringify: 2.1.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-haste-map: 28.1.3
jest-regex-util: 28.0.2
jest-util: 28.1.3
micromatch: 4.0.5
pirates: 4.0.5
slash: 3.0.0
- write-file-atomic: 4.0.1
+ write-file-atomic: 4.0.2
transitivePeerDependencies:
- supports-color
dev: true
- /@jest/types/27.5.1:
+ /@jest/types@27.5.1:
resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
'@types/node': 18.0.1
- '@types/yargs': 16.0.4
+ '@types/yargs': 16.0.5
chalk: 4.1.2
dev: false
- /@jest/types/28.1.0:
- resolution: {integrity: sha512-xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA==}
+ /@jest/types@28.1.3:
+ resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@jest/schemas': 28.0.2
+ '@jest/schemas': 28.1.3
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 17.0.45
- '@types/yargs': 17.0.10
+ '@types/node': 18.0.1
+ '@types/yargs': 17.0.24
chalk: 4.1.2
- dev: false
- /@jest/types/28.1.3:
- resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/types@29.5.0:
+ resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/schemas': 28.1.3
+ '@jest/schemas': 29.4.3
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 18.6.4
- '@types/yargs': 17.0.11
+ '@types/node': 20.2.3
+ '@types/yargs': 17.0.24
chalk: 4.1.2
- dev: true
-
- /@jridgewell/gen-mapping/0.1.1:
- resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.14
-
- /@jridgewell/gen-mapping/0.3.1:
- resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.1.1
- '@jridgewell/sourcemap-codec': 1.4.13
- '@jridgewell/trace-mapping': 0.3.13
- dev: false
- /@jridgewell/gen-mapping/0.3.2:
- resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
+ /@jridgewell/gen-mapping@0.3.3:
+ resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.14
- '@jridgewell/trace-mapping': 0.3.14
-
- /@jridgewell/resolve-uri/3.0.5:
- resolution: {integrity: sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==}
- engines: {node: '>=6.0.0'}
- dev: false
-
- /@jridgewell/resolve-uri/3.0.7:
- resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==}
- engines: {node: '>=6.0.0'}
- dev: false
-
- /@jridgewell/resolve-uri/3.0.8:
- resolution: {integrity: sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==}
- engines: {node: '>=6.0.0'}
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.18
- /@jridgewell/set-array/1.1.1:
- resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==}
+ /@jridgewell/resolve-uri@3.1.0:
+ resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
- dev: false
- /@jridgewell/set-array/1.1.2:
+ /@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map/0.3.2:
- resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
+ /@jridgewell/source-map@0.3.3:
+ resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==}
dependencies:
- '@jridgewell/gen-mapping': 0.3.2
- '@jridgewell/trace-mapping': 0.3.14
-
- /@jridgewell/sourcemap-codec/1.4.11:
- resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==}
- dev: false
-
- /@jridgewell/sourcemap-codec/1.4.13:
- resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==}
- dev: false
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.18
- /@jridgewell/sourcemap-codec/1.4.14:
+ /@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
- /@jridgewell/trace-mapping/0.3.13:
- resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==}
- dependencies:
- '@jridgewell/resolve-uri': 3.0.7
- '@jridgewell/sourcemap-codec': 1.4.13
- dev: false
+ /@jridgewell/sourcemap-codec@1.4.15:
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
- /@jridgewell/trace-mapping/0.3.14:
- resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==}
+ /@jridgewell/trace-mapping@0.3.18:
+ resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
dependencies:
- '@jridgewell/resolve-uri': 3.0.8
+ '@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
- /@jridgewell/trace-mapping/0.3.4:
- resolution: {integrity: sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==}
- dependencies:
- '@jridgewell/resolve-uri': 3.0.5
- '@jridgewell/sourcemap-codec': 1.4.11
- dev: false
-
- /@juggle/resize-observer/3.3.1:
- resolution: {integrity: sha512-zMM9Ds+SawiUkakS7y94Ymqx+S0ORzpG3frZirN3l+UlXUmSUR7hF4wxCVqW+ei94JzV5kt0uXBcoOEAuiydrw==}
+ /@juggle/resize-observer@3.4.0:
+ resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
dev: false
- /@leichtgewicht/ip-codec/2.0.4:
+ /@leichtgewicht/ip-codec@2.0.4:
resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
dev: false
- /@manypkg/find-root/1.1.0:
+ /@manypkg/find-root@1.1.0:
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.21.5
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
dev: true
- /@manypkg/get-packages/1.1.3:
+ /@manypkg/get-packages@1.1.3:
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.21.5
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -5504,83 +4581,104 @@ packages:
read-yaml-file: 1.1.0
dev: true
- /@monaco-editor/loader/1.3.2:
- resolution: {integrity: sha512-BTDbpHl3e47r3AAtpfVFTlAi7WXv4UQ/xZmz8atKl4q7epQV5e7+JbigFDViWF71VBi4IIBdcWP57Hj+OWuc9g==}
+ /@mkeeorg/postcss-prefixer@2.1.3(postcss@8.4.16):
+ resolution: {integrity: sha512-r03EqVyWB6i8I6IwoCr9K0PEunM/yYI2FTSISuJ++NMThlCfZvjA4usyyNyqs9eHUZZdRHNduzvZEQz+a+fu5Q==}
+ engines: {node: ^10 || ^12 || >=14}
+ peerDependencies:
+ postcss: ^8.0.0
+ dependencies:
+ css-selector-tokenizer: 0.7.3
+ postcss: 8.4.16
+ dev: true
+
+ /@monaco-editor/loader@1.3.3(monaco-editor@0.38.0):
+ resolution: {integrity: sha512-6KKF4CTzcJiS8BJwtxtfyYt9shBiEv32ateQ9T4UVogwn4HM/uPo9iJd2Dmbkpz8CM6Y0PDUpjnZzCwC+eYo2Q==}
peerDependencies:
monaco-editor: '>= 0.21.0 < 1'
dependencies:
+ monaco-editor: 0.38.0
state-local: 1.0.7
dev: false
- /@monaco-editor/react/4.4.5:
- resolution: {integrity: sha512-IImtzU7sRc66OOaQVCG+5PFHkSWnnhrUWGBuH6zNmH2h0YgmAhcjHZQc/6MY9JWEbUtVF1WPBMJ9u1XuFbRrVA==}
+ /@monaco-editor/react@4.5.1(monaco-editor@0.38.0)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-NNDFdP+2HojtNhCkRfE6/D6ro6pBNihaOzMbGK84lNWzRu+CfBjwzGt4jmnqimLuqp5yE5viHS2vi+QOAnD5FQ==}
peerDependencies:
monaco-editor: '>= 0.25.0 < 1'
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@monaco-editor/loader': 1.3.2
- prop-types: 15.7.2
+ '@monaco-editor/loader': 1.3.3(monaco-editor@0.38.0)
+ monaco-editor: 0.38.0
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@mswjs/cookies/0.2.1:
- resolution: {integrity: sha512-0tDfcPw5/s7QsNQqS3knAvAD5w5PF1nNPagRhKO/yECY+sMbJxoC2sLWnH7Lzmh52mTSVLKDhd1r92Q3kfljnQ==}
+ /@mswjs/cookies@0.2.2:
+ resolution: {integrity: sha512-mlN83YSrcFgk7Dm1Mys40DLssI1KdJji2CMKN8eOlBqsTADYzj2+jWzsANsUTFbxDMWPD5e9bfA1RGqBpS3O1g==}
engines: {node: '>=14'}
dependencies:
'@types/set-cookie-parser': 2.4.2
- set-cookie-parser: 2.5.0
+ set-cookie-parser: 2.6.0
- /@mswjs/interceptors/0.16.6:
+ /@mswjs/interceptors@0.16.6:
resolution: {integrity: sha512-7ax1sRx5s4ZWl0KvVhhcPOUoPbCCkVh8M8hYaqOyvoAQOiqLVzy+Z6Mh2ywPhYw4zudr5Mo/E8UT/zJBO/Wxrw==}
engines: {node: '>=14'}
dependencies:
'@open-draft/until': 1.0.3
- '@xmldom/xmldom': 0.7.5
+ '@xmldom/xmldom': 0.7.10
debug: 4.3.4
- headers-polyfill: 3.0.7
- outvariant: 1.3.0
- strict-event-emitter: 0.2.4
+ headers-polyfill: 3.1.2
+ outvariant: 1.4.0
+ strict-event-emitter: 0.2.8
transitivePeerDependencies:
- supports-color
- /@nodelib/fs.scandir/2.1.5:
+ /@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1:
+ resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
+ dependencies:
+ eslint-scope: 5.1.1
+ dev: false
+
+ /@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- /@nodelib/fs.stat/2.0.5:
+ /@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- /@nodelib/fs.walk/1.2.8:
+ /@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.13.0
+ fastq: 1.15.0
- /@open-draft/until/1.0.3:
+ /@open-draft/until@1.0.3:
resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==}
- /@playwright/test/1.24.2:
- resolution: {integrity: sha512-Q4X224pRHw4Dtkk5PoNJplZCokLNvVbXD9wDQEMrHcEuvWpJWEQDeJ9gEwkZ3iCWSFSWBshIX177B231XW4wOQ==}
+ /@playwright/test@1.34.3:
+ resolution: {integrity: sha512-zPLef6w9P6T/iT6XDYG3mvGOqOyb6eHaV9XtkunYs0+OzxBtrPAAaHotc0X+PJ00WPPnLfFBTl7mf45Mn8DBmw==}
engines: {node: '>=14'}
hasBin: true
dependencies:
- '@types/node': 18.6.4
- playwright-core: 1.24.2
+ '@types/node': 20.2.3
+ playwright-core: 1.34.3
+ optionalDependencies:
+ fsevents: 2.3.2
dev: true
- /@pmmmwh/react-refresh-webpack-plugin/0.5.7_4jvxdnb7sc745pzzmlwaxpqw2m:
- resolution: {integrity: sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==}
+ /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.0)(type-fest@2.18.0)(webpack-dev-server@4.15.0)(webpack@5.84.0):
+ resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==}
engines: {node: '>= 10.13'}
peerDependencies:
'@types/webpack': 4.x || 5.x
react-refresh: '>=0.10.0 <1.0.0'
sockjs-client: ^1.4.0
- type-fest: '>=0.17.0 <3.0.0'
+ type-fest: '>=0.17.0 <4.0.0'
webpack: '>=4.43.0 <6.0.0'
webpack-dev-server: 3.x || 4.x
webpack-hot-middleware: 2.x
@@ -5601,19 +4699,20 @@ packages:
dependencies:
ansi-html-community: 0.0.8
common-path-prefix: 3.0.0
- core-js-pure: 3.19.2
- error-stack-parser: 2.0.6
+ core-js-pure: 3.30.2
+ error-stack-parser: 2.1.4
find-up: 5.0.0
- html-entities: 2.3.2
- loader-utils: 2.0.2
- react-refresh: 0.11.0
- schema-utils: 3.1.1
- source-map: 0.7.3
- webpack: 5.73.0
- webpack-dev-server: 4.9.2_webpack@5.73.0
+ html-entities: 2.3.3
+ loader-utils: 2.0.4
+ react-refresh: 0.14.0
+ schema-utils: 3.1.2
+ source-map: 0.7.4
+ type-fest: 2.18.0
+ webpack: 5.84.0(esbuild@0.17.19)
+ webpack-dev-server: 4.15.0(webpack@5.84.0)
dev: false
- /@pmmmwh/react-refresh-webpack-plugin/0.5.7_4qofgipiuz5gtllxmvke2xa2ki:
+ /@pmmmwh/react-refresh-webpack-plugin@0.5.7(react-refresh@0.11.0)(type-fest@2.18.0)(webpack-dev-server@4.9.3)(webpack@5.84.0):
resolution: {integrity: sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==}
engines: {node: '>= 10.13'}
peerDependencies:
@@ -5641,518 +4740,807 @@ packages:
dependencies:
ansi-html-community: 0.0.8
common-path-prefix: 3.0.0
- core-js-pure: 3.19.2
- error-stack-parser: 2.0.6
+ core-js-pure: 3.30.2
+ error-stack-parser: 2.1.4
find-up: 5.0.0
- html-entities: 2.3.2
- loader-utils: 2.0.2
- react-refresh: 0.14.0
- schema-utils: 3.1.1
- source-map: 0.7.3
- webpack: 5.74.0_esbuild@0.14.53
- webpack-dev-server: 4.9.3_webpack@5.74.0
+ html-entities: 2.3.3
+ loader-utils: 2.0.4
+ react-refresh: 0.11.0
+ schema-utils: 3.1.2
+ source-map: 0.7.4
+ type-fest: 2.18.0
+ webpack: 5.84.0
+ webpack-dev-server: 4.9.3(webpack@5.84.0)
dev: false
- /@radix-ui/primitive/1.0.0:
- resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==}
+ /@radix-ui/primitive@1.0.1:
+ resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.22.3
dev: false
- /@radix-ui/react-announce/0.1.5:
- resolution: {integrity: sha512-S4KeYhPzOH5T64Gw+Cpebx53KDng1tItnUiG97jxUf5Fyl42wAY+ApCZr9r/kgVONUNB2Tnu8NOiw3Yb9AHP5g==}
+ /@radix-ui/react-announce@0.1.8(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-DpuaqzWhM9NAnXiviUv1qimD2zK4XSCLDc2RoFmmxAMgTtMq7wVh8F8tUUEZjri1ra2F4OPEWoIyJWZqyStQkw==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-use-layout-effect': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-arrow/1.0.0:
- resolution: {integrity: sha512-1MUuv24HCdepi41+qfv125EwMuxgQ+U+h0A9K3BjCO/J8nVRREKHHpkD9clwfnjEDk9hgGzCnff4aUKCPiRepw==}
+ /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-primitive': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-checkbox/1.0.0:
- resolution: {integrity: sha512-MoboEfb4O6Akggz7UwZDKp4p9YR8+FIAmIa7UEAiAxfbTArIgSJqJLaEpdF+MPR4Uk/lSGNW727uvugef/UqWQ==}
+ /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-label': 1.0.0
- '@radix-ui/react-presence': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-use-controllable-state': 1.0.0
- '@radix-ui/react-use-previous': 1.0.0
- '@radix-ui/react-use-size': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-collapsible/1.0.0:
- resolution: {integrity: sha512-NfZqWntvPsC43szs0NvumRjmTTJTLgaDOAnmVGDZaGsg2u6LcJwUT7YeYSKnlxWRQWN4pwwEfoYdWrtoutfO8g==}
+ /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-id': 1.0.0
- '@radix-ui/react-presence': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-use-controllable-state': 1.0.0
- '@radix-ui/react-use-layout-effect': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-collection/1.0.0:
- resolution: {integrity: sha512-8i1pf5dKjnq90Z8udnnXKzdCEV3/FYrfw0n/b6NvB6piXEn3fO1bOh7HBcpG8XrnIXzxlYu2oCcR38QpyLS/mg==}
+ /@radix-ui/react-collection@1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-slot': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-compose-refs/1.0.0:
- resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==}
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.22.3
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-context/1.0.0:
- resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==}
+ /@radix-ui/react-context@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.22.3
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-dialog/1.0.0:
- resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
+ /@radix-ui/react-dialog@1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-hJtRy/jPULGQZceSAP2Re6/4NpKo8im6V8P2hUqZsdFiSL8l35kYsw3qbRI6Ay5mQd2+wlLqje770eq+RJ3yZg==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-dismissable-layer': 1.0.0
- '@radix-ui/react-focus-guards': 1.0.0
- '@radix-ui/react-focus-scope': 1.0.0
- '@radix-ui/react-id': 1.0.0
- '@radix-ui/react-portal': 1.0.0
- '@radix-ui/react-presence': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-slot': 1.0.0
- '@radix-ui/react-use-controllable-state': 1.0.0
- aria-hidden: 1.1.3
- react-remove-scroll: 2.5.4
- transitivePeerDependencies:
- - '@types/react'
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ aria-hidden: 1.2.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.0.16)(react@18.2.0)
dev: false
- /@radix-ui/react-direction/1.0.0:
- resolution: {integrity: sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==}
+ /@radix-ui/react-direction@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.22.3
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-dismissable-layer/1.0.0:
- resolution: {integrity: sha512-n7kDRfx+LB1zLueRDvZ1Pd0bxdJWDUZNQ/GWoxDn2prnuJKRdxsjulejX/ePkOsLi2tTm6P24mDqlMSgQpsT6g==}
+ /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-use-callback-ref': 1.0.0
- '@radix-ui/react-use-escape-keydown': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-dropdown-menu/1.0.0:
- resolution: {integrity: sha512-Ptben3TxPWrZLbInO7zjAK73kmjYuStsxfg6ujgt+EywJyREoibhZYnsSNqC+UiOtl4PdW/MOHhxVDtew5fouQ==}
+ /@radix-ui/react-dropdown-menu@2.0.5(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-xdOrZzOTocqqkCkYo8yRPCib5OkTkqN7lqNCdxwPOdE466DOaNl4N8PkUIlsXthQvW5Wwkd+aEmWpfWlBoDPEw==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-id': 1.0.0
- '@radix-ui/react-menu': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-use-controllable-state': 1.0.0
- transitivePeerDependencies:
- - '@types/react'
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-focus-guards/1.0.0:
- resolution: {integrity: sha512-UagjDk4ijOAnGu4WMUPj9ahi7/zJJqNZ9ZAiGPp7waUWJO0O1aWXi/udPphI0IUjvrhBsZJGSN66dR2dsueLWQ==}
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.22.3
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-focus-scope/1.0.0:
- resolution: {integrity: sha512-C4SWtsULLGf/2L4oGeIHlvWQx7Rf+7cX/vKOAD2dXW0A1b5QXwi3wWeaEgW+wn+SEVrraMUk05vLU9fZZz5HbQ==}
+ /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-use-callback-ref': 1.0.0
- dev: false
-
- /@radix-ui/react-id/1.0.0:
- resolution: {integrity: sha512-Q6iAB/U7Tq3NTolBBQbHTgclPmGWE3OlktGGqrClPozSw4vkQ1DfQAOtzgRPecKsMdJINE05iaoDUG8tRzCBjw==}
- peerDependencies:
- react: ^16.8 || ^17.0 || ^18.0
- dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-use-layout-effect': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-label/1.0.0:
- resolution: {integrity: sha512-k+EbxeRaVbSJ4oaR9eUYuC0cDIGRB4TAPhilbFCIMpP9pXFNcyQPQUvRaVOQBrviuArYM80xh0BQR/0y3kjUdQ==}
+ /@radix-ui/react-id@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-id': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-menu/1.0.0:
- resolution: {integrity: sha512-icW4C64T6nHh3Z4Q1fxO1RlSShouFF4UpUmPV8FLaJZfphDljannKErDuALDx4ClRLihAPZ9i+PrLNPoWS2DMA==}
+ /@radix-ui/react-menu@2.0.5(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Gw4f9pwdH+w5w+49k0gLjN0PfRDHvxmAgG16AbyJZ7zhwZ6PBHKtWohvnSwfusfnK3L68dpBREHpVkj8wEM7ZA==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-collection': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-direction': 1.0.0
- '@radix-ui/react-dismissable-layer': 1.0.0
- '@radix-ui/react-focus-guards': 1.0.0
- '@radix-ui/react-focus-scope': 1.0.0
- '@radix-ui/react-id': 1.0.0
- '@radix-ui/react-popper': 1.0.0
- '@radix-ui/react-portal': 1.0.0
- '@radix-ui/react-presence': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-roving-focus': 1.0.0
- '@radix-ui/react-slot': 1.0.0
- '@radix-ui/react-use-callback-ref': 1.0.0
- aria-hidden: 1.1.3
- react-remove-scroll: 2.5.4
- transitivePeerDependencies:
- - '@types/react'
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ aria-hidden: 1.2.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.0.16)(react@18.2.0)
dev: false
- /@radix-ui/react-popover/1.0.0:
- resolution: {integrity: sha512-osxFFO0TiZ9ABpEOitZu0R1Fdd+tSpJgAqLZxRLLdZQ7ya0onSODcITp5hXDVuYQeVXH6pKEBGwXN6ZGjZ0a5g==}
+ /@radix-ui/react-popover@1.0.6(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-cZ4defGpkZ0qTRtlIBzJLSzL6ht7ofhhW4i1+pkemjV1IKXm0wgCRnee154qlV6r9Ttunmh2TNZhMfV2bavUyA==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-dismissable-layer': 1.0.0
- '@radix-ui/react-focus-guards': 1.0.0
- '@radix-ui/react-focus-scope': 1.0.0
- '@radix-ui/react-id': 1.0.0
- '@radix-ui/react-popper': 1.0.0
- '@radix-ui/react-portal': 1.0.0
- '@radix-ui/react-presence': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-slot': 1.0.0
- '@radix-ui/react-use-controllable-state': 1.0.0
- aria-hidden: 1.1.3
- react-remove-scroll: 2.5.4
- transitivePeerDependencies:
- - '@types/react'
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ aria-hidden: 1.2.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.0.16)(react@18.2.0)
dev: false
- /@radix-ui/react-popper/1.0.0:
- resolution: {integrity: sha512-k2dDd+1Wl0XWAMs9ZvAxxYsB9sOsEhrFQV4CINd7IUZf0wfdye4OHen9siwxvZImbzhgVeKTJi68OQmPRvVdMg==}
+ /@radix-ui/react-popper@1.1.2(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@floating-ui/react-dom': 0.7.2
- '@radix-ui/react-arrow': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-use-layout-effect': 1.0.0
- '@radix-ui/react-use-rect': 1.0.0
- '@radix-ui/react-use-size': 1.0.0
- '@radix-ui/rect': 1.0.0
- transitivePeerDependencies:
- - '@types/react'
+ '@babel/runtime': 7.22.3
+ '@floating-ui/react-dom': 2.0.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/rect': 1.0.1
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-portal/1.0.0:
- resolution: {integrity: sha512-a8qyFO/Xb99d8wQdu4o7qnigNjTPG123uADNecz0eX4usnQEj7o+cG4ZX4zkqq98NYekT7UoEQIjxBNWIFuqTA==}
+ /@radix-ui/react-portal@1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-primitive': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-presence/1.0.0:
- resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==}
+ /@radix-ui/react-presence@1.0.1(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-use-layout-effect': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-primitive/1.0.0:
- resolution: {integrity: sha512-EyXe6mnRlHZ8b6f4ilTDrXmkLShICIuOTTj0GX4w1rp+wSxf3+TD05u1UOITC8VsJ2a9nwHvdXtOXEOl0Cw/zQ==}
+ /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-slot': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-roving-focus/1.0.0:
- resolution: {integrity: sha512-lHvO4MhvoWpeNbiJAoyDsEtbKqP2jkkdwsMVJ3kfqbkC71J/aXE6Th6gkZA1xHEqSku+t+UgoDjvE7Z3gsBpcg==}
+ /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-collection': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-direction': 1.0.0
- '@radix-ui/react-id': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-use-callback-ref': 1.0.0
- '@radix-ui/react-use-controllable-state': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-slot/1.0.0:
- resolution: {integrity: sha512-3mrKauI/tWXo1Ll+gN5dHcxDPdm/Df1ufcDLCecn+pnCIVcdWE7CujXo8QaXOWRJyZyQWWbpB8eFwHzWXlv5mQ==}
+ /@radix-ui/react-slot@1.0.2(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-compose-refs': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-switch/1.0.0:
- resolution: {integrity: sha512-SydkCiuirxJfRG8259J0RIpOw1p6y4TgJdNYvDNXgkEjCjFzLCvBbgDNQn9SeYXk3mjO/ezMgMFsacnrp4eihw==}
+ /@radix-ui/react-switch@1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-label': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-use-controllable-state': 1.0.0
- '@radix-ui/react-use-previous': 1.0.0
- '@radix-ui/react-use-size': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-tabs/1.0.0:
- resolution: {integrity: sha512-oKUwEDsySVC0uuSEH7SHCVt1+ijmiDFAI9p+fHCtuZdqrRDKIFs09zp5nrmu4ggP6xqSx9lj1VSblnDH+n3IBA==}
+ /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-direction': 1.0.0
- '@radix-ui/react-id': 1.0.0
- '@radix-ui/react-presence': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-roving-focus': 1.0.0
- '@radix-ui/react-use-controllable-state': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-toggle/1.0.0:
- resolution: {integrity: sha512-RvY06eyDlZMC4rZdWK8jNovEDKf2jBvYFOB4rkQ/ypMOjFQuoh2QodlxlGakrZDrLnfxzyNnn/pg88CWVtAAdw==}
+ /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-use-controllable-state': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-tooltip/1.0.0:
- resolution: {integrity: sha512-RB06pov+O4Npy10ei1C6fsyB9QoOjz7Ubo8Sl3qdKtLgkL9iI96925DYtH0bxx6MH6YB2FuzLU6B75qn3AQQQw==}
+ /@radix-ui/react-tooltip@1.0.6(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-DmNFOiwEc2UDigsYj6clJENma58OelxD24O4IODoZ+3sQc3Zb+L8w1EP+y9laTuKCLAysPw4fD6/v0j4KNV8rg==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0
- '@radix-ui/react-context': 1.0.0
- '@radix-ui/react-dismissable-layer': 1.0.0
- '@radix-ui/react-id': 1.0.0
- '@radix-ui/react-popper': 1.0.0
- '@radix-ui/react-portal': 1.0.0
- '@radix-ui/react-presence': 1.0.0
- '@radix-ui/react-primitive': 1.0.0
- '@radix-ui/react-slot': 1.0.0
- '@radix-ui/react-use-controllable-state': 1.0.0
- '@radix-ui/react-visually-hidden': 1.0.0
- transitivePeerDependencies:
- - '@types/react'
+ '@babel/runtime': 7.22.3
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-use-callback-ref/1.0.0:
- resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==}
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.22.3
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-use-controllable-state/1.0.0:
- resolution: {integrity: sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg==}
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-use-callback-ref': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-use-escape-keydown/1.0.0:
- resolution: {integrity: sha512-JwfBCUIfhXRxKExgIqGa4CQsiMemo1Xt0W/B4ei3fpzpvPENKpMKQ8mZSB6Acj3ebrAEgi2xiQvcI1PAAodvyg==}
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-use-callback-ref': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-use-layout-effect/1.0.0:
- resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==}
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.22.3
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-use-previous/1.0.0:
- resolution: {integrity: sha512-RG2K8z/K7InnOKpq6YLDmT49HGjNmrK+fr82UCVKT2sW0GYfVnYp4wZWBooT/EYfQ5faA9uIjvsuMMhH61rheg==}
+ /@radix-ui/react-use-previous@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.22.3
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-use-rect/1.0.0:
- resolution: {integrity: sha512-TB7pID8NRMEHxb/qQJpvSt3hQU4sqNPM1VCTjTRjEOa7cEop/QMuq8S6fb/5Tsz64kqSvB9WnwsDHtjnrM9qew==}
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/rect': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/rect': 1.0.1
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-use-size/1.0.0:
- resolution: {integrity: sha512-imZ3aYcoYCKhhgNpkNDh/aTiU05qw9hX+HHI1QDBTyIlcFjgeFlKKySNGMwTp7nYFLQg/j0VA2FmCY4WPDDHMg==}
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-use-layout-effect': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.16)(react@18.2.0)
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /@radix-ui/react-visually-hidden/1.0.0:
- resolution: {integrity: sha512-MwAhMdX+n6S4InwRKSnpUsp+lLkYG6izQF56ul6guSX2mBBLOMV9Frx7xJlkEe2GjKLzbNuHhaCS6e5gopmZNA==}
+ /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.18.9
- '@radix-ui/react-primitive': 1.0.0
+ '@babel/runtime': 7.22.3
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.6)(@types/react@18.0.16)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.0.16
+ '@types/react-dom': 18.0.6
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/rect/1.0.0:
- resolution: {integrity: sha512-d0O68AYy/9oeEy1DdC07bz1/ZXX+DqCskRd3i4JzLSTXwefzaepQrKjXC7aNM8lTHjFLDO0pDgaEiQ7jEk+HVg==}
+ /@radix-ui/rect@1.0.1:
+ resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.22.3
dev: false
- /@react-hook/latest/1.0.3:
+ /@react-hook/latest@1.0.3(react@18.2.0):
resolution: {integrity: sha512-dy6duzl+JnAZcDbNTfmaP3xHiKtbXYOaz3G51MGVljh548Y8MWzTr+PHLOfvpypEVW9zwvl+VyKjbWKEVbV1Rg==}
peerDependencies:
react: '>=16.8'
+ dependencies:
+ react: 18.2.0
dev: false
- /@react-hook/passive-layout-effect/1.2.1:
+ /@react-hook/passive-layout-effect@1.2.1(react@18.2.0):
resolution: {integrity: sha512-IwEphTD75liO8g+6taS+4oqz+nnroocNfWVHWz7j+N+ZO2vYrc6PV1q7GQhuahL0IOR7JccFTsFKQ/mb6iZWAg==}
peerDependencies:
react: '>=16.8'
+ dependencies:
+ react: 18.2.0
dev: false
- /@react-hook/resize-observer/1.2.6:
+ /@react-hook/resize-observer@1.2.6(react@18.2.0):
resolution: {integrity: sha512-DlBXtLSW0DqYYTW3Ft1/GQFZlTdKY5VAFIC4+km6IK5NiPPDFchGbEJm1j6pSgMqPRHbUQgHJX7RaR76ic1LWA==}
peerDependencies:
react: '>=16.8'
dependencies:
- '@juggle/resize-observer': 3.3.1
- '@react-hook/latest': 1.0.3
- '@react-hook/passive-layout-effect': 1.2.1
+ '@juggle/resize-observer': 3.4.0
+ '@react-hook/latest': 1.0.3(react@18.2.0)
+ '@react-hook/passive-layout-effect': 1.2.1(react@18.2.0)
+ react: 18.2.0
dev: false
- /@rollup/plugin-babel/5.3.1_fb3qe53zzddvqjqqltveoanfhe:
+ /@rollup/plugin-babel@5.3.1(@babel/core@7.21.8)(rollup@2.79.1):
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -6163,136 +5551,107 @@ packages:
'@types/babel__core':
optional: true
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-module-imports': 7.18.6
- '@rollup/pluginutils': 3.1.0_rollup@2.75.7
- rollup: 2.75.7
+ '@babel/core': 7.21.8
+ '@babel/helper-module-imports': 7.21.4
+ '@rollup/pluginutils': 3.1.0(rollup@2.79.1)
+ rollup: 2.79.1
dev: false
- /@rollup/plugin-babel/5.3.1_tui6liyexu3zy4m5r2rytc7ixu:
- resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
- engines: {node: '>= 10.0.0'}
+ /@rollup/plugin-commonjs@25.0.2(rollup@3.25.1):
+ resolution: {integrity: sha512-NGTwaJxIO0klMs+WSFFtBP7b9TdTJ3K76HZkewT8/+yHzMiUGVQgaPtLQxNVYIgT5F7lxkEyVID+yS3K7bhCow==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
- '@babel/core': ^7.0.0
- '@types/babel__core': ^7.1.9
- rollup: ^1.20.0||^2.0.0
+ rollup: ^2.68.0||^3.0.0
peerDependenciesMeta:
- '@types/babel__core':
+ rollup:
optional: true
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-module-imports': 7.18.6
- '@rollup/pluginutils': 3.1.0_rollup@2.77.2
- rollup: 2.77.2
- dev: false
-
- /@rollup/plugin-commonjs/22.0.2_rollup@2.77.2:
- resolution: {integrity: sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- rollup: ^2.68.0
- dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.77.2
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
commondir: 1.0.1
estree-walker: 2.0.2
- glob: 7.2.3
+ glob: 8.0.3
is-reference: 1.2.1
- magic-string: 0.25.9
- resolve: 1.22.1
- rollup: 2.77.2
+ magic-string: 0.27.0
+ rollup: 3.25.1
dev: true
- /@rollup/plugin-node-resolve/11.2.1_rollup@2.75.7:
- resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==}
- engines: {node: '>= 10.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0
- dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.75.7
- '@types/resolve': 1.17.1
- builtin-modules: 3.3.0
- deepmerge: 4.2.2
- is-module: 1.0.0
- resolve: 1.22.0
- rollup: 2.75.7
- dev: false
-
- /@rollup/plugin-node-resolve/11.2.1_rollup@2.77.2:
+ /@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1):
resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==}
engines: {node: '>= 10.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.77.2
+ '@rollup/pluginutils': 3.1.0(rollup@2.79.1)
'@types/resolve': 1.17.1
builtin-modules: 3.3.0
- deepmerge: 4.2.2
+ deepmerge: 4.3.1
is-module: 1.0.0
- resolve: 1.22.0
- rollup: 2.77.2
+ resolve: 1.22.2
+ rollup: 2.79.1
dev: false
- /@rollup/plugin-node-resolve/13.3.0_rollup@2.77.2:
- resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==}
- engines: {node: '>= 10.0.0'}
+ /@rollup/plugin-node-resolve@15.0.2(rollup@3.25.1):
+ resolution: {integrity: sha512-Y35fRGUjC3FaurG722uhUuG8YHOJRJQbI6/CkbRkdPotSpDj9NtIN85z1zrcyDcCQIW4qp5mgG72U+gJ0TAFEg==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
- rollup: ^2.42.0
+ rollup: ^2.78.0||^3.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.77.2
- '@types/resolve': 1.17.1
- deepmerge: 4.2.2
- is-builtin-module: 3.1.0
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
+ '@types/resolve': 1.20.2
+ deepmerge: 4.3.1
+ is-builtin-module: 3.2.1
is-module: 1.0.0
- resolve: 1.20.0
- rollup: 2.77.2
+ resolve: 1.22.2
+ rollup: 3.25.1
dev: true
- /@rollup/plugin-replace/2.4.2_rollup@2.75.7:
- resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==}
- peerDependencies:
- rollup: ^1.20.0 || ^2.0.0
- dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.75.7
- magic-string: 0.25.9
- rollup: 2.75.7
- dev: false
-
- /@rollup/plugin-replace/2.4.2_rollup@2.77.2:
+ /@rollup/plugin-replace@2.4.2(rollup@2.79.1):
resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==}
peerDependencies:
rollup: ^1.20.0 || ^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.77.2
+ '@rollup/pluginutils': 3.1.0(rollup@2.79.1)
magic-string: 0.25.9
- rollup: 2.77.2
+ rollup: 2.79.1
dev: false
- /@rollup/plugin-replace/4.0.0:
- resolution: {integrity: sha512-+rumQFiaNac9y64OHtkHGmdjm7us9bo1PlbgQfdihQtuNxzjpaB064HbRnewUOggLQxVCCyINfStkgmBeQpv1g==}
+ /@rollup/plugin-replace@5.0.2(rollup@3.25.1):
+ resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
- rollup: ^1.20.0 || ^2.0.0
+ rollup: ^1.20.0||^2.0.0||^3.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
dependencies:
- '@rollup/pluginutils': 3.1.0
- magic-string: 0.25.9
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
+ magic-string: 0.27.0
+ rollup: 3.25.1
dev: true
- /@rollup/plugin-typescript/8.3.4_rollup@2.77.2:
- resolution: {integrity: sha512-wt7JnYE9antX6BOXtsxGoeVSu4dZfw0dU3xykfOQ4hC3EddxRbVG/K0xiY1Wup7QOHJcjLYXWAn0Kx9Z1SBHHg==}
- engines: {node: '>=8.0.0'}
+ /@rollup/plugin-typescript@11.1.1(rollup@3.25.1)(typescript@4.6.4):
+ resolution: {integrity: sha512-Ioir+x5Bejv72Lx2Zbz3/qGg7tvGbxQZALCLoJaGrkNXak/19+vKgKYJYM3i/fJxvsb23I9FuFQ8CUBEfsmBRg==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
- rollup: ^2.14.0
+ rollup: ^2.14.0||^3.0.0
tslib: '*'
typescript: '>=3.7.0'
peerDependenciesMeta:
+ rollup:
+ optional: true
tslib:
optional: true
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.77.2
- resolve: 1.22.1
- rollup: 2.77.2
+ '@rollup/pluginutils': 5.0.2(rollup@3.25.1)
+ resolve: 1.22.2
+ rollup: 3.25.1
+ typescript: 4.6.4
dev: true
- /@rollup/pluginutils/3.1.0:
+ /@rollup/pluginutils@3.1.0(rollup@2.79.1):
resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
engines: {node: '>= 8.0.0'}
peerDependencies:
@@ -6301,123 +5660,117 @@ packages:
'@types/estree': 0.0.39
estree-walker: 1.0.1
picomatch: 2.3.1
- dev: true
+ rollup: 2.79.1
+ dev: false
- /@rollup/pluginutils/3.1.0_rollup@2.75.7:
- resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
+ /@rollup/pluginutils@4.2.1:
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0
dependencies:
- '@types/estree': 0.0.39
- estree-walker: 1.0.1
+ estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 2.75.7
dev: false
- /@rollup/pluginutils/3.1.0_rollup@2.77.2:
- resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
- engines: {node: '>= 8.0.0'}
+ /@rollup/pluginutils@5.0.2(rollup@3.25.1):
+ resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
- rollup: ^1.20.0||^2.0.0
- dependencies:
- '@types/estree': 0.0.39
- estree-walker: 1.0.1
- picomatch: 2.3.1
- rollup: 2.77.2
-
- /@rollup/pluginutils/4.2.0:
- resolution: {integrity: sha512-2WUyJNRkyH5p487pGnn4tWAsxhEFKN/pT8CMgHshd5H+IXkOnKvKZwsz5ZWz+YCXkleZRAU5kwbfgF8CPfDRqA==}
- engines: {node: '>= 8.0.0'}
+ rollup: ^1.20.0||^2.0.0||^3.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
dependencies:
+ '@types/estree': 1.0.1
estree-walker: 2.0.2
picomatch: 2.3.1
- dev: false
+ rollup: 3.25.1
+ dev: true
- /@rushstack/eslint-patch/1.1.3:
- resolution: {integrity: sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==}
+ /@rushstack/eslint-patch@1.3.0:
+ resolution: {integrity: sha512-IthPJsJR85GhOkp3Hvp8zFOPK5ynKn6STyHa/WZpioK7E1aYDiBzpqQPrngc14DszIUkIrdd3k9Iu0XSzlP/1w==}
dev: false
- /@sinclair/typebox/0.23.5:
- resolution: {integrity: sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg==}
- dev: false
+ /@sinclair/typebox@0.24.51:
+ resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==}
- /@sinclair/typebox/0.24.27:
- resolution: {integrity: sha512-K7C7IlQ3zLePEZleUN21ceBA2aLcMnLHTLph8QWk1JK37L90obdpY+QGY8bXMKxf1ht1Z0MNewvXxWv0oGDYFg==}
+ /@sinclair/typebox@0.25.24:
+ resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==}
- /@sinonjs/commons/1.8.3:
- resolution: {integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==}
+ /@sinonjs/commons@1.8.6:
+ resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==}
dependencies:
type-detect: 4.0.8
- /@sinonjs/fake-timers/8.1.0:
+ /@sinonjs/fake-timers@8.1.0:
resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.6
dev: false
- /@sinonjs/fake-timers/9.1.2:
+ /@sinonjs/fake-timers@9.1.2:
resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.6
dev: true
- /@stitches/react/1.2.8:
+ /@stitches/react@1.2.8(react@18.2.0):
resolution: {integrity: sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA==}
peerDependencies:
react: '>= 16.3.0'
+ dependencies:
+ react: 18.2.0
dev: false
- /@surma/rollup-plugin-off-main-thread/2.2.3:
+ /@surma/rollup-plugin-off-main-thread@2.2.3:
resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
dependencies:
- ejs: 3.1.8
- json5: 2.2.1
+ ejs: 3.1.9
+ json5: 2.2.3
magic-string: 0.25.9
- string.prototype.matchall: 4.0.7
+ string.prototype.matchall: 4.0.8
dev: false
- /@svgr/babel-plugin-add-jsx-attribute/5.4.0:
+ /@svgr/babel-plugin-add-jsx-attribute@5.4.0:
resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==}
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute/5.4.0:
+ /@svgr/babel-plugin-remove-jsx-attribute@5.4.0:
resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==}
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression/5.0.1:
+ /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1:
resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==}
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value/5.0.1:
+ /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1:
resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==}
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-svg-dynamic-title/5.4.0:
+ /@svgr/babel-plugin-svg-dynamic-title@5.4.0:
resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==}
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-svg-em-dimensions/5.4.0:
+ /@svgr/babel-plugin-svg-em-dimensions@5.4.0:
resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==}
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-transform-react-native-svg/5.4.0:
+ /@svgr/babel-plugin-transform-react-native-svg@5.4.0:
resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==}
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-transform-svg-component/5.5.0:
+ /@svgr/babel-plugin-transform-svg-component@5.5.0:
resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==}
engines: {node: '>=10'}
dev: false
- /@svgr/babel-preset/5.5.0:
+ /@svgr/babel-preset@5.5.0:
resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==}
engines: {node: '>=10'}
dependencies:
@@ -6431,29 +5784,29 @@ packages:
'@svgr/babel-plugin-transform-svg-component': 5.5.0
dev: false
- /@svgr/core/5.5.0:
+ /@svgr/core@5.5.0:
resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==}
engines: {node: '>=10'}
dependencies:
'@svgr/plugin-jsx': 5.5.0
camelcase: 6.3.0
- cosmiconfig: 7.0.1
+ cosmiconfig: 7.1.0
transitivePeerDependencies:
- supports-color
dev: false
- /@svgr/hast-util-to-babel-ast/5.5.0:
+ /@svgr/hast-util-to-babel-ast@5.5.0:
resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.17.10
+ '@babel/types': 7.21.5
dev: false
- /@svgr/plugin-jsx/5.5.0:
+ /@svgr/plugin-jsx@5.5.0:
resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.18.5
+ '@babel/core': 7.18.10
'@svgr/babel-preset': 5.5.0
'@svgr/hast-util-to-babel-ast': 5.5.0
svg-parser: 2.0.4
@@ -6461,576 +5814,532 @@ packages:
- supports-color
dev: false
- /@svgr/plugin-svgo/5.5.0:
+ /@svgr/plugin-svgo@5.5.0:
resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==}
engines: {node: '>=10'}
dependencies:
- cosmiconfig: 7.0.1
- deepmerge: 4.2.2
+ cosmiconfig: 7.1.0
+ deepmerge: 4.3.1
svgo: 1.3.2
dev: false
- /@svgr/webpack/5.5.0:
+ /@svgr/webpack@5.5.0:
resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.18.5
- '@babel/plugin-transform-react-constant-elements': 7.17.6_@babel+core@7.18.5
- '@babel/preset-env': 7.18.2_@babel+core@7.18.5
- '@babel/preset-react': 7.17.12_@babel+core@7.18.5
+ '@babel/core': 7.18.10
+ '@babel/plugin-transform-react-constant-elements': 7.21.3(@babel/core@7.18.10)
+ '@babel/preset-env': 7.21.5(@babel/core@7.18.10)
+ '@babel/preset-react': 7.18.6(@babel/core@7.18.10)
'@svgr/core': 5.5.0
'@svgr/plugin-jsx': 5.5.0
'@svgr/plugin-svgo': 5.5.0
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
transitivePeerDependencies:
- supports-color
dev: false
- /@tailwindcss/forms/0.5.2_tailwindcss@3.1.8:
+ /@tailwindcss/forms@0.5.2(tailwindcss@3.1.8):
resolution: {integrity: sha512-pSrFeJB6Bg1Mrg9CdQW3+hqZXAKsBrSG9MAfFLKy1pVA4Mb4W7C0k7mEhlmS2Dfo/otxrQOET7NJiJ9RrS563w==}
peerDependencies:
tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
dependencies:
mini-svg-data-uri: 1.4.4
- tailwindcss: 3.1.8
+ tailwindcss: 3.1.8(postcss@8.4.16)
- /@testing-library/dom/8.14.0:
- resolution: {integrity: sha512-m8FOdUo77iMTwVRCyzWcqxlEIk+GnopbrRI15a0EaLbpZSCinIVI4kSQzWhkShK83GogvEFJSsHF3Ws0z1vrqA==}
- engines: {node: '>=12'}
+ /@tailwindcss/forms@0.5.3(tailwindcss@3.3.2):
+ resolution: {integrity: sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==}
+ peerDependencies:
+ tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/runtime': 7.18.9
- '@types/aria-query': 4.2.2
- aria-query: 5.0.0
- chalk: 4.1.2
- dom-accessibility-api: 0.5.11
- lz-string: 1.4.4
- pretty-format: 27.5.1
+ mini-svg-data-uri: 1.4.4
+ tailwindcss: 3.3.2
+ dev: true
+
+ /@tanstack/query-core@4.29.7:
+ resolution: {integrity: sha512-GXG4b5hV2Loir+h2G+RXhJdoZhJLnrBWsuLB2r0qBRyhWuXq9w/dWxzvpP89H0UARlH6Mr9DiVj4SMtpkF/aUA==}
+
+ /@tanstack/react-query@4.29.7(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-ijBWEzAIo09fB1yd22slRZzprrZ5zMdWYzBnCg5qiXuFbH78uGN1qtGz8+Ed4MuhaPaYSD+hykn+QEKtQviEtg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-native: '*'
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+ react-native:
+ optional: true
+ dependencies:
+ '@tanstack/query-core': 4.29.7
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ use-sync-external-store: 1.2.0(react@18.2.0)
- /@testing-library/dom/8.16.1:
+ /@testing-library/dom@8.16.1:
resolution: {integrity: sha512-XEV2mBxgv6DKjL3+U3WEUzBgT2CjYksoXGlLrrJXYP8OvRfGkBonvelkorazpFlp8tkEecO06r43vN4DIEyegQ==}
engines: {node: '>=12'}
dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/runtime': 7.18.9
+ '@babel/code-frame': 7.21.4
+ '@babel/runtime': 7.21.5
'@types/aria-query': 4.2.2
- aria-query: 5.0.0
+ aria-query: 5.1.3
chalk: 4.1.2
- dom-accessibility-api: 0.5.14
- lz-string: 1.4.4
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
pretty-format: 27.5.1
- /@testing-library/jest-dom/5.16.5:
+ /@testing-library/jest-dom@5.16.5:
resolution: {integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==}
engines: {node: '>=8', npm: '>=6', yarn: '>=1'}
dependencies:
- '@adobe/css-tools': 4.0.1
- '@babel/runtime': 7.18.9
+ '@adobe/css-tools': 4.2.0
+ '@babel/runtime': 7.21.5
'@types/testing-library__jest-dom': 5.14.5
- aria-query: 5.0.0
+ aria-query: 5.1.3
chalk: 3.0.0
css.escape: 1.5.1
- dom-accessibility-api: 0.5.14
+ dom-accessibility-api: 0.5.16
lodash: 4.17.21
redent: 3.0.0
dev: false
- /@testing-library/react/13.3.0_biqbaboplfbrettd7655fr4n2y:
+ /@testing-library/react@13.3.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-DB79aA426+deFgGSjnf5grczDPiL4taK3hFaa+M5q7q20Kcve9eQottOG5kZ74KEr55v0tU2CQormSSDK87zYQ==}
engines: {node: '>=12'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/runtime': 7.18.9
- '@testing-library/dom': 8.14.0
+ '@babel/runtime': 7.21.5
+ '@testing-library/dom': 8.16.1
'@types/react-dom': 18.0.6
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
-
- /@testing-library/user-event/14.4.2:
- resolution: {integrity: sha512-1gVTWtueNimveOjcm2ApFCnCTeky7WqY3EX31/GRKLWyCd+HfH+Gd2l1J8go9FpDNe+0Mx8X4zbQHTg0WWNJwg==}
- engines: {node: '>=12', npm: '>=6'}
- peerDependencies:
- '@testing-library/dom': '>=7.21.4'
- dev: false
+ react-dom: 18.2.0(react@18.2.0)
- /@testing-library/user-event/14.4.2_znfriv3ismgf3ybh2woqwlpfea:
+ /@testing-library/user-event@14.4.2(@testing-library/dom@8.16.1):
resolution: {integrity: sha512-1gVTWtueNimveOjcm2ApFCnCTeky7WqY3EX31/GRKLWyCd+HfH+Gd2l1J8go9FpDNe+0Mx8X4zbQHTg0WWNJwg==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
'@testing-library/dom': '>=7.21.4'
dependencies:
'@testing-library/dom': 8.16.1
- dev: true
- /@tootallnate/once/1.1.2:
+ /@tootallnate/once@1.1.2:
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
engines: {node: '>= 6'}
dev: false
- /@trysound/sax/0.2.0:
+ /@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- /@types/acorn/4.0.6:
+ /@types/acorn@4.0.6:
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
dependencies:
- '@types/estree': 1.0.0
+ '@types/estree': 1.0.1
dev: false
- /@types/aria-query/4.2.2:
+ /@types/aria-query@4.2.2:
resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==}
- /@types/babel__core/7.1.19:
- resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==}
+ /@types/babel__core@7.20.0:
+ resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==}
dependencies:
- '@babel/parser': 7.17.10
- '@babel/types': 7.17.10
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.21.5
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
- '@types/babel__traverse': 7.17.1
+ '@types/babel__traverse': 7.18.5
- /@types/babel__generator/7.6.4:
+ /@types/babel__generator@7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.17.10
+ '@babel/types': 7.21.5
- /@types/babel__template/7.4.1:
+ /@types/babel__template@7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.17.10
- '@babel/types': 7.17.10
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.21.5
- /@types/babel__traverse/7.17.1:
- resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==}
+ /@types/babel__traverse@7.18.5:
+ resolution: {integrity: sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==}
dependencies:
- '@babel/types': 7.17.10
+ '@babel/types': 7.21.5
- /@types/babel__traverse/7.18.0:
- resolution: {integrity: sha512-v4Vwdko+pgymgS+A2UIaJru93zQd85vIGWObM5ekZNdXCKtDYqATlEYnWgfo86Q6I1Lh0oXnksDnMU1cwmlPDw==}
- dependencies:
- '@babel/types': 7.18.10
- dev: true
-
- /@types/body-parser/1.19.2:
+ /@types/body-parser@1.19.2:
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
dependencies:
'@types/connect': 3.4.35
'@types/node': 18.0.1
dev: false
- /@types/bonjour/3.5.10:
+ /@types/bonjour@3.5.10:
resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
dependencies:
'@types/node': 18.0.1
dev: false
- /@types/connect-history-api-fallback/1.3.5:
- resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
+ /@types/connect-history-api-fallback@1.5.0:
+ resolution: {integrity: sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==}
dependencies:
- '@types/express-serve-static-core': 4.17.29
- '@types/node': 18.0.1
+ '@types/express-serve-static-core': 4.17.35
+ '@types/node': 20.2.3
dev: false
- /@types/connect/3.4.35:
+ /@types/connect@3.4.35:
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
dependencies:
'@types/node': 18.0.1
dev: false
- /@types/cookie/0.4.1:
+ /@types/cookie@0.4.1:
resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
- /@types/cross-spawn/6.0.2:
+ /@types/cross-spawn@6.0.2:
resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.0.1
dev: true
- /@types/debug/4.1.7:
- resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==}
+ /@types/debug@4.1.8:
+ resolution: {integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==}
dependencies:
'@types/ms': 0.7.31
dev: false
- /@types/eslint-scope/3.7.3:
- resolution: {integrity: sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==}
- dependencies:
- '@types/eslint': 8.4.1
- '@types/estree': 0.0.51
- dev: false
-
- /@types/eslint-scope/3.7.4:
+ /@types/eslint-scope@3.7.4:
resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
dependencies:
- '@types/eslint': 8.4.5
- '@types/estree': 0.0.51
+ '@types/eslint': 8.40.0
+ '@types/estree': 1.0.1
- /@types/eslint/7.29.0:
- resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==}
+ /@types/eslint@8.40.0:
+ resolution: {integrity: sha512-nbq2mvc/tBrK9zQQuItvjJl++GTN5j06DaPtp3hZCpngmG6Q3xoyEmd0TwZI0gAy/G1X0zhGBbr2imsGFdFV0g==}
dependencies:
- '@types/estree': 0.0.51
+ '@types/estree': 1.0.1
'@types/json-schema': 7.0.11
- dev: false
- /@types/eslint/8.4.1:
- resolution: {integrity: sha512-GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==}
+ /@types/estree-jsx@0.0.1:
+ resolution: {integrity: sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==}
dependencies:
- '@types/estree': 0.0.51
- '@types/json-schema': 7.0.9
+ '@types/estree': 1.0.1
dev: false
- /@types/eslint/8.4.5:
- resolution: {integrity: sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==}
- dependencies:
- '@types/estree': 0.0.51
- '@types/json-schema': 7.0.11
-
- /@types/estree-jsx/0.0.1:
- resolution: {integrity: sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==}
+ /@types/estree-jsx@1.0.0:
+ resolution: {integrity: sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==}
dependencies:
- '@types/estree': 1.0.0
+ '@types/estree': 1.0.1
dev: false
- /@types/estree/0.0.39:
+ /@types/estree@0.0.39:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
-
- /@types/estree/0.0.46:
- resolution: {integrity: sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg==}
- dev: false
-
- /@types/estree/0.0.50:
- resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==}
dev: false
- /@types/estree/0.0.51:
- resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
-
- /@types/estree/1.0.0:
- resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
+ /@types/estree@1.0.1:
+ resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
- /@types/express-serve-static-core/4.17.29:
- resolution: {integrity: sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==}
+ /@types/express-serve-static-core@4.17.35:
+ resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==}
dependencies:
- '@types/node': 18.0.1
+ '@types/node': 20.2.3
'@types/qs': 6.9.7
'@types/range-parser': 1.2.4
+ '@types/send': 0.17.1
dev: false
- /@types/express/4.17.13:
- resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==}
+ /@types/express@4.17.17:
+ resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
dependencies:
'@types/body-parser': 1.19.2
- '@types/express-serve-static-core': 4.17.29
+ '@types/express-serve-static-core': 4.17.35
'@types/qs': 6.9.7
- '@types/serve-static': 1.13.10
+ '@types/serve-static': 1.15.1
dev: false
- /@types/fs-extra/9.0.13:
+ /@types/fs-extra@9.0.13:
resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.0.1
dev: true
- /@types/github-slugger/1.3.0:
+ /@types/github-slugger@1.3.0:
resolution: {integrity: sha512-J/rMZa7RqiH/rT29TEVZO4nBoDP9XJOjnbbIofg7GQKs4JIduEO3WLpte+6WeUz/TcrXKlY+bM7FYrp8yFB+3g==}
dev: true
- /@types/glob/7.2.0:
+ /@types/glob@7.2.0:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
- '@types/minimatch': 3.0.5
- '@types/node': 18.0.0
+ '@types/minimatch': 5.1.2
+ '@types/node': 18.0.1
dev: true
- /@types/graceful-fs/4.1.5:
- resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==}
+ /@types/graceful-fs@4.1.6:
+ resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
dependencies:
- '@types/node': 18.6.4
+ '@types/node': 18.0.1
- /@types/hast/2.3.4:
+ /@types/hast@2.3.4:
resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
dependencies:
'@types/unist': 2.0.6
- /@types/html-minifier-terser/6.0.0:
- resolution: {integrity: sha512-NZwaaynfs1oIoLAV1vg18e7QMVDvw+6SQrdJc8w3BwUaoroVSf6EBj/Sk4PBWGxsq0dzhA2drbsuMC1/6C6KgQ==}
- dev: false
-
- /@types/http-proxy/1.17.8:
- resolution: {integrity: sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA==}
- dependencies:
- '@types/node': 18.0.1
- dev: false
+ /@types/html-minifier-terser@6.1.0:
+ resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
- /@types/http-proxy/1.17.9:
- resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==}
+ /@types/http-proxy@1.17.11:
+ resolution: {integrity: sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==}
dependencies:
'@types/node': 18.0.1
dev: false
- /@types/is-ci/3.0.0:
+ /@types/is-ci@3.0.0:
resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==}
dependencies:
- ci-info: 3.3.2
+ ci-info: 3.8.0
dev: true
- /@types/istanbul-lib-coverage/2.0.4:
+ /@types/istanbul-lib-coverage@2.0.4:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
- /@types/istanbul-lib-report/3.0.0:
+ /@types/istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
- /@types/istanbul-reports/3.0.1:
+ /@types/istanbul-reports@3.0.1:
resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
dependencies:
'@types/istanbul-lib-report': 3.0.0
- /@types/jest/28.1.6:
+ /@types/jest@28.1.6:
resolution: {integrity: sha512-0RbGAFMfcBJKOmqRazM8L98uokwuwD5F8rHrv/ZMbrZBwVOWZUyPG6VFNscjYr/vjM3Vu4fRrCPbOs42AfemaQ==}
dependencies:
jest-matcher-utils: 28.1.3
pretty-format: 28.1.3
- /@types/js-levenshtein/1.1.1:
+ /@types/js-levenshtein@1.1.1:
resolution: {integrity: sha512-qC4bCqYGy1y/NP7dDVr7KJarn+PbX1nSpwA7JXdu0HxT3QYjO8MJ+cntENtHFVy2dRAyBV23OZ6MxsW1AM1L8g==}
- /@types/json-schema/7.0.11:
+ /@types/json-schema@7.0.11:
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
- /@types/json-schema/7.0.9:
- resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==}
- dev: false
-
- /@types/json5/0.0.29:
- resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=}
+ /@types/json5@0.0.29:
+ resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: false
- /@types/lodash/4.14.182:
+ /@types/lodash@4.14.182:
resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==}
dev: true
- /@types/lz-string/1.3.34:
- resolution: {integrity: sha512-j6G1e8DULJx3ONf6NdR5JiR2ZY3K3PaaqiEuKYkLQO0Czfi1AzrtjfnfCROyWGeDd5IVMKCwsgSmMip9OWijow==}
- dev: true
-
- /@types/mdast/3.0.10:
+ /@types/mdast@3.0.10:
resolution: {integrity: sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==}
dependencies:
'@types/unist': 2.0.6
- /@types/mdurl/1.0.2:
- resolution: {integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==}
- dev: false
-
- /@types/mdx/2.0.1:
- resolution: {integrity: sha512-JPEv4iAl0I+o7g8yVWDwk30es8mfVrjkvh5UeVR2sYPpZCK44vrAPsbJpIS+rJAUxLgaSAMKTEH5Vn5qd9XsrQ==}
+ /@types/mdx@2.0.5:
+ resolution: {integrity: sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==}
dev: false
- /@types/mime-types/2.1.1:
+ /@types/mime-types@2.1.1:
resolution: {integrity: sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==}
dev: true
- /@types/mime/1.3.2:
+ /@types/mime@1.3.2:
resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
dev: false
- /@types/minimatch/3.0.5:
- resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
+ /@types/mime@3.0.1:
+ resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
+ dev: false
+
+ /@types/minimatch@5.1.2:
+ resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
dev: true
- /@types/minimist/1.2.2:
+ /@types/minimist@1.2.2:
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
dev: true
- /@types/ms/0.7.31:
+ /@types/ms@0.7.31:
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
dev: false
- /@types/node/12.20.55:
+ /@types/node@12.20.55:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
dev: true
- /@types/node/17.0.45:
- resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
- dev: false
-
- /@types/node/18.0.0:
- resolution: {integrity: sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==}
-
- /@types/node/18.0.1:
+ /@types/node@18.0.1:
resolution: {integrity: sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==}
- dev: false
- /@types/node/18.6.4:
- resolution: {integrity: sha512-I4BD3L+6AWiUobfxZ49DlU43gtI+FTHSv9pE2Zekg6KjMpre4ByusaljW3vYSLJrvQ1ck1hUaeVu8HVlY3vzHg==}
+ /@types/node@20.2.3:
+ resolution: {integrity: sha512-pg9d0yC4rVNWQzX8U7xb4olIOFuuVL9za3bzMT2pu2SU0SNEi66i2qrvhE2qt0HvkhuCaWJu7pLNOt/Pj8BIrw==}
- /@types/normalize-package-data/2.4.1:
+ /@types/normalize-package-data@2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
dev: true
- /@types/parse-json/4.0.0:
+ /@types/parse-json@4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
-
- /@types/prettier/2.6.1:
- resolution: {integrity: sha512-XFjFHmaLVifrAKaZ+EKghFHtHSUonyw8P2Qmy2/+osBnrKbH9UYtlK10zg8/kCt47MFilll/DEDKy3DHfJ0URw==}
dev: false
- /@types/prettier/2.7.0:
- resolution: {integrity: sha512-RI1L7N4JnW5gQw2spvL7Sllfuf1SaHdrZpCHiBlCXjIlufi1SMNnbu2teze3/QE67Fg2tBlH7W+mi4hVNk4p0A==}
- dev: true
+ /@types/prettier@2.7.2:
+ resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==}
- /@types/prop-types/15.7.5:
+ /@types/prop-types@15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
- /@types/q/1.5.5:
+ /@types/q@1.5.5:
resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==}
dev: false
- /@types/qs/6.9.7:
+ /@types/qs@6.9.7:
resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
dev: false
- /@types/range-parser/1.2.4:
+ /@types/range-parser@1.2.4:
resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
dev: false
- /@types/react-dom/18.0.6:
+ /@types/react-dom@18.0.6:
resolution: {integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==}
dependencies:
'@types/react': 18.0.16
- /@types/react-helmet/6.1.5:
+ /@types/react-helmet@6.1.5:
resolution: {integrity: sha512-/ICuy7OHZxR0YCAZLNg9r7I9aijWUWvxaPR6uTuyxe8tAj5RL4Sw1+R6NhXUtOsarkGYPmaHdBDvuXh2DIN/uA==}
dependencies:
'@types/react': 18.0.16
dev: true
- /@types/react-highlight-words/0.16.4:
+ /@types/react-highlight-words@0.16.4:
resolution: {integrity: sha512-KITBX3xzheQLu2s3bUgLmRE7ekmhc52zRjRTwkKayQARh30L4fjEGzGm7ULK9TuX2LgxWWavZqyQGDGjAHbL3w==}
dependencies:
'@types/react': 18.0.16
dev: true
- /@types/react/18.0.16:
+ /@types/react@18.0.16:
resolution: {integrity: sha512-3vX1dzVucqc2nhXtzyaParTIIRZeNbisRqLE7QdeLomVybEyeiuAouzZXgz71P+2kbJOqj3dy0fzoATg2I06GQ==}
dependencies:
'@types/prop-types': 15.7.5
- '@types/scheduler': 0.16.2
- csstype: 3.1.0
+ '@types/scheduler': 0.16.3
+ csstype: 3.1.2
- /@types/resolve/1.17.1:
+ /@types/resolve@1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 18.0.0
-
- /@types/retry/0.12.0:
- resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
+ '@types/node': 20.2.3
dev: false
- /@types/retry/0.12.1:
- resolution: {integrity: sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==}
+ /@types/resolve@1.20.2:
+ resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
+ dev: true
+
+ /@types/retry@0.12.0:
+ resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
dev: false
- /@types/rimraf/3.0.2:
+ /@types/rimraf@3.0.2:
resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==}
dependencies:
'@types/glob': 7.2.0
- '@types/node': 18.0.0
+ '@types/node': 18.0.1
dev: true
- /@types/scheduler/0.16.2:
- resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
+ /@types/scheduler@0.16.3:
+ resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
- /@types/semver/6.2.3:
+ /@types/semver@6.2.3:
resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==}
dev: true
- /@types/serve-index/1.9.1:
- resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
- dependencies:
- '@types/express': 4.17.13
+ /@types/semver@7.5.0:
+ resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==}
dev: false
- /@types/serve-static/1.13.10:
- resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==}
+ /@types/send@0.17.1:
+ resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
dependencies:
'@types/mime': 1.3.2
'@types/node': 18.0.1
dev: false
- /@types/set-cookie-parser/2.4.2:
+ /@types/serve-index@1.9.1:
+ resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
+ dependencies:
+ '@types/express': 4.17.17
+ dev: false
+
+ /@types/serve-static@1.15.1:
+ resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==}
+ dependencies:
+ '@types/mime': 3.0.1
+ '@types/node': 20.2.3
+ dev: false
+
+ /@types/set-cookie-parser@2.4.2:
resolution: {integrity: sha512-fBZgytwhYAUkj/jC/FAV4RQ5EerRup1YQsXQCh8rZfiHkc4UahC192oH0smGwsXol3cL3A5oETuAHeQHmhXM4w==}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.0.1
- /@types/sockjs/0.3.33:
+ /@types/sockjs@0.3.33:
resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
dependencies:
- '@types/node': 18.0.1
+ '@types/node': 20.2.3
dev: false
- /@types/stack-utils/2.0.1:
+ /@types/stack-utils@2.0.1:
resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
- /@types/string-similarity/4.0.0:
+ /@types/string-similarity@4.0.0:
resolution: {integrity: sha512-dMS4S07fbtY1AILG/RhuwmptmzK1Ql8scmAebOTJ/8iBtK/KI17NwGwKzu1uipjj8Kk+3mfPxum56kKZE93mzQ==}
dev: true
- /@types/stringify-object/4.0.1:
+ /@types/stringify-object@4.0.1:
resolution: {integrity: sha512-IBlbUGpI7FoWWr1FHQDntMkA7nCEI7Hox/hmwgWgRqohV7SRRkbWB86PayOX++NwtJTapQ8wIs7XtEp4fXonwA==}
dev: true
- /@types/temp/0.9.1:
+ /@types/temp@0.9.1:
resolution: {integrity: sha512-yDQ8Y+oQi9V7VkexwE6NBSVyNuyNFeGI275yWXASc2DjmxNicMi9O50KxDpNlST1kBbV9jKYBHGXhgNYFMPqtA==}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.0.1
dev: true
- /@types/testing-library__jest-dom/5.14.5:
+ /@types/testing-library__jest-dom@5.14.5:
resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==}
dependencies:
'@types/jest': 28.1.6
- /@types/trusted-types/2.0.2:
- resolution: {integrity: sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==}
+ /@types/trusted-types@2.0.3:
+ resolution: {integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==}
dev: false
- /@types/unist/2.0.6:
+ /@types/unist@2.0.6:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
- /@types/ws/8.5.3:
- resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==}
+ /@types/ws@8.5.4:
+ resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==}
dependencies:
- '@types/node': 18.0.1
+ '@types/node': 20.2.3
dev: false
- /@types/yargs-parser/21.0.0:
+ /@types/yargs-parser@21.0.0:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
- /@types/yargs/16.0.4:
- resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==}
- dependencies:
- '@types/yargs-parser': 21.0.0
- dev: false
-
- /@types/yargs/17.0.10:
- resolution: {integrity: sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==}
+ /@types/yargs@16.0.5:
+ resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
dependencies:
'@types/yargs-parser': 21.0.0
dev: false
- /@types/yargs/17.0.11:
- resolution: {integrity: sha512-aB4y9UDUXTSMxmM4MH+YnuR0g5Cph3FLQBoWoMB21DSvFVAxRVEHEMx3TLh+zUZYMCQtKiqazz0Q4Rre31f/OA==}
+ /@types/yargs@17.0.24:
+ resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==}
dependencies:
'@types/yargs-parser': 21.0.0
- dev: true
- /@typescript-eslint/eslint-plugin/5.23.0_ttki4ynzteu7mlbvqnybjztyzm:
- resolution: {integrity: sha512-hEcSmG4XodSLiAp1uxv/OQSGsDY6QN3TcRU32gANp+19wGE1QQZLRS8/GV58VRUoXhnkuJ3ZxNQ3T6Z6zM59DA==}
+ /@typescript-eslint/eslint-plugin@5.59.7(@typescript-eslint/parser@5.59.7)(eslint@8.43.0)(typescript@4.6.4):
+ resolution: {integrity: sha512-BL+jYxUFIbuYwy+4fF86k5vdT9lT0CNJ6HtwrIvGh0PhH8s0yy5rjaKH2fDCrz5ITHy07WCzVGNvAmjJh4IJFA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -7040,37 +6349,38 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.23.0_uywfi3zeys2kqr4zjbjh4sypl4
- '@typescript-eslint/scope-manager': 5.23.0
- '@typescript-eslint/type-utils': 5.23.0_uywfi3zeys2kqr4zjbjh4sypl4
- '@typescript-eslint/utils': 5.23.0_uywfi3zeys2kqr4zjbjh4sypl4
+ '@eslint-community/regexpp': 4.5.1
+ '@typescript-eslint/parser': 5.59.7(eslint@8.43.0)(typescript@4.6.4)
+ '@typescript-eslint/scope-manager': 5.59.7
+ '@typescript-eslint/type-utils': 5.59.7(eslint@8.43.0)(typescript@4.6.4)
+ '@typescript-eslint/utils': 5.59.7(eslint@8.43.0)(typescript@4.6.4)
debug: 4.3.4
eslint: 8.43.0
- functional-red-black-tree: 1.0.1
- ignore: 5.2.0
- regexpp: 3.2.0
- semver: 7.3.7
- tsutils: 3.21.0_typescript@4.6.4
+ grapheme-splitter: 1.0.4
+ ignore: 5.2.4
+ natural-compare-lite: 1.4.0
+ semver: 7.5.1
+ tsutils: 3.21.0(typescript@4.6.4)
typescript: 4.6.4
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/experimental-utils/5.23.0_uywfi3zeys2kqr4zjbjh4sypl4:
- resolution: {integrity: sha512-I+3YGQztH1DM9kgWzjslpZzJCBMRz0KhYG2WP62IwpooeZ1L6Qt0mNK8zs+uP+R2HOsr+TeDW35Pitc3PfVv8Q==}
+ /@typescript-eslint/experimental-utils@5.59.7(eslint@8.43.0)(typescript@4.6.4):
+ resolution: {integrity: sha512-jqM0Cjfvta/sBlY1MxdXYv853/dJUC2wmUWnKoG2srwp0njNGQ6Zu/XLWoRFiLvocQbzBbpHkPFwKgC2UqyovA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.23.0_uywfi3zeys2kqr4zjbjh4sypl4
+ '@typescript-eslint/utils': 5.59.7(eslint@8.43.0)(typescript@4.6.4)
eslint: 8.43.0
transitivePeerDependencies:
- supports-color
- typescript
dev: false
- /@typescript-eslint/parser/5.23.0_uywfi3zeys2kqr4zjbjh4sypl4:
- resolution: {integrity: sha512-V06cYUkqcGqpFjb8ttVgzNF53tgbB/KoQT/iB++DOIExKmzI9vBJKjZKt/6FuV9c+zrDsvJKbJ2DOCYwX91cbw==}
+ /@typescript-eslint/parser@5.59.7(eslint@8.43.0)(typescript@4.6.4):
+ resolution: {integrity: sha512-VhpsIEuq/8i5SF+mPg9jSdIwgMBBp0z9XqjiEay+81PYLJuroN+ET1hM5IhkiYMJd9MkTz8iJLt7aaGAgzWUbQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -7079,9 +6389,9 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.23.0
- '@typescript-eslint/types': 5.23.0
- '@typescript-eslint/typescript-estree': 5.23.0_typescript@4.6.4
+ '@typescript-eslint/scope-manager': 5.59.7
+ '@typescript-eslint/types': 5.59.7
+ '@typescript-eslint/typescript-estree': 5.59.7(typescript@4.6.4)
debug: 4.3.4
eslint: 8.43.0
typescript: 4.6.4
@@ -7089,16 +6399,16 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/scope-manager/5.23.0:
- resolution: {integrity: sha512-EhjaFELQHCRb5wTwlGsNMvzK9b8Oco4aYNleeDlNuL6qXWDF47ch4EhVNPh8Rdhf9tmqbN4sWDk/8g+Z/J8JVw==}
+ /@typescript-eslint/scope-manager@5.59.7:
+ resolution: {integrity: sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.23.0
- '@typescript-eslint/visitor-keys': 5.23.0
+ '@typescript-eslint/types': 5.59.7
+ '@typescript-eslint/visitor-keys': 5.59.7
dev: false
- /@typescript-eslint/type-utils/5.23.0_uywfi3zeys2kqr4zjbjh4sypl4:
- resolution: {integrity: sha512-iuI05JsJl/SUnOTXA9f4oI+/4qS/Zcgk+s2ir+lRmXI+80D8GaGwoUqs4p+X+4AxDolPpEpVUdlEH4ADxFy4gw==}
+ /@typescript-eslint/type-utils@5.59.7(eslint@8.43.0)(typescript@4.6.4):
+ resolution: {integrity: sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -7107,22 +6417,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/utils': 5.23.0_uywfi3zeys2kqr4zjbjh4sypl4
+ '@typescript-eslint/typescript-estree': 5.59.7(typescript@4.6.4)
+ '@typescript-eslint/utils': 5.59.7(eslint@8.43.0)(typescript@4.6.4)
debug: 4.3.4
eslint: 8.43.0
- tsutils: 3.21.0_typescript@4.6.4
+ tsutils: 3.21.0(typescript@4.6.4)
typescript: 4.6.4
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/types/5.23.0:
- resolution: {integrity: sha512-NfBsV/h4dir/8mJwdZz7JFibaKC3E/QdeMEDJhiAE3/eMkoniZ7MjbEMCGXw6MZnZDMN3G9S0mH/6WUIj91dmw==}
+ /@typescript-eslint/types@5.59.7:
+ resolution: {integrity: sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
- /@typescript-eslint/typescript-estree/5.23.0_typescript@4.6.4:
- resolution: {integrity: sha512-xE9e0lrHhI647SlGMl+m+3E3CKPF1wzvvOEWnuE3CCjjT7UiRnDGJxmAcVKJIlFgK6DY9RB98eLr1OPigPEOGg==}
+ /@typescript-eslint/typescript-estree@5.59.7(typescript@4.6.4):
+ resolution: {integrity: sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -7130,196 +6441,226 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.23.0
- '@typescript-eslint/visitor-keys': 5.23.0
+ '@typescript-eslint/types': 5.59.7
+ '@typescript-eslint/visitor-keys': 5.59.7
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.3.7
- tsutils: 3.21.0_typescript@4.6.4
+ semver: 7.5.1
+ tsutils: 3.21.0(typescript@4.6.4)
typescript: 4.6.4
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/utils/5.23.0_uywfi3zeys2kqr4zjbjh4sypl4:
- resolution: {integrity: sha512-dbgaKN21drqpkbbedGMNPCtRPZo1IOUr5EI9Jrrh99r5UW5Q0dz46RKXeSBoPV+56R6dFKpbrdhgUNSJsDDRZA==}
+ /@typescript-eslint/utils@5.59.7(eslint@8.43.0)(typescript@4.6.4):
+ resolution: {integrity: sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0)
'@types/json-schema': 7.0.11
- '@typescript-eslint/scope-manager': 5.23.0
- '@typescript-eslint/types': 5.23.0
- '@typescript-eslint/typescript-estree': 5.23.0_typescript@4.6.4
+ '@types/semver': 7.5.0
+ '@typescript-eslint/scope-manager': 5.59.7
+ '@typescript-eslint/types': 5.59.7
+ '@typescript-eslint/typescript-estree': 5.59.7(typescript@4.6.4)
eslint: 8.43.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.43.0
+ semver: 7.5.1
transitivePeerDependencies:
- supports-color
- typescript
dev: false
- /@typescript-eslint/visitor-keys/5.23.0:
- resolution: {integrity: sha512-Vd4mFNchU62sJB8pX19ZSPog05B0Y0CE2UxAZPT5k4iqhRYjPnqyY3woMxCd0++t9OTqkgjST+1ydLBi7e2Fvg==}
+ /@typescript-eslint/visitor-keys@5.59.7:
+ resolution: {integrity: sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.23.0
+ '@typescript-eslint/types': 5.59.7
eslint-visitor-keys: 3.4.1
dev: false
- /@vanilla-extract/css/1.7.2:
- resolution: {integrity: sha512-wRsV9sSD4qN6+dbS1ywExw5kEU4Fk/UipNKFsGwwUsHLyuPKK8BaZUmzfyAQex6POHYQboYv6Ajbqpvhx2KhfQ==}
+ /@vanilla-extract/babel-plugin-debug-ids@1.0.3:
+ resolution: {integrity: sha512-vm4jYu1xhSa6ofQ9AhIpR3DkAp4c+eoR1Rpm8/TQI4DmWbmGbOjYRcqV0aWsfaIlNhN4kFuxFMKBNN9oG6iRzA==}
+ dependencies:
+ '@babel/core': 7.21.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@vanilla-extract/css@1.11.0:
+ resolution: {integrity: sha512-uohj+8cGWbnrVzTfrjlJeXqdGjH3d3TcscdQxKe3h5bb5QQXTpPSq+c+SeWADIGiZybzcW0CBvZV8jsy1ywY9w==}
dependencies:
- '@emotion/hash': 0.8.0
+ '@emotion/hash': 0.9.1
'@vanilla-extract/private': 1.0.3
+ ahocorasick: 1.0.2
chalk: 4.1.2
css-what: 5.1.0
cssesc: 3.0.0
- csstype: 3.1.0
- deep-object-diff: 1.1.7
- deepmerge: 4.2.2
- escape-string-regexp: 4.0.0
+ csstype: 3.1.2
+ deep-object-diff: 1.1.9
+ deepmerge: 4.3.1
media-query-parser: 2.0.2
outdent: 0.8.0
dev: true
- /@vanilla-extract/integration/5.0.0:
- resolution: {integrity: sha512-HwglsIxGYtV4IXFfyQ6GzZLFoaWaW+QkNx8UhXbgsCWUoPqpSbioukCOA+SuSuzsIcEZ3hkD0Y5ixITQNtnzjQ==}
+ /@vanilla-extract/integration@6.2.1:
+ resolution: {integrity: sha512-+xYJz07G7TFAMZGrOqArOsURG+xcYvqctujEkANjw2McCBvGEK505RxQqOuNiA9Mi9hgGdNp2JedSa94f3eoLg==}
dependencies:
- '@vanilla-extract/css': 1.7.2
- esbuild: 0.11.23
+ '@babel/core': 7.21.8
+ '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.8)
+ '@vanilla-extract/babel-plugin-debug-ids': 1.0.3
+ '@vanilla-extract/css': 1.11.0
+ esbuild: 0.17.6
eval: 0.1.6
find-up: 5.0.0
javascript-stringify: 2.1.0
lodash: 4.17.21
+ mlly: 1.3.0
outdent: 0.8.0
+ vite: 4.3.8
+ vite-node: 0.28.5
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
dev: true
- /@vanilla-extract/private/1.0.3:
+ /@vanilla-extract/private@1.0.3:
resolution: {integrity: sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==}
dev: true
- /@vanilla-extract/webpack-plugin/2.1.11_webpack@5.74.0:
- resolution: {integrity: sha512-jCm2TT1jSN/m0TZXYtByuHOsX+ZDimku1SJzvDWF1Eqs3f0If2W1zcd+gaXR6lSaVJ/1MSB/evmeutsT/D3MoA==}
+ /@vanilla-extract/webpack-plugin@2.2.0(webpack@5.84.0):
+ resolution: {integrity: sha512-EQrnT7gIki+Wm57eIRZRw6pi4M4VVnwiSp5OOcQF81XdZvoYXo51Ern7+dHKS+Xxli151BWTUsg/UZSpaAz29Q==}
peerDependencies:
webpack: ^4.30.0 || ^5.20.2
dependencies:
- '@vanilla-extract/integration': 5.0.0
+ '@vanilla-extract/integration': 6.2.1
chalk: 4.1.2
debug: 4.3.4
- loader-utils: 2.0.2
- webpack: 5.74.0
+ loader-utils: 2.0.4
+ webpack: 5.84.0
transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - sass
+ - stylus
+ - sugarss
- supports-color
+ - terser
dev: true
- /@webassemblyjs/ast/1.11.1:
- resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
+ /@webassemblyjs/ast@1.11.6:
+ resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==}
dependencies:
- '@webassemblyjs/helper-numbers': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
+ '@webassemblyjs/helper-numbers': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- /@webassemblyjs/floating-point-hex-parser/1.11.1:
- resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
+ /@webassemblyjs/floating-point-hex-parser@1.11.6:
+ resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
- /@webassemblyjs/helper-api-error/1.11.1:
- resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
+ /@webassemblyjs/helper-api-error@1.11.6:
+ resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
- /@webassemblyjs/helper-buffer/1.11.1:
- resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
+ /@webassemblyjs/helper-buffer@1.11.6:
+ resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==}
- /@webassemblyjs/helper-numbers/1.11.1:
- resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
+ /@webassemblyjs/helper-numbers@1.11.6:
+ resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
+ '@webassemblyjs/floating-point-hex-parser': 1.11.6
+ '@webassemblyjs/helper-api-error': 1.11.6
'@xtuc/long': 4.2.2
- /@webassemblyjs/helper-wasm-bytecode/1.11.1:
- resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
+ /@webassemblyjs/helper-wasm-bytecode@1.11.6:
+ resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
- /@webassemblyjs/helper-wasm-section/1.11.1:
- resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
+ /@webassemblyjs/helper-wasm-section@1.11.6:
+ resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/helper-buffer': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.11.6
- /@webassemblyjs/ieee754/1.11.1:
- resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
+ /@webassemblyjs/ieee754@1.11.6:
+ resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
dependencies:
'@xtuc/ieee754': 1.2.0
- /@webassemblyjs/leb128/1.11.1:
- resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
+ /@webassemblyjs/leb128@1.11.6:
+ resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
dependencies:
'@xtuc/long': 4.2.2
- /@webassemblyjs/utf8/1.11.1:
- resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
+ /@webassemblyjs/utf8@1.11.6:
+ resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
- /@webassemblyjs/wasm-edit/1.11.1:
- resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
+ /@webassemblyjs/wasm-edit@1.11.6:
+ resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/helper-wasm-section': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-opt': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- '@webassemblyjs/wast-printer': 1.11.1
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/helper-buffer': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/helper-wasm-section': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.11.6
+ '@webassemblyjs/wasm-opt': 1.11.6
+ '@webassemblyjs/wasm-parser': 1.11.6
+ '@webassemblyjs/wast-printer': 1.11.6
- /@webassemblyjs/wasm-gen/1.11.1:
- resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
+ /@webassemblyjs/wasm-gen@1.11.6:
+ resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
- /@webassemblyjs/wasm-opt/1.11.1:
- resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
+ /@webassemblyjs/wasm-opt@1.11.6:
+ resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/helper-buffer': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.11.6
+ '@webassemblyjs/wasm-parser': 1.11.6
- /@webassemblyjs/wasm-parser/1.11.1:
- resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
+ /@webassemblyjs/wasm-parser@1.11.6:
+ resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
- /@webassemblyjs/wast-printer/1.11.1:
- resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
+ /@webassemblyjs/wast-printer@1.11.6:
+ resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==}
dependencies:
- '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/ast': 1.11.6
'@xtuc/long': 4.2.2
- /@xmldom/xmldom/0.7.5:
- resolution: {integrity: sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==}
+ /@xmldom/xmldom@0.7.10:
+ resolution: {integrity: sha512-hb9QhOg5MGmpVkFcoZ9XJMe1em5gd0e2eqqjK87O1dwULedXsnY/Zg/Ju6lcohA+t6jVkmKpe7I1etqhvdRdrQ==}
engines: {node: '>=10.0.0'}
- /@xtuc/ieee754/1.2.0:
+ /@xtuc/ieee754@1.2.0:
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
- /@xtuc/long/4.2.2:
+ /@xtuc/long@4.2.2:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- /abab/2.0.6:
+ /abab@2.0.6:
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
dev: false
- /accepts/1.3.8:
+ /accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
dependencies:
@@ -7327,81 +6668,67 @@ packages:
negotiator: 0.6.3
dev: false
- /acorn-globals/6.0.0:
+ /acorn-globals@6.0.0:
resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==}
dependencies:
acorn: 7.4.1
acorn-walk: 7.2.0
dev: false
- /acorn-import-assertions/1.8.0_acorn@8.7.1:
- resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
- peerDependencies:
- acorn: ^8
- dependencies:
- acorn: 8.7.1
- dev: false
-
- /acorn-import-assertions/1.8.0_acorn@8.8.0:
- resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
+ /acorn-import-assertions@1.9.0(acorn@8.8.2):
+ resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
peerDependencies:
acorn: ^8
dependencies:
- acorn: 8.8.0
+ acorn: 8.8.2
- /acorn-jsx/5.3.2_acorn@8.8.0:
+ /acorn-jsx@5.3.2(acorn@8.8.2):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.8.0
+ acorn: 8.8.2
- /acorn-node/1.8.2:
+ /acorn-node@1.8.2:
resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
dependencies:
acorn: 7.4.1
acorn-walk: 7.2.0
xtend: 4.0.2
- /acorn-walk/7.2.0:
+ /acorn-walk@7.2.0:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
- /acorn-walk/8.2.0:
+ /acorn-walk@8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
engines: {node: '>=0.4.0'}
dev: false
- /acorn/7.4.1:
+ /acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
- /acorn/8.7.1:
- resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==}
- engines: {node: '>=0.4.0'}
- hasBin: true
- dev: false
-
- /acorn/8.8.0:
- resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==}
+ /acorn@8.8.2:
+ resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
hasBin: true
- /address/1.2.0:
- resolution: {integrity: sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==}
+ /address@1.2.2:
+ resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
engines: {node: '>= 10.0.0'}
dev: false
- /adjust-sourcemap-loader/4.0.0:
+ /adjust-sourcemap-loader@4.0.0:
resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==}
engines: {node: '>=8.9'}
dependencies:
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
regex-parser: 2.2.11
dev: false
- /agent-base/6.0.2:
+ /agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
dependencies:
@@ -7410,30 +6737,36 @@ packages:
- supports-color
dev: false
- /ajv-formats/2.1.1:
+ /ahocorasick@1.0.2:
+ resolution: {integrity: sha512-hCOfMzbFx5IDutmWLAt6MZwOUjIfSM9G9FyVxytmE4Rs/5YDPWQrD/+IR1w+FweD9H2oOZEnv36TmkjhNURBVA==}
+ dev: true
+
+ /ajv-formats@2.1.1(ajv@8.12.0):
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
+ peerDependencies:
+ ajv: ^8.0.0
peerDependenciesMeta:
ajv:
optional: true
dependencies:
- ajv: 8.11.0
+ ajv: 8.12.0
- /ajv-keywords/3.5.2_ajv@6.12.6:
+ /ajv-keywords@3.5.2(ajv@6.12.6):
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
ajv: ^6.9.1
dependencies:
ajv: 6.12.6
- /ajv-keywords/5.1.0_ajv@8.11.0:
+ /ajv-keywords@5.1.0(ajv@8.12.0):
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
dependencies:
- ajv: 8.11.0
+ ajv: 8.12.0
fast-deep-equal: 3.1.3
- /ajv/6.12.6:
+ /ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
fast-deep-equal: 3.1.3
@@ -7441,641 +6774,592 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- /ajv/8.11.0:
- resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==}
+ /ajv@8.12.0:
+ resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
dependencies:
fast-deep-equal: 3.1.3
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
uri-js: 4.4.1
- /alphanum-sort/1.0.2:
- resolution: {integrity: sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=}
- dev: false
-
- /ansi-colors/4.1.3:
+ /ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
dev: true
- /ansi-escapes/4.3.2:
+ /ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.21.3
- /ansi-html-community/0.0.8:
+ /ansi-html-community@0.0.8:
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
engines: {'0': node >= 0.8.0}
hasBin: true
dev: false
- /ansi-regex/5.0.1:
+ /ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- /ansi-regex/6.0.1:
+ /ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
dev: false
- /ansi-styles/3.2.1:
+ /ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
- /ansi-styles/4.3.0:
+ /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
- /ansi-styles/5.2.0:
+ /ansi-styles@5.2.0:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- /any-promise/1.3.0:
+ /any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
- /anymatch/3.1.2:
- resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==}
+ /anymatch@3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
- /arg/5.0.2:
+ /arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
- /argparse/1.0.10:
+ /argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
sprintf-js: 1.0.3
- /argparse/2.0.1:
+ /argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- /aria-hidden/1.1.3:
- resolution: {integrity: sha512-RhVWFtKH5BiGMycI72q2RAFMLQi8JP9bLuQXgR5a8Znp7P5KOIADSJeyfI8PCVxLEp067B2HbP5JIiI/PXIZeA==}
- engines: {node: '>=8.5.0'}
+ /aria-hidden@1.2.3:
+ resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==}
+ engines: {node: '>=10'}
dependencies:
- tslib: 1.14.1
+ tslib: 2.4.0
dev: false
- /aria-query/4.2.2:
- resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
- engines: {node: '>=6.0'}
+ /aria-query@5.1.3:
+ resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
dependencies:
- '@babel/runtime': 7.18.9
- '@babel/runtime-corejs3': 7.17.9
- dev: false
+ deep-equal: 2.2.1
- /aria-query/5.0.0:
- resolution: {integrity: sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==}
- engines: {node: '>=6.0'}
+ /array-buffer-byte-length@1.0.0:
+ resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
+ dependencies:
+ call-bind: 1.0.2
+ is-array-buffer: 3.0.2
- /array-flatten/1.1.1:
- resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=}
+ /array-flatten@1.1.1:
+ resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
dev: false
- /array-flatten/2.1.2:
+ /array-flatten@2.1.2:
resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
dev: false
- /array-includes/3.1.5:
- resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==}
+ /array-includes@3.1.6:
+ resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
- get-intrinsic: 1.1.1
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
+ get-intrinsic: 1.2.1
is-string: 1.0.7
dev: false
- /array-union/2.1.0:
+ /array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- /array.prototype.flat/1.3.0:
- resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==}
+ /array.prototype.flat@1.3.1:
+ resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
+ es-shim-unscopables: 1.0.0
+
+ /array.prototype.flatmap@1.3.1:
+ resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
+ es-shim-unscopables: 1.0.0
+ dev: false
+
+ /array.prototype.reduce@1.0.5:
+ resolution: {integrity: sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
- es-shim-unscopables: 1.0.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
+ es-array-method-boxes-properly: 1.0.0
+ is-string: 1.0.7
+ dev: false
- /array.prototype.flatmap/1.3.0:
- resolution: {integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==}
- engines: {node: '>= 0.4'}
+ /array.prototype.tosorted@1.1.1:
+ resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
es-shim-unscopables: 1.0.0
+ get-intrinsic: 1.2.1
dev: false
- /arrify/1.0.1:
+ /arrify@1.0.1:
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
engines: {node: '>=0.10.0'}
dev: true
- /asap/2.0.6:
- resolution: {integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=}
+ /asap@2.0.6:
+ resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
dev: false
- /ast-types-flow/0.0.7:
- resolution: {integrity: sha1-9wtzXGvKGlycItmCw+Oef+ujva0=}
+ /ast-types-flow@0.0.7:
+ resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
dev: false
- /astring/1.8.1:
- resolution: {integrity: sha512-Aj3mbwVzj7Vve4I/v2JYOPFkCGM2YS7OqQTNSxmUR+LECRpokuPgAYghePgr6SALDo5bD5DlfbSaYjOzGJZOLQ==}
+ /astring@1.8.5:
+ resolution: {integrity: sha512-TuBbdn7jWVzf8dmFGTaRpW8qgANtWLi1qJLnkfGO5uVf6jf9f/F4B1H35tnOI+qVYZo3p3i8WZlbZOuPAE0wEA==}
hasBin: true
dev: false
- /async/2.6.3:
- resolution: {integrity: sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==}
+ /async@2.6.4:
+ resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
dependencies:
lodash: 4.17.21
dev: true
- /async/3.2.3:
- resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==}
+ /async@3.2.4:
+ resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
dev: false
- /asynckit/0.4.0:
- resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=}
+ /asynckit@0.4.0:
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
dev: false
- /at-least-node/1.0.0:
+ /at-least-node@1.0.0:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
dev: false
- /autoprefixer/10.4.7_postcss@8.4.14:
- resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==}
+ /autoprefixer@10.4.14(postcss@8.4.16):
+ resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.20.3
- caniuse-lite: 1.0.30001341
+ browserslist: 4.21.5
+ caniuse-lite: 1.0.30001489
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
- dev: false
- /autoprefixer/10.4.8_postcss@8.4.16:
- resolution: {integrity: sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==}
+ /autoprefixer@10.4.14(postcss@8.4.23):
+ resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.21.3
- caniuse-lite: 1.0.30001374
+ browserslist: 4.21.5
+ caniuse-lite: 1.0.30001489
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /axe-core/4.4.2:
- resolution: {integrity: sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==}
- engines: {node: '>=12'}
- dev: false
+ /available-typed-arrays@1.0.5:
+ resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
+ engines: {node: '>= 0.4'}
- /axe-core/4.4.3:
- resolution: {integrity: sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==}
+ /axe-core@4.7.1:
+ resolution: {integrity: sha512-sCXXUhA+cljomZ3ZAwb8i1p3oOlkABzPy08ZDAoGcYuvtBPlQ1Ytde129ArXyHWDhfeewq7rlx9F+cUx2SSlkg==}
engines: {node: '>=4'}
- /axobject-query/2.2.0:
- resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
+ /axobject-query@3.1.1:
+ resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==}
+ dependencies:
+ deep-equal: 2.2.1
dev: false
- /babel-jest/27.5.1_@babel+core@7.18.5:
+ /babel-jest@27.5.1(@babel/core@7.18.10):
resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.18.5
+ '@babel/core': 7.18.10
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/babel__core': 7.1.19
+ '@types/babel__core': 7.20.0
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 27.5.1_@babel+core@7.18.5
+ babel-preset-jest: 27.5.1(@babel/core@7.18.10)
chalk: 4.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
dev: false
- /babel-jest/28.1.3_@babel+core@7.18.10:
+ /babel-jest@28.1.3(@babel/core@7.21.8):
resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.18.10
+ '@babel/core': 7.21.8
'@jest/transform': 28.1.3
- '@types/babel__core': 7.1.19
+ '@types/babel__core': 7.20.0
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 28.1.3_@babel+core@7.18.10
+ babel-preset-jest: 28.1.3(@babel/core@7.21.8)
chalk: 4.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-loader/8.2.5_te6ollfzjcco6mbxjl755ucqke:
+ /babel-loader@8.2.5(@babel/core@7.18.10)(webpack@5.84.0):
resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.18.5
+ '@babel/core': 7.18.10
find-cache-dir: 3.3.2
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.73.0
+ webpack: 5.84.0
dev: false
- /babel-loader/8.2.5_xc6oct4hcywdrbo4ned6ytbybm:
- resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
- engines: {node: '>= 8.9'}
+ /babel-loader@9.1.2(@babel/core@7.21.8)(webpack@5.84.0):
+ resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==}
+ engines: {node: '>= 14.15.0'}
peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
+ '@babel/core': ^7.12.0
+ webpack: '>=5'
dependencies:
- '@babel/core': 7.18.10
+ '@babel/core': 7.21.8
find-cache-dir: 3.3.2
- loader-utils: 2.0.2
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 5.74.0
+ schema-utils: 4.0.1
+ webpack: 5.84.0
- /babel-plugin-dynamic-import-node/2.3.3:
- resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
- dependencies:
- object.assign: 4.1.2
-
- /babel-plugin-istanbul/6.1.1:
+ /babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.21.5
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
- istanbul-lib-instrument: 5.2.0
+ istanbul-lib-instrument: 5.2.1
test-exclude: 6.0.0
transitivePeerDependencies:
- supports-color
- /babel-plugin-jest-hoist/27.5.1:
+ /babel-plugin-jest-hoist@27.5.1:
resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/template': 7.16.7
- '@babel/types': 7.17.10
- '@types/babel__core': 7.1.19
- '@types/babel__traverse': 7.17.1
+ '@babel/template': 7.21.9
+ '@babel/types': 7.21.5
+ '@types/babel__core': 7.20.0
+ '@types/babel__traverse': 7.18.5
dev: false
- /babel-plugin-jest-hoist/28.1.3:
+ /babel-plugin-jest-hoist@28.1.3:
resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.18.10
- '@types/babel__core': 7.1.19
- '@types/babel__traverse': 7.18.0
+ '@babel/template': 7.21.9
+ '@babel/types': 7.21.5
+ '@types/babel__core': 7.20.0
+ '@types/babel__traverse': 7.18.5
dev: true
- /babel-plugin-macros/3.1.0:
+ /babel-plugin-macros@3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.18.3
- cosmiconfig: 7.0.1
- resolve: 1.22.0
+ '@babel/runtime': 7.21.5
+ cosmiconfig: 7.1.0
+ resolve: 1.22.2
dev: false
- /babel-plugin-named-asset-import/0.3.8_@babel+core@7.18.5:
+ /babel-plugin-named-asset-import@0.3.8(@babel/core@7.18.10):
resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==}
peerDependencies:
'@babel/core': ^7.1.0
dependencies:
- '@babel/core': 7.18.5
+ '@babel/core': 7.18.10
dev: false
- /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.5:
- resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==}
+ /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.18.10):
+ resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.18.6
- '@babel/core': 7.18.5
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5
+ '@babel/compat-data': 7.21.9
+ '@babel/core': 7.18.10
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.18.10)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.6:
- resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==}
+ /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.8):
+ resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.18.6
- '@babel/core': 7.18.6
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.6
+ '@babel/compat-data': 7.21.9
+ '@babel/core': 7.21.8
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.8)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: false
- /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.10:
- resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==}
+ /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.18.10):
+ resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.18.8
'@babel/core': 7.18.10
- '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
-
- /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.5:
- resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5
- core-js-compat: 3.23.3
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.18.10)
+ core-js-compat: 3.30.2
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.6:
- resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
+ /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.8):
+ resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.6
- core-js-compat: 3.23.3
+ '@babel/core': 7.21.8
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.8)
+ core-js-compat: 3.30.2
transitivePeerDependencies:
- supports-color
- dev: false
- /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
+ /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.18.10):
+ resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10
- core-js-compat: 3.24.1
- transitivePeerDependencies:
- - supports-color
-
- /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.5:
- resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.5
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.6:
- resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.6
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.6
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.18.10:
- resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==}
+ /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.8):
+ resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10
+ '@babel/core': 7.21.8
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.8)
transitivePeerDependencies:
- supports-color
- /babel-plugin-transform-react-remove-prop-types/0.4.24:
+ /babel-plugin-transform-react-remove-prop-types@0.4.24:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
dev: false
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.10:
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.18.10):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.10
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.10
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10
- dev: true
-
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.5:
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.10)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.18.10)
+ dev: false
+
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.8):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.5
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.5
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.5
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.5
- dev: false
-
- /babel-preset-jest/27.5.1_@babel+core@7.18.5:
+ '@babel/core': 7.21.8
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.8)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.8)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.8)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.8)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.8)
+ dev: true
+
+ /babel-preset-jest@27.5.1(@babel/core@7.18.10):
resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.5
+ '@babel/core': 7.18.10
babel-plugin-jest-hoist: 27.5.1
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.5
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.18.10)
dev: false
- /babel-preset-jest/28.1.3_@babel+core@7.18.10:
+ /babel-preset-jest@28.1.3(@babel/core@7.21.8):
resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.10
+ '@babel/core': 7.21.8
babel-plugin-jest-hoist: 28.1.3
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.8)
dev: true
- /babel-preset-react-app/10.0.1:
+ /babel-preset-react-app@10.0.1:
resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
dependencies:
- '@babel/core': 7.18.5
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.18.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.18.5
- '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.5
- '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5
- '@babel/preset-env': 7.18.2_@babel+core@7.18.5
- '@babel/preset-react': 7.17.12_@babel+core@7.18.5
- '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5
- '@babel/runtime': 7.18.3
+ '@babel/core': 7.18.10
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.18.10)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.10)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.18.10)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.18.10)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-runtime': 7.21.4(@babel/core@7.18.10)
+ '@babel/preset-env': 7.21.5(@babel/core@7.18.10)
+ '@babel/preset-react': 7.18.6(@babel/core@7.18.10)
+ '@babel/preset-typescript': 7.21.5(@babel/core@7.18.10)
+ '@babel/runtime': 7.21.5
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
transitivePeerDependencies:
- supports-color
dev: false
- /bail/1.0.5:
+ /bail@1.0.5:
resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==}
dev: false
- /bail/2.0.2:
+ /bail@2.0.2:
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
dev: false
- /balanced-match/1.0.2:
+ /balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- /base64-js/1.5.1:
+ /base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- /basic-auth/2.0.1:
+ /basic-auth@2.0.1:
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
engines: {node: '>= 0.8'}
dependencies:
safe-buffer: 5.1.2
dev: true
- /batch/0.6.1:
+ /batch@0.6.1:
resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=}
dev: false
- /better-path-resolve/1.0.0:
+ /better-path-resolve@1.0.0:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
engines: {node: '>=4'}
dependencies:
is-windows: 1.0.2
dev: true
- /bfj/7.0.2:
+ /bfj@7.0.2:
resolution: {integrity: sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==}
engines: {node: '>= 8.0.0'}
dependencies:
bluebird: 3.7.2
- check-types: 11.1.2
+ check-types: 11.2.2
hoopy: 0.1.4
tryer: 1.0.1
dev: false
- /big-integer/1.6.51:
- resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
- engines: {node: '>=0.6'}
-
- /big.js/5.2.2:
+ /big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- /binary-extensions/2.2.0:
+ /binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- /bindings/1.5.0:
+ /bindings@1.5.0:
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
dependencies:
file-uri-to-path: 1.0.0
dev: false
optional: true
- /bl/4.1.0:
+ /bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
buffer: 5.7.1
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
- /bluebird/3.7.2:
+ /bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
dev: false
- /body-parser/1.19.2:
- resolution: {integrity: sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==}
- engines: {node: '>= 0.8'}
- dependencies:
- bytes: 3.1.2
- content-type: 1.0.4
- debug: 2.6.9
- depd: 1.1.2
- http-errors: 1.8.1
- iconv-lite: 0.4.24
- on-finished: 2.3.0
- qs: 6.9.7
- raw-body: 2.4.3
- type-is: 1.6.18
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /body-parser/1.20.0:
- resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==}
+ /body-parser@1.20.1:
+ resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
bytes: 3.1.2
- content-type: 1.0.4
+ content-type: 1.0.5
debug: 2.6.9
depd: 2.0.0
destroy: 1.2.0
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.10.3
+ qs: 6.11.0
raw-body: 2.5.1
type-is: 1.6.18
unpipe: 1.0.0
@@ -8083,17 +7367,8 @@ packages:
- supports-color
dev: false
- /bonjour-service/1.0.12:
- resolution: {integrity: sha512-pMmguXYCu63Ug37DluMKEHdxc+aaIf/ay4YbF8Gxtba+9d3u+rmEWy61VK3Z3hp8Rskok3BunHYnG0dUHAsblw==}
- dependencies:
- array-flatten: 2.1.2
- dns-equal: 1.0.0
- fast-deep-equal: 3.1.3
- multicast-dns: 7.2.4
- dev: false
-
- /bonjour-service/1.0.13:
- resolution: {integrity: sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==}
+ /bonjour-service@1.1.1:
+ resolution: {integrity: sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==}
dependencies:
array-flatten: 2.1.2
dns-equal: 1.0.0
@@ -8101,199 +7376,115 @@ packages:
multicast-dns: 7.2.5
dev: false
- /boolbase/1.0.0:
- resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=}
+ /boolbase@1.0.0:
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- /brace-expansion/1.1.11:
+ /brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- /brace-expansion/2.0.1:
+ /brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
dependencies:
balanced-match: 1.0.2
- dev: false
- /braces/3.0.2:
+ /braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
- /breakword/1.0.5:
+ /breakword@1.0.5:
resolution: {integrity: sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg==}
dependencies:
wcwidth: 1.0.1
dev: true
- /broadcast-channel/3.7.0:
- resolution: {integrity: sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==}
- dependencies:
- '@babel/runtime': 7.18.9
- detect-node: 2.1.0
- js-sha3: 0.8.0
- microseconds: 0.2.0
- nano-time: 1.0.0
- oblivious-set: 1.0.0
- rimraf: 3.0.2
- unload: 2.2.0
-
- /browser-process-hrtime/1.0.0:
+ /browser-process-hrtime@1.0.0:
resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
dev: false
- /browserslist/4.19.1:
- resolution: {integrity: sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001299
- electron-to-chromium: 1.4.30
- escalade: 3.1.1
- node-releases: 2.0.1
- picocolors: 1.0.0
- dev: false
-
- /browserslist/4.19.3:
- resolution: {integrity: sha512-XK3X4xtKJ+Txj8G5c30B4gsm71s69lqXlkYui4s6EkKxuv49qjYlY6oVd+IFJ73d4YymtM3+djvvt/R/iJwwDg==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001312
- electron-to-chromium: 1.4.71
- escalade: 3.1.1
- node-releases: 2.0.2
- picocolors: 1.0.0
- dev: false
-
- /browserslist/4.20.0:
- resolution: {integrity: sha512-bnpOoa+DownbciXj0jVGENf8VYQnE2LNWomhYuCsMmmx9Jd9lwq0WXODuwpSsp8AVdKM2/HorrzxAfbKvWTByQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001315
- electron-to-chromium: 1.4.82
- escalade: 3.1.1
- node-releases: 2.0.2
- picocolors: 1.0.0
- dev: false
-
- /browserslist/4.20.3:
- resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001341
- electron-to-chromium: 1.4.137
- escalade: 3.1.1
- node-releases: 2.0.4
- picocolors: 1.0.0
- dev: false
-
- /browserslist/4.21.0:
- resolution: {integrity: sha512-UQxE0DIhRB5z/zDz9iA03BOfxaN2+GQdBYH/2WrSIWEUrnpzTPJbhqt+umq6r3acaPRTW1FNTkrcp0PXgtFkvA==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001358
- electron-to-chromium: 1.4.165
- node-releases: 2.0.5
- update-browserslist-db: 1.0.3_browserslist@4.21.0
- dev: false
-
- /browserslist/4.21.1:
- resolution: {integrity: sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001363
- electron-to-chromium: 1.4.177
- node-releases: 2.0.5
- update-browserslist-db: 1.0.4_browserslist@4.21.1
- dev: false
-
- /browserslist/4.21.3:
- resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==}
+ /browserslist@4.21.5:
+ resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001374
- electron-to-chromium: 1.4.211
- node-releases: 2.0.6
- update-browserslist-db: 1.0.5_browserslist@4.21.3
+ caniuse-lite: 1.0.30001489
+ electron-to-chromium: 1.4.405
+ node-releases: 2.0.12
+ update-browserslist-db: 1.0.11(browserslist@4.21.5)
- /bs-logger/0.2.6:
+ /bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
engines: {node: '>= 6'}
dependencies:
fast-json-stable-stringify: 2.1.0
dev: true
- /bser/2.1.1:
+ /bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
dependencies:
node-int64: 0.4.0
- /buffer-from/1.1.2:
+ /buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- /buffer/5.7.1:
+ /buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- /builtin-modules/3.3.0:
+ /builtin-modules@3.3.0:
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
- /bundle-require/3.0.4_esbuild@0.14.53:
- resolution: {integrity: sha512-VXG6epB1yrLAvWVQpl92qF347/UXmncQj7J3U8kZEbdVZ1ZkQyr4hYeL/9RvcE8vVVdp53dY78Fd/3pqfRqI1A==}
+ /bundle-require@4.0.1(esbuild@0.17.19):
+ resolution: {integrity: sha512-9NQkRHlNdNpDBGmLpngF3EFDcwodhMUuLz9PaWYciVcQF9SE4LFjM2DB/xV1Li5JiuDMv7ZUWuC3rGbqR0MAXQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
- esbuild: '>=0.13'
+ esbuild: '>=0.17'
dependencies:
- esbuild: 0.14.53
- load-tsconfig: 0.2.3
+ esbuild: 0.17.19
+ load-tsconfig: 0.2.5
- /bytes/3.0.0:
- resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=}
+ /bytes@3.0.0:
+ resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
dev: false
- /bytes/3.1.2:
+ /bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
dev: false
- /cac/6.7.12:
- resolution: {integrity: sha512-rM7E2ygtMkJqD9c7WnFU6fruFcN3xe4FM5yUmgxhZzIKJk4uHl9U/fhwdajGFQbQuv43FAUo1Fe8gX/oIKDeSA==}
+ /cac@6.7.14:
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- /call-bind/1.0.2:
+ /call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.2.1
- /callsites/3.1.0:
+ /callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- /camel-case/4.1.2:
+ /camel-case@4.1.2:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
tslib: 2.4.0
- dev: false
- /camelcase-css/2.0.1:
+ /camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
- /camelcase-keys/6.2.2:
+ /camelcase-keys@6.2.2:
resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
engines: {node: '>=8'}
dependencies:
@@ -8302,62 +7493,39 @@ packages:
quick-lru: 4.0.1
dev: true
- /camelcase/5.3.1:
+ /camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
- /camelcase/6.3.0:
+ /camelcase@6.3.0:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- /caniuse-api/3.0.0:
+ /caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.21.3
- caniuse-lite: 1.0.30001358
+ browserslist: 4.21.5
+ caniuse-lite: 1.0.30001489
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- /caniuse-lite/1.0.30001299:
- resolution: {integrity: sha512-iujN4+x7QzqA2NCSrS5VUy+4gLmRd4xv6vbBBsmfVqTx8bLAD8097euLqQgKxSVLvxjSDcvF1T/i9ocgnUFexw==}
- dev: false
-
- /caniuse-lite/1.0.30001312:
- resolution: {integrity: sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==}
- dev: false
-
- /caniuse-lite/1.0.30001315:
- resolution: {integrity: sha512-5v7LFQU4Sb/qvkz7JcZkvtSH1Ko+1x2kgo3ocdBeMGZSOFpuE1kkm0kpTwLtWeFrw5qw08ulLxJjVIXIS8MkiQ==}
- dev: false
-
- /caniuse-lite/1.0.30001341:
- resolution: {integrity: sha512-2SodVrFFtvGENGCv0ChVJIDQ0KPaS1cg7/qtfMaICgeMolDdo/Z2OD32F0Aq9yl6F4YFwGPBS5AaPqNYiW4PoA==}
- dev: false
-
- /caniuse-lite/1.0.30001358:
- resolution: {integrity: sha512-hvp8PSRymk85R20bsDra7ZTCpSVGN/PAz9pSAjPSjKC+rNmnUk5vCRgJwiTT/O4feQ/yu/drvZYpKxxhbFuChw==}
+ /caniuse-lite@1.0.30001489:
+ resolution: {integrity: sha512-x1mgZEXK8jHIfAxm+xgdpHpk50IN3z3q3zP261/WS+uvePxW8izXuCu6AHz0lkuYTlATDehiZ/tNyYBdSQsOUQ==}
- /caniuse-lite/1.0.30001363:
- resolution: {integrity: sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==}
- dev: false
-
- /caniuse-lite/1.0.30001374:
- resolution: {integrity: sha512-mWvzatRx3w+j5wx/mpFN5v5twlPrabG8NqX2c6e45LCpymdoGqNvRkRutFUqpRTXKFQFNQJasvK0YT7suW6/Hw==}
-
- /case-sensitive-paths-webpack-plugin/2.4.0:
+ /case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
engines: {node: '>=4'}
dev: false
- /ccount/1.1.0:
+ /ccount@1.1.0:
resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
dev: false
- /ccount/2.0.1:
+ /ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
dev: false
- /chalk/2.4.2:
+ /chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
dependencies:
@@ -8365,7 +7533,7 @@ packages:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- /chalk/3.0.0:
+ /chalk@3.0.0:
resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==}
engines: {node: '>=8'}
dependencies:
@@ -8373,78 +7541,73 @@ packages:
supports-color: 7.2.0
dev: false
- /chalk/4.1.1:
+ /chalk@4.1.1:
resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==}
engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- /chalk/4.1.2:
+ /chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- /char-regex/1.0.2:
+ /char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
- /char-regex/2.0.1:
+ /char-regex@2.0.1:
resolution: {integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==}
engines: {node: '>=12.20'}
dev: false
- /character-entities-html4/1.1.4:
+ /character-entities-html4@1.1.4:
resolution: {integrity: sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==}
dev: false
- /character-entities-html4/2.1.0:
+ /character-entities-html4@2.1.0:
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
dev: false
- /character-entities-legacy/1.1.4:
+ /character-entities-legacy@1.1.4:
resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
dev: false
- /character-entities-legacy/3.0.0:
+ /character-entities-legacy@3.0.0:
resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
dev: false
- /character-entities/1.2.4:
+ /character-entities@1.2.4:
resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
dev: false
- /character-entities/2.0.1:
- resolution: {integrity: sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ==}
+ /character-entities@2.0.2:
+ resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
dev: false
- /character-reference-invalid/1.1.4:
+ /character-reference-invalid@1.1.4:
resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
dev: false
- /character-reference-invalid/2.0.1:
+ /character-reference-invalid@2.0.1:
resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
dev: false
- /charcodes/0.2.0:
- resolution: {integrity: sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==}
- engines: {node: '>=6'}
- dev: false
-
- /chardet/0.7.0:
+ /chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
- /check-types/11.1.2:
- resolution: {integrity: sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==}
+ /check-types@11.2.2:
+ resolution: {integrity: sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==}
dev: false
- /chokidar/3.5.3:
+ /chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
dependencies:
- anymatch: 3.1.2
+ anymatch: 3.1.3
braces: 3.0.2
glob-parent: 5.1.2
is-binary-path: 2.1.0
@@ -8454,47 +7617,42 @@ packages:
optionalDependencies:
fsevents: 2.3.2
- /chrome-trace-event/1.0.3:
+ /chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
- /ci-info/3.3.1:
- resolution: {integrity: sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==}
- dev: false
-
- /ci-info/3.3.2:
- resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==}
- dev: true
+ /ci-info@3.8.0:
+ resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
+ engines: {node: '>=8'}
- /cjs-module-lexer/1.2.2:
+ /cjs-module-lexer@1.2.2:
resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==}
- /classnames/2.3.1:
- resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==}
+ /classnames@2.3.2:
+ resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
dev: false
- /clean-css/5.2.1:
- resolution: {integrity: sha512-ooQCa1/70oRfVdUUGjKpbHuxgMgm8BsDT5EBqBGvPxMoRoGXf4PNx5mMnkjzJ9Ptx4vvmDdha0QVh86QtYIk1g==}
+ /clean-css@5.3.2:
+ resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==}
engines: {node: '>= 10.0'}
dependencies:
source-map: 0.6.1
- dev: false
- /cli-cursor/3.1.0:
+ /cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
dependencies:
restore-cursor: 3.1.0
- /cli-spinners/2.6.1:
- resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
+ /cli-spinners@2.9.0:
+ resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==}
engines: {node: '>=6'}
- /cli-width/3.0.0:
+ /cli-width@3.0.0:
resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
engines: {node: '>= 10'}
- /cliui/6.0.0:
+ /cliui@6.0.0:
resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
dependencies:
string-width: 4.2.3
@@ -8502,14 +7660,23 @@ packages:
wrap-ansi: 6.2.0
dev: true
- /cliui/7.0.4:
+ /cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
dependencies:
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
+ dev: false
+
+ /cliui@8.0.1:
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 7.0.0
- /clone-deep/4.0.1:
+ /clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
dependencies:
@@ -8518,15 +7685,15 @@ packages:
shallow-clone: 3.0.1
dev: false
- /clone/1.0.4:
+ /clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
- /co/4.6.0:
- resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=}
+ /co@4.6.0:
+ resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- /coa/2.0.2:
+ /coa@2.0.2:
resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==}
engines: {node: '>= 4.0'}
dependencies:
@@ -8535,88 +7702,83 @@ packages:
q: 1.5.1
dev: false
- /collect-v8-coverage/1.0.1:
+ /collect-v8-coverage@1.0.1:
resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
- /color-convert/1.9.3:
+ /color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
- /color-convert/2.0.1:
+ /color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
- /color-name/1.1.3:
+ /color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
- /color-name/1.1.4:
+ /color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- /colord/2.9.2:
- resolution: {integrity: sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==}
-
- /colorette/2.0.16:
- resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==}
- dev: false
+ /colord@2.9.3:
+ resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
- /colorette/2.0.19:
- resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
+ /colorette@2.0.20:
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
dev: false
- /combined-stream/1.0.8:
+ /combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
dependencies:
delayed-stream: 1.0.0
dev: false
- /comma-separated-tokens/1.0.8:
+ /comma-separated-tokens@1.0.8:
resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
dev: false
- /comma-separated-tokens/2.0.2:
- resolution: {integrity: sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==}
+ /comma-separated-tokens@2.0.3:
+ resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
dev: false
- /commander/2.20.3:
+ /commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- /commander/4.1.1:
+ /commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
- /commander/7.2.0:
+ /commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- /commander/8.3.0:
+ /commander@8.3.0:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
- dev: false
- /common-path-prefix/3.0.0:
+ /common-path-prefix@3.0.0:
resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
dev: false
- /common-tags/1.8.2:
+ /common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
dev: false
- /commondir/1.0.1:
- resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=}
+ /commondir@1.0.1:
+ resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- /compressible/2.0.18:
+ /compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
dev: false
- /compression/1.7.4:
+ /compression@1.7.4:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -8631,138 +7793,115 @@ packages:
- supports-color
dev: false
- /compute-scroll-into-view/1.0.17:
- resolution: {integrity: sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==}
+ /compute-scroll-into-view@1.0.20:
+ resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==}
+ dev: false
+
+ /compute-scroll-into-view@3.0.3:
+ resolution: {integrity: sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A==}
dev: false
- /concat-map/0.0.1:
+ /concat-map@0.0.1:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
- /concurrently/7.3.0:
+ /concurrently@7.3.0:
resolution: {integrity: sha512-IiDwm+8DOcFEInca494A8V402tNTQlJaYq78RF2rijOrKEk/AOHTxhN4U1cp7GYKYX5Q6Ymh1dLTBlzIMN0ikA==}
engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0}
hasBin: true
dependencies:
chalk: 4.1.2
- date-fns: 2.29.1
+ date-fns: 2.30.0
lodash: 4.17.21
- rxjs: 7.5.6
- shell-quote: 1.7.3
+ rxjs: 7.8.1
+ shell-quote: 1.8.1
spawn-command: 0.0.2-1
supports-color: 8.1.1
tree-kill: 1.2.2
- yargs: 17.5.1
+ yargs: 17.7.2
dev: true
- /confusing-browser-globals/1.0.11:
+ /confusing-browser-globals@1.0.11:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
dev: false
- /connect-history-api-fallback/1.6.0:
- resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
- engines: {node: '>=0.8'}
- dev: false
-
- /connect-history-api-fallback/2.0.0:
+ /connect-history-api-fallback@2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
dev: false
- /console-clear/1.1.1:
+ /console-clear@1.1.1:
resolution: {integrity: sha512-pMD+MVR538ipqkG5JXeOEbKWS5um1H4LUUccUQG68qpeqBYbzYy79Gh55jkd2TtPdRfUaLWdv6LPP//5Zt0aPQ==}
engines: {node: '>=4'}
dev: false
- /content-disposition/0.5.4:
+ /content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
dependencies:
safe-buffer: 5.2.1
dev: false
- /content-type/1.0.4:
- resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==}
+ /content-type@1.0.5:
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
dev: false
- /convert-source-map/1.8.0:
- resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
- dependencies:
- safe-buffer: 5.1.2
+ /convert-source-map@1.9.0:
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
- /cookie-signature/1.0.6:
- resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=}
+ /cookie-signature@1.0.6:
+ resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
dev: false
- /cookie/0.4.2:
+ /cookie@0.4.2:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
engines: {node: '>= 0.6'}
- /cookie/0.5.0:
+ /cookie@0.5.0:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
dev: false
- /copy-webpack-plugin/11.0.0_webpack@5.74.0:
+ /copy-webpack-plugin@11.0.0(webpack@5.84.0):
resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
engines: {node: '>= 14.15.0'}
peerDependencies:
webpack: ^5.1.0
dependencies:
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
glob-parent: 6.0.2
- globby: 13.1.2
+ globby: 13.1.4
normalize-path: 3.0.0
- schema-utils: 4.0.0
- serialize-javascript: 6.0.0
- webpack: 5.74.0_esbuild@0.14.53
- dev: false
-
- /core-js-compat/3.22.5:
- resolution: {integrity: sha512-rEF75n3QtInrYICvJjrAgV03HwKiYvtKHdPtaba1KucG+cNZ4NJnH9isqt979e67KZlhpbCOTwnsvnIr+CVeOg==}
- dependencies:
- browserslist: 4.20.3
- semver: 7.0.0
- dev: false
-
- /core-js-compat/3.23.3:
- resolution: {integrity: sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==}
- dependencies:
- browserslist: 4.21.1
- semver: 7.0.0
+ schema-utils: 4.0.1
+ serialize-javascript: 6.0.1
+ webpack: 5.84.0(esbuild@0.17.19)
dev: false
- /core-js-compat/3.24.1:
- resolution: {integrity: sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw==}
+ /core-js-compat@3.30.2:
+ resolution: {integrity: sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA==}
dependencies:
- browserslist: 4.21.3
- semver: 7.0.0
-
- /core-js-pure/3.19.2:
- resolution: {integrity: sha512-5LkcgQEy8pFeVnd/zomkUBSwnmIxuF1C8E9KrMAbOc8f34IBT9RGvTYeNDdp1PnvMJrrVhvk1hg/yVV5h/znlg==}
- requiresBuild: true
- dev: false
+ browserslist: 4.21.5
- /core-js-pure/3.22.5:
- resolution: {integrity: sha512-8xo9R00iYD7TcV7OrC98GwxiUEAabVWO3dix+uyWjnYrx9fyASLlIX+f/3p5dW5qByaP2bcZ8X/T47s55et/tA==}
+ /core-js-pure@3.30.2:
+ resolution: {integrity: sha512-p/npFUJXXBkCCTIlEGBdghofn00jWG6ZOtdoIXSJmAu2QBvN0IqpZXWweOytcwE6cfx8ZvVUy1vw8zxhe4Y2vg==}
requiresBuild: true
dev: false
- /core-js/3.22.5:
- resolution: {integrity: sha512-VP/xYuvJ0MJWRAobcmQ8F2H6Bsn+s7zqAAjFaHGBMc5AQm7zaelhD1LGduFn2EehEcQcU+br6t+fwbpQ5d1ZWA==}
+ /core-js@3.30.2:
+ resolution: {integrity: sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==}
requiresBuild: true
dev: false
- /core-util-is/1.0.3:
+ /core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: false
- /corser/2.0.1:
- resolution: {integrity: sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c=}
+ /corser@2.0.1:
+ resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==}
engines: {node: '>= 0.4.0'}
dev: true
- /cosmiconfig/6.0.0:
+ /cosmiconfig@6.0.0:
resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
engines: {node: '>=8'}
dependencies:
@@ -8773,8 +7912,8 @@ packages:
yaml: 1.10.2
dev: false
- /cosmiconfig/7.0.1:
- resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
+ /cosmiconfig@7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
dependencies:
'@types/parse-json': 4.0.0
@@ -8782,8 +7921,18 @@ packages:
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
+ dev: false
+
+ /cosmiconfig@8.1.3:
+ resolution: {integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==}
+ engines: {node: '>=14'}
+ dependencies:
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
- /cross-spawn/5.1.0:
+ /cross-spawn@5.1.0:
resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
dependencies:
lru-cache: 4.1.5
@@ -8791,7 +7940,7 @@ packages:
which: 1.3.1
dev: true
- /cross-spawn/7.0.3:
+ /cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
@@ -8799,101 +7948,58 @@ packages:
shebang-command: 2.0.0
which: 2.0.2
- /crypto-random-string/2.0.0:
+ /crypto-random-string@2.0.0:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
dev: false
- /css-blank-pseudo/3.0.3_postcss@8.4.14:
+ /css-blank-pseudo@3.0.3(postcss@8.4.16):
resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==}
engines: {node: ^12 || ^14 || >=16}
hasBin: true
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
- dev: false
-
- /css-declaration-sorter/6.1.4_postcss@8.4.14:
- resolution: {integrity: sha512-lpfkqS0fctcmZotJGhnxkIyJWvBXgpyi2wsFd4J8VB7wzyrT6Ch/3Q+FMNJpjK4gu1+GN5khOnpU2ZVKrLbhCw==}
- engines: {node: '>= 10'}
- peerDependencies:
- postcss: ^8.0.9
- dependencies:
- postcss: 8.4.14
- timsort: 0.3.0
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /css-declaration-sorter/6.3.0_postcss@8.4.16:
- resolution: {integrity: sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==}
+ /css-declaration-sorter@6.4.0(postcss@8.4.23):
+ resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
- /css-has-pseudo/3.0.4_postcss@8.4.14:
+ /css-has-pseudo@3.0.4(postcss@8.4.16):
resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==}
engines: {node: ^12 || ^14 || >=16}
hasBin: true
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
- dev: false
-
- /css-loader/6.7.1:
- resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.16
- postcss: 8.4.16
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.16
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.16
- postcss-modules-scope: 3.0.0_postcss@8.4.16
- postcss-modules-values: 4.0.0_postcss@8.4.16
- postcss-value-parser: 4.2.0
- semver: 7.3.7
- dev: true
-
- /css-loader/6.7.1_webpack@5.73.0:
- resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.16
postcss: 8.4.16
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.16
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.16
- postcss-modules-scope: 3.0.0_postcss@8.4.16
- postcss-modules-values: 4.0.0_postcss@8.4.16
- postcss-value-parser: 4.2.0
- semver: 7.3.7
- webpack: 5.73.0
+ postcss-selector-parser: 6.0.13
dev: false
- /css-loader/6.7.1_webpack@5.74.0:
- resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==}
+ /css-loader@6.7.4(webpack@5.84.0):
+ resolution: {integrity: sha512-0Y5uHtK5BswfaGJ+jrO+4pPg1msFBc0pwPIE1VqfpmVn6YbDfYfXMj8rfd7nt+4goAhJueO+H/I40VWJfcP1mQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.16
- postcss: 8.4.16
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.16
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.16
- postcss-modules-scope: 3.0.0_postcss@8.4.16
- postcss-modules-values: 4.0.0_postcss@8.4.16
+ icss-utils: 5.1.0(postcss@8.4.23)
+ postcss: 8.4.23
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.23)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.23)
+ postcss-modules-scope: 3.0.0(postcss@8.4.23)
+ postcss-modules-values: 4.0.0(postcss@8.4.23)
postcss-value-parser: 4.2.0
- semver: 7.3.7
- webpack: 5.74.0
+ semver: 7.5.1
+ webpack: 5.84.0
- /css-minimizer-webpack-plugin/3.4.1_webpack@5.73.0:
+ /css-minimizer-webpack-plugin@3.4.1(webpack@5.84.0):
resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -8912,53 +8018,30 @@ packages:
esbuild:
optional: true
dependencies:
- cssnano: 5.0.15_postcss@8.4.14
- jest-worker: 27.4.6
- postcss: 8.4.14
- schema-utils: 4.0.0
- serialize-javascript: 6.0.0
+ cssnano: 5.1.15(postcss@8.4.23)
+ jest-worker: 27.5.1
+ postcss: 8.4.23
+ schema-utils: 4.0.1
+ serialize-javascript: 6.0.1
source-map: 0.6.1
- webpack: 5.73.0
+ webpack: 5.84.0
dev: false
- /css-minimizer-webpack-plugin/4.0.0:
- resolution: {integrity: sha512-7ZXXRzRHvofv3Uac5Y+RkWRNo0ZMlcg8e9/OtrqUYmwDWJo+qs67GvdeFrXLsFb7czKNwjQhPkM0avlIYl+1nA==}
+ /css-minimizer-webpack-plugin@5.0.0(esbuild@0.17.19)(webpack@5.84.0):
+ resolution: {integrity: sha512-1wZ/PYvg+ZKwi5FX6YrvbB31jMAdurS+CmRQLwWCVSlfzJC85l/a6RVICqUHFa+jXyhilfnCyjafzJGbmz5tcA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@parcel/css': '*'
+ '@swc/css': '*'
clean-css: '*'
csso: '*'
esbuild: '*'
+ lightningcss: '*'
webpack: ^5.0.0
peerDependenciesMeta:
'@parcel/css':
optional: true
- clean-css:
- optional: true
- csso:
- optional: true
- esbuild:
- optional: true
- dependencies:
- cssnano: 5.1.12_postcss@8.4.16
- jest-worker: 27.5.1
- postcss: 8.4.16
- schema-utils: 4.0.0
- serialize-javascript: 6.0.0
- source-map: 0.6.1
- dev: true
-
- /css-minimizer-webpack-plugin/4.0.0_5gr7ozscerpk45yowhskzxp43q:
- resolution: {integrity: sha512-7ZXXRzRHvofv3Uac5Y+RkWRNo0ZMlcg8e9/OtrqUYmwDWJo+qs67GvdeFrXLsFb7czKNwjQhPkM0avlIYl+1nA==}
- engines: {node: '>= 14.15.0'}
- peerDependencies:
- '@parcel/css': '*'
- clean-css: '*'
- csso: '*'
- esbuild: '*'
- webpack: ^5.0.0
- peerDependenciesMeta:
- '@parcel/css':
+ '@swc/css':
optional: true
clean-css:
optional: true
@@ -8966,60 +8049,67 @@ packages:
optional: true
esbuild:
optional: true
+ lightningcss:
+ optional: true
dependencies:
- cssnano: 5.1.12_postcss@8.4.16
- esbuild: 0.14.53
- jest-worker: 27.5.1
- postcss: 8.4.16
- schema-utils: 4.0.0
- serialize-javascript: 6.0.0
+ cssnano: 6.0.1(postcss@8.4.23)
+ esbuild: 0.17.19
+ jest-worker: 29.5.0
+ postcss: 8.4.23
+ schema-utils: 4.0.1
+ serialize-javascript: 6.0.1
source-map: 0.6.1
- webpack: 5.74.0_esbuild@0.14.53
+ webpack: 5.84.0(esbuild@0.17.19)
dev: false
- /css-minimizer-webpack-plugin/4.0.0_webpack@5.74.0:
- resolution: {integrity: sha512-7ZXXRzRHvofv3Uac5Y+RkWRNo0ZMlcg8e9/OtrqUYmwDWJo+qs67GvdeFrXLsFb7czKNwjQhPkM0avlIYl+1nA==}
+ /css-minimizer-webpack-plugin@5.0.0(webpack@5.84.0):
+ resolution: {integrity: sha512-1wZ/PYvg+ZKwi5FX6YrvbB31jMAdurS+CmRQLwWCVSlfzJC85l/a6RVICqUHFa+jXyhilfnCyjafzJGbmz5tcA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@parcel/css': '*'
+ '@swc/css': '*'
clean-css: '*'
csso: '*'
esbuild: '*'
+ lightningcss: '*'
webpack: ^5.0.0
peerDependenciesMeta:
'@parcel/css':
optional: true
+ '@swc/css':
+ optional: true
clean-css:
optional: true
csso:
optional: true
esbuild:
optional: true
+ lightningcss:
+ optional: true
dependencies:
- cssnano: 5.1.12_postcss@8.4.16
- jest-worker: 27.5.1
- postcss: 8.4.16
- schema-utils: 4.0.0
- serialize-javascript: 6.0.0
+ cssnano: 6.0.1(postcss@8.4.23)
+ jest-worker: 29.5.0
+ postcss: 8.4.23
+ schema-utils: 4.0.1
+ serialize-javascript: 6.0.1
source-map: 0.6.1
- webpack: 5.74.0
- dev: false
+ webpack: 5.84.0
- /css-prefers-color-scheme/6.0.3_postcss@8.4.14:
+ /css-prefers-color-scheme@6.0.3(postcss@8.4.16):
resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==}
engines: {node: ^12 || ^14 || >=16}
hasBin: true
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
dev: false
- /css-select-base-adapter/0.1.1:
+ /css-select-base-adapter@0.1.1:
resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==}
dev: false
- /css-select/2.1.0:
+ /css-select@2.1.0:
resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==}
dependencies:
boolbase: 1.0.0
@@ -9028,26 +8118,32 @@ packages:
nth-check: 1.0.2
dev: false
- /css-select/4.2.0:
- resolution: {integrity: sha512-6YVG6hsH9yIb/si3Th/is8Pex7qnVHO6t7q7U6TIUnkQASGbS8tnUDBftnPynLNnuUl/r2+PTd0ekiiq7R0zJw==}
+ /css-select@4.3.0:
+ resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
- css-what: 5.1.0
- domhandler: 4.3.0
+ css-what: 6.1.0
+ domhandler: 4.3.1
domutils: 2.8.0
- nth-check: 2.0.1
- dev: false
+ nth-check: 2.1.1
- /css-select/4.2.1:
- resolution: {integrity: sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==}
+ /css-select@5.1.0:
+ resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
dependencies:
boolbase: 1.0.0
- css-what: 5.1.0
- domhandler: 4.3.0
- domutils: 2.8.0
- nth-check: 2.0.1
+ css-what: 6.1.0
+ domhandler: 5.0.3
+ domutils: 3.1.0
+ nth-check: 2.1.1
+
+ /css-selector-tokenizer@0.7.3:
+ resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==}
+ dependencies:
+ cssesc: 3.0.0
+ fastparse: 1.1.2
+ dev: true
- /css-tree/1.0.0-alpha.37:
+ /css-tree@1.0.0-alpha.37:
resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -9055,187 +8151,213 @@ packages:
source-map: 0.6.1
dev: false
- /css-tree/1.1.3:
+ /css-tree@1.1.3:
resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
engines: {node: '>=8.0.0'}
dependencies:
mdn-data: 2.0.14
source-map: 0.6.1
+ dev: false
+
+ /css-tree@2.2.1:
+ resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
+ dependencies:
+ mdn-data: 2.0.28
+ source-map-js: 1.0.2
+
+ /css-tree@2.3.1:
+ resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+ dependencies:
+ mdn-data: 2.0.30
+ source-map-js: 1.0.2
- /css-what/3.4.2:
+ /css-what@3.4.2:
resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==}
engines: {node: '>= 6'}
dev: false
- /css-what/5.1.0:
+ /css-what@5.1.0:
resolution: {integrity: sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==}
engines: {node: '>= 6'}
+ dev: true
+
+ /css-what@6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ engines: {node: '>= 6'}
- /css.escape/1.5.1:
+ /css.escape@1.5.1:
resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
dev: false
- /cssdb/6.6.1:
- resolution: {integrity: sha512-0/nZEYfp8SFEzJkMud8NxZJsGfD7RHDJti6GRBLZptIwAzco6RTx1KgwFl4mGWsYS0ZNbCrsY9QryhQ4ldF3Mg==}
+ /cssdb@7.6.0:
+ resolution: {integrity: sha512-Nna7rph8V0jC6+JBY4Vk4ndErUmfJfV6NJCaZdurL0omggabiy+QB2HCQtu5c/ACLZ0I7REv7A4QyPIoYzZx0w==}
dev: false
- /cssesc/3.0.0:
+ /cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-default/5.1.10_postcss@8.4.14:
- resolution: {integrity: sha512-BcpSzUVygHMOnp9uG5rfPzTOCb0GAHQkqtUQx8j1oMNF9A1Q8hziOOhiM4bdICpmrBIU85BE64RD5XGYsVQZNA==}
+ /cssnano-preset-default@5.2.14(postcss@8.4.23):
+ resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.1.4_postcss@8.4.14
- cssnano-utils: 3.0.0_postcss@8.4.14
- postcss: 8.4.14
- postcss-calc: 8.2.2_postcss@8.4.14
- postcss-colormin: 5.2.3_postcss@8.4.14
- postcss-convert-values: 5.0.2_postcss@8.4.14
- postcss-discard-comments: 5.0.1_postcss@8.4.14
- postcss-discard-duplicates: 5.0.1_postcss@8.4.14
- postcss-discard-empty: 5.0.1_postcss@8.4.14
- postcss-discard-overridden: 5.0.2_postcss@8.4.14
- postcss-merge-longhand: 5.0.4_postcss@8.4.14
- postcss-merge-rules: 5.0.4_postcss@8.4.14
- postcss-minify-font-values: 5.0.2_postcss@8.4.14
- postcss-minify-gradients: 5.0.4_postcss@8.4.14
- postcss-minify-params: 5.0.3_postcss@8.4.14
- postcss-minify-selectors: 5.1.1_postcss@8.4.14
- postcss-normalize-charset: 5.0.1_postcss@8.4.14
- postcss-normalize-display-values: 5.0.2_postcss@8.4.14
- postcss-normalize-positions: 5.0.2_postcss@8.4.14
- postcss-normalize-repeat-style: 5.0.2_postcss@8.4.14
- postcss-normalize-string: 5.0.2_postcss@8.4.14
- postcss-normalize-timing-functions: 5.0.2_postcss@8.4.14
- postcss-normalize-unicode: 5.0.2_postcss@8.4.14
- postcss-normalize-url: 5.0.4_postcss@8.4.14
- postcss-normalize-whitespace: 5.0.2_postcss@8.4.14
- postcss-ordered-values: 5.0.3_postcss@8.4.14
- postcss-reduce-initial: 5.0.2_postcss@8.4.14
- postcss-reduce-transforms: 5.0.2_postcss@8.4.14
- postcss-svgo: 5.0.3_postcss@8.4.14
- postcss-unique-selectors: 5.0.2_postcss@8.4.14
- dev: false
-
- /cssnano-preset-default/5.2.12_postcss@8.4.16:
- resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==}
- engines: {node: ^10 || ^12 || >=14.0}
+ css-declaration-sorter: 6.4.0(postcss@8.4.23)
+ cssnano-utils: 3.1.0(postcss@8.4.23)
+ postcss: 8.4.23
+ postcss-calc: 8.2.4(postcss@8.4.23)
+ postcss-colormin: 5.3.1(postcss@8.4.23)
+ postcss-convert-values: 5.1.3(postcss@8.4.23)
+ postcss-discard-comments: 5.1.2(postcss@8.4.23)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.23)
+ postcss-discard-empty: 5.1.1(postcss@8.4.23)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.23)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.23)
+ postcss-merge-rules: 5.1.4(postcss@8.4.23)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.23)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.23)
+ postcss-minify-params: 5.1.4(postcss@8.4.23)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.23)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.23)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.23)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.23)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.23)
+ postcss-normalize-string: 5.1.0(postcss@8.4.23)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.23)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.23)
+ postcss-normalize-url: 5.1.0(postcss@8.4.23)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.23)
+ postcss-ordered-values: 5.1.3(postcss@8.4.23)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.23)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.23)
+ postcss-svgo: 5.1.0(postcss@8.4.23)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.23)
+ dev: false
+
+ /cssnano-preset-default@6.0.1(postcss@8.4.23):
+ resolution: {integrity: sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.3.0_postcss@8.4.16
- cssnano-utils: 3.1.0_postcss@8.4.16
- postcss: 8.4.16
- postcss-calc: 8.2.4_postcss@8.4.16
- postcss-colormin: 5.3.0_postcss@8.4.16
- postcss-convert-values: 5.1.2_postcss@8.4.16
- postcss-discard-comments: 5.1.2_postcss@8.4.16
- postcss-discard-duplicates: 5.1.0_postcss@8.4.16
- postcss-discard-empty: 5.1.1_postcss@8.4.16
- postcss-discard-overridden: 5.1.0_postcss@8.4.16
- postcss-merge-longhand: 5.1.6_postcss@8.4.16
- postcss-merge-rules: 5.1.2_postcss@8.4.16
- postcss-minify-font-values: 5.1.0_postcss@8.4.16
- postcss-minify-gradients: 5.1.1_postcss@8.4.16
- postcss-minify-params: 5.1.3_postcss@8.4.16
- postcss-minify-selectors: 5.2.1_postcss@8.4.16
- postcss-normalize-charset: 5.1.0_postcss@8.4.16
- postcss-normalize-display-values: 5.1.0_postcss@8.4.16
- postcss-normalize-positions: 5.1.1_postcss@8.4.16
- postcss-normalize-repeat-style: 5.1.1_postcss@8.4.16
- postcss-normalize-string: 5.1.0_postcss@8.4.16
- postcss-normalize-timing-functions: 5.1.0_postcss@8.4.16
- postcss-normalize-unicode: 5.1.0_postcss@8.4.16
- postcss-normalize-url: 5.1.0_postcss@8.4.16
- postcss-normalize-whitespace: 5.1.1_postcss@8.4.16
- postcss-ordered-values: 5.1.3_postcss@8.4.16
- postcss-reduce-initial: 5.1.0_postcss@8.4.16
- postcss-reduce-transforms: 5.1.0_postcss@8.4.16
- postcss-svgo: 5.1.0_postcss@8.4.16
- postcss-unique-selectors: 5.1.1_postcss@8.4.16
-
- /cssnano-utils/3.0.0_postcss@8.4.14:
- resolution: {integrity: sha512-Pzs7/BZ6OgT+tXXuF12DKR8SmSbzUeVYCtMBbS8lI0uAm3mrYmkyqCXXPsQESI6kmLfEVBppbdVY/el3hg3nAA==}
+ css-declaration-sorter: 6.4.0(postcss@8.4.23)
+ cssnano-utils: 4.0.0(postcss@8.4.23)
+ postcss: 8.4.23
+ postcss-calc: 9.0.1(postcss@8.4.23)
+ postcss-colormin: 6.0.0(postcss@8.4.23)
+ postcss-convert-values: 6.0.0(postcss@8.4.23)
+ postcss-discard-comments: 6.0.0(postcss@8.4.23)
+ postcss-discard-duplicates: 6.0.0(postcss@8.4.23)
+ postcss-discard-empty: 6.0.0(postcss@8.4.23)
+ postcss-discard-overridden: 6.0.0(postcss@8.4.23)
+ postcss-merge-longhand: 6.0.0(postcss@8.4.23)
+ postcss-merge-rules: 6.0.1(postcss@8.4.23)
+ postcss-minify-font-values: 6.0.0(postcss@8.4.23)
+ postcss-minify-gradients: 6.0.0(postcss@8.4.23)
+ postcss-minify-params: 6.0.0(postcss@8.4.23)
+ postcss-minify-selectors: 6.0.0(postcss@8.4.23)
+ postcss-normalize-charset: 6.0.0(postcss@8.4.23)
+ postcss-normalize-display-values: 6.0.0(postcss@8.4.23)
+ postcss-normalize-positions: 6.0.0(postcss@8.4.23)
+ postcss-normalize-repeat-style: 6.0.0(postcss@8.4.23)
+ postcss-normalize-string: 6.0.0(postcss@8.4.23)
+ postcss-normalize-timing-functions: 6.0.0(postcss@8.4.23)
+ postcss-normalize-unicode: 6.0.0(postcss@8.4.23)
+ postcss-normalize-url: 6.0.0(postcss@8.4.23)
+ postcss-normalize-whitespace: 6.0.0(postcss@8.4.23)
+ postcss-ordered-values: 6.0.0(postcss@8.4.23)
+ postcss-reduce-initial: 6.0.0(postcss@8.4.23)
+ postcss-reduce-transforms: 6.0.0(postcss@8.4.23)
+ postcss-svgo: 6.0.0(postcss@8.4.23)
+ postcss-unique-selectors: 6.0.0(postcss@8.4.23)
+
+ /cssnano-utils@3.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: false
- /cssnano-utils/3.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /cssnano-utils@4.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
- /cssnano/5.0.15_postcss@8.4.14:
- resolution: {integrity: sha512-ppZsS7oPpi2sfiyV5+i+NbB/3GtQ+ab2Vs1azrZaXWujUSN4o+WdTxlCZIMcT9yLW3VO/5yX3vpyDaQ1nIn8CQ==}
+ /cssnano@5.1.15(postcss@8.4.23):
+ resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.1.10_postcss@8.4.14
- lilconfig: 2.0.4
- postcss: 8.4.14
+ cssnano-preset-default: 5.2.14(postcss@8.4.23)
+ lilconfig: 2.1.0
+ postcss: 8.4.23
yaml: 1.10.2
dev: false
- /cssnano/5.1.12_postcss@8.4.16:
- resolution: {integrity: sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /cssnano@6.0.1(postcss@8.4.23):
+ resolution: {integrity: sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.12_postcss@8.4.16
- lilconfig: 2.0.5
- postcss: 8.4.16
- yaml: 1.10.2
+ cssnano-preset-default: 6.0.1(postcss@8.4.23)
+ lilconfig: 2.1.0
+ postcss: 8.4.23
- /csso/4.2.0:
+ /csso@4.2.0:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
dependencies:
css-tree: 1.1.3
+ dev: false
+
+ /csso@5.0.5:
+ resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
+ dependencies:
+ css-tree: 2.2.1
- /cssom/0.3.8:
+ /cssom@0.3.8:
resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
dev: false
- /cssom/0.4.4:
+ /cssom@0.4.4:
resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==}
dev: false
- /cssstyle/2.3.0:
+ /cssstyle@2.3.0:
resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
engines: {node: '>=8'}
dependencies:
cssom: 0.3.8
dev: false
- /csstype/3.1.0:
- resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==}
+ /csstype@3.1.2:
+ resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
- /csv-generate/3.4.3:
+ /csv-generate@3.4.3:
resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==}
dev: true
- /csv-parse/4.16.3:
+ /csv-parse@4.16.3:
resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==}
dev: true
- /csv-stringify/5.6.5:
+ /csv-stringify@5.6.5:
resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==}
dev: true
- /csv/5.5.3:
+ /csv@5.5.3:
resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==}
engines: {node: '>= 0.1.90'}
dependencies:
@@ -9245,16 +8367,16 @@ packages:
stream-transform: 2.1.3
dev: true
- /damerau-levenshtein/1.0.8:
+ /damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
dev: false
- /data-uri-to-buffer/4.0.0:
- resolution: {integrity: sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==}
+ /data-uri-to-buffer@4.0.1:
+ resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
engines: {node: '>= 12'}
dev: false
- /data-urls/2.0.0:
+ /data-urls@2.0.0:
resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==}
engines: {node: '>=10'}
dependencies:
@@ -9263,13 +8385,15 @@ packages:
whatwg-url: 8.7.0
dev: false
- /date-fns/2.29.1:
- resolution: {integrity: sha512-dlLD5rKaKxpFdnjrs+5azHDFOPEu4ANy/LTh04A1DTzMM7qoajmKCBc8pkKRFT41CNzw+4gQh79X5C+Jq27HAw==}
+ /date-fns@2.30.0:
+ resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
+ dependencies:
+ '@babel/runtime': 7.21.5
dev: true
- /deasync/0.1.27:
- resolution: {integrity: sha512-aCt6M9Ilkvs8TKIchmibUpNe/QSp9UNQL6YkvVraAce/SFFZCvYw3lQevl6MlUDn8Xr4QD4wYTerWH22yn+ODQ==}
+ /deasync@0.1.28:
+ resolution: {integrity: sha512-QqLF6inIDwiATrfROIyQtwOQxjZuek13WRYZ7donU5wJPLoP67MnYxA6QtqdvdBy2mMqv5m3UefBVdJjvevOYg==}
engines: {node: '>=0.11.0'}
requiresBuild: true
dependencies:
@@ -9278,7 +8402,7 @@ packages:
dev: false
optional: true
- /debug/2.6.9:
+ /debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
supports-color: '*'
@@ -9289,7 +8413,7 @@ packages:
ms: 2.0.0
dev: false
- /debug/3.2.7:
+ /debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
@@ -9299,7 +8423,7 @@ packages:
dependencies:
ms: 2.1.3
- /debug/4.3.4:
+ /debug@4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -9310,272 +8434,279 @@ packages:
dependencies:
ms: 2.1.2
- /decamelize-keys/1.1.0:
- resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==}
+ /decamelize-keys@1.1.1:
+ resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
engines: {node: '>=0.10.0'}
dependencies:
decamelize: 1.2.0
map-obj: 1.0.1
dev: true
- /decamelize/1.2.0:
+ /decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
dev: true
- /decimal.js/10.3.1:
- resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==}
+ /decimal.js@10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
dev: false
- /decode-named-character-reference/1.0.1:
- resolution: {integrity: sha512-YV/0HQHreRwKb7uBopyIkLG17jG6Sv2qUchk9qSoVJ2f+flwRsPNBO0hAnjt6mTNYUT+vw9Gy2ihXg4sUWPi2w==}
+ /decode-named-character-reference@1.0.2:
+ resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
dependencies:
- character-entities: 2.0.1
+ character-entities: 2.0.2
dev: false
- /dedent/0.7.0:
- resolution: {integrity: sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=}
+ /dedent@0.7.0:
+ resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
+
+ /deep-equal@2.2.1:
+ resolution: {integrity: sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==}
+ dependencies:
+ array-buffer-byte-length: 1.0.0
+ call-bind: 1.0.2
+ es-get-iterator: 1.1.3
+ get-intrinsic: 1.2.1
+ is-arguments: 1.1.1
+ is-array-buffer: 3.0.2
+ is-date-object: 1.0.5
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.2
+ isarray: 2.0.5
+ object-is: 1.1.5
+ object-keys: 1.1.1
+ object.assign: 4.1.4
+ regexp.prototype.flags: 1.5.0
+ side-channel: 1.0.4
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.1
+ which-typed-array: 1.1.9
- /deep-is/0.1.4:
+ /deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- /deep-object-diff/1.1.7:
- resolution: {integrity: sha512-QkgBca0mL08P6HiOjoqvmm6xOAl2W6CT2+34Ljhg0OeFan8cwlcdq8jrLKsBBuUFAZLsN5b6y491KdKEoSo9lg==}
+ /deep-object-diff@1.1.9:
+ resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==}
dev: true
- /deepmerge/4.2.2:
- resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
+ /deepmerge@4.3.1:
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- /default-gateway/6.0.3:
+ /default-gateway@6.0.3:
resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
engines: {node: '>= 10'}
dependencies:
execa: 5.1.1
dev: false
- /defaults/1.0.3:
- resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==}
+ /defaults@1.0.4:
+ resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
dependencies:
clone: 1.0.4
- /define-lazy-prop/2.0.0:
+ /define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
dev: false
- /define-properties/1.1.4:
- resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
+ /define-properties@1.2.0:
+ resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
engines: {node: '>= 0.4'}
dependencies:
has-property-descriptors: 1.0.0
object-keys: 1.1.1
- /defined/1.0.0:
- resolution: {integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==}
+ /defined@1.0.1:
+ resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
- /delayed-stream/1.0.0:
- resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=}
+ /delayed-stream@1.0.0:
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
dev: false
- /depd/1.1.2:
- resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=}
+ /depd@1.1.2:
+ resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
dev: false
- /depd/2.0.0:
+ /depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
dev: false
- /dequal/2.0.2:
- resolution: {integrity: sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==}
- engines: {node: '>=6'}
- dev: false
+ /dependency-graph@0.11.0:
+ resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==}
+ engines: {node: '>= 0.6.0'}
+ dev: true
- /destroy/1.0.4:
- resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=}
+ /dequal@2.0.3:
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
+ engines: {node: '>=6'}
dev: false
- /destroy/1.2.0:
+ /destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dev: false
- /detect-indent/6.1.0:
+ /detect-indent@6.1.0:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
engines: {node: '>=8'}
dev: true
- /detect-newline/3.1.0:
+ /detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
- /detect-node-es/1.1.0:
+ /detect-node-es@1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
dev: false
- /detect-node/2.1.0:
+ /detect-node@2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
+ dev: false
- /detect-port-alt/1.1.6:
+ /detect-port-alt@1.1.6:
resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==}
engines: {node: '>= 4.2.1'}
hasBin: true
dependencies:
- address: 1.2.0
+ address: 1.2.2
debug: 2.6.9
transitivePeerDependencies:
- supports-color
dev: false
- /detective/5.2.1:
+ /detective@5.2.1:
resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
engines: {node: '>=0.8.0'}
hasBin: true
dependencies:
acorn-node: 1.8.2
- defined: 1.0.0
- minimist: 1.2.6
+ defined: 1.0.1
+ minimist: 1.2.8
- /didyoumean/1.2.2:
+ /didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- /diff-sequences/27.5.1:
+ /diff-sequences@27.5.1:
resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dev: false
- /diff-sequences/28.1.1:
+ /diff-sequences@28.1.1:
resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- /diff/5.0.0:
- resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==}
+ /diff@5.1.0:
+ resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
engines: {node: '>=0.3.1'}
dev: false
- /dir-glob/3.0.1:
+ /dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
dependencies:
path-type: 4.0.0
- /dlv/1.1.3:
+ /dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- /dns-equal/1.0.0:
- resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=}
- dev: false
-
- /dns-packet/5.3.1:
- resolution: {integrity: sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==}
- engines: {node: '>=6'}
- dependencies:
- '@leichtgewicht/ip-codec': 2.0.4
+ /dns-equal@1.0.0:
+ resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
dev: false
- /dns-packet/5.4.0:
- resolution: {integrity: sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==}
+ /dns-packet@5.6.0:
+ resolution: {integrity: sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==}
engines: {node: '>=6'}
dependencies:
'@leichtgewicht/ip-codec': 2.0.4
dev: false
- /doctrine/2.1.0:
+ /doctrine@2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
dependencies:
esutils: 2.0.3
dev: false
- /doctrine/3.0.0:
+ /doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
dependencies:
esutils: 2.0.3
- /dom-accessibility-api/0.5.11:
- resolution: {integrity: sha512-7X6GvzjYf4yTdRKuCVScV+aA9Fvh5r8WzWrXBH9w82ZWB/eYDMGCnazoC/YAqAzUJWHzLOnZqr46K3iEyUhUvw==}
-
- /dom-accessibility-api/0.5.14:
- resolution: {integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==}
+ /dom-accessibility-api@0.5.16:
+ resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
- /dom-converter/0.2.0:
+ /dom-converter@0.2.0:
resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
dependencies:
utila: 0.4.0
- dev: false
- /dom-serializer/0.2.2:
+ /dom-serializer@0.2.2:
resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
dependencies:
domelementtype: 2.3.0
entities: 2.2.0
dev: false
- /dom-serializer/1.3.2:
- resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
+ /dom-serializer@1.4.1:
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
- domelementtype: 2.2.0
- domhandler: 4.3.0
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
entities: 2.2.0
- /dom-serializer/2.0.0:
+ /dom-serializer@2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- entities: 4.3.0
- dev: false
+ entities: 4.5.0
- /domelementtype/1.3.1:
+ /domelementtype@1.3.1:
resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==}
dev: false
- /domelementtype/2.2.0:
- resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
-
- /domelementtype/2.3.0:
+ /domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
- dev: false
- /domexception/2.0.1:
+ /domexception@2.0.1:
resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==}
engines: {node: '>=8'}
dependencies:
webidl-conversions: 5.0.0
dev: false
- /domhandler/4.3.0:
- resolution: {integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==}
+ /domhandler@4.3.1:
+ resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
- /domhandler/5.0.3:
+ /domhandler@5.0.3:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
dependencies:
domelementtype: 2.3.0
- dev: false
- /domutils/1.7.0:
+ /domutils@1.7.0:
resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
dependencies:
dom-serializer: 0.2.2
domelementtype: 1.3.1
dev: false
- /domutils/2.8.0:
+ /domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
- dom-serializer: 1.3.2
- domelementtype: 2.2.0
- domhandler: 4.3.0
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
- /domutils/3.0.1:
+ /domutils@3.0.1:
resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==}
dependencies:
dom-serializer: 2.0.0
@@ -9583,629 +8714,295 @@ packages:
domhandler: 5.0.3
dev: false
- /dot-case/3.0.4:
+ /domutils@3.1.0:
+ resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+
+ /dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
no-case: 3.0.4
tslib: 2.4.0
- dev: false
- /dotenv-expand/5.1.0:
+ /dotenv-expand@5.1.0:
resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==}
dev: false
- /dotenv/10.0.0:
+ /dotenv@10.0.0:
resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==}
engines: {node: '>=10'}
dev: false
- /downshift/6.1.7:
+ /downshift@6.1.7(react@18.2.0):
resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==}
peerDependencies:
react: '>=16.12.0'
dependencies:
- '@babel/runtime': 7.18.3
- compute-scroll-into-view: 1.0.17
- prop-types: 15.7.2
- react-is: 17.0.2
- tslib: 2.4.0
- dev: false
-
- /duplexer/0.1.2:
- resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- dev: false
-
- /ee-first/1.1.1:
- resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
- dev: false
-
- /ejs/3.1.8:
- resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==}
- engines: {node: '>=0.10.0'}
- hasBin: true
- dependencies:
- jake: 10.8.5
- dev: false
-
- /electron-to-chromium/1.4.137:
- resolution: {integrity: sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==}
- dev: false
-
- /electron-to-chromium/1.4.165:
- resolution: {integrity: sha512-DKQW1lqUSAYQvn9dnpK7mWaDpWbNOXQLXhfCi7Iwx0BKxdZOxkKcCyKw1l3ihWWW5iWSxKKbhEUoNRoHvl/hbA==}
- dev: false
-
- /electron-to-chromium/1.4.177:
- resolution: {integrity: sha512-FYPir3NSBEGexSZUEeht81oVhHfLFl6mhUKSkjHN/iB/TwEIt/WHQrqVGfTLN5gQxwJCQkIJBe05eOXjI7omgg==}
- dev: false
-
- /electron-to-chromium/1.4.211:
- resolution: {integrity: sha512-BZSbMpyFQU0KBJ1JG26XGeFI3i4op+qOYGxftmZXFZoHkhLgsSv4DHDJfl8ogII3hIuzGt51PaZ195OVu0yJ9A==}
-
- /electron-to-chromium/1.4.30:
- resolution: {integrity: sha512-609z9sIMxDHg+TcR/VB3MXwH+uwtrYyeAwWc/orhnr90ixs6WVGSrt85CDLGUdNnLqCA7liv426V20EecjvflQ==}
- dev: false
-
- /electron-to-chromium/1.4.71:
- resolution: {integrity: sha512-Hk61vXXKRb2cd3znPE9F+2pLWdIOmP7GjiTj45y6L3W/lO+hSnUSUhq+6lEaERWBdZOHbk2s3YV5c9xVl3boVw==}
- dev: false
-
- /electron-to-chromium/1.4.82:
- resolution: {integrity: sha512-Ks+ANzLoIrFDUOJdjxYMH6CMKB8UQo5modAwvSZTxgF+vEs/U7G5IbWFUp6dS4klPkTDVdxbORuk8xAXXhMsWw==}
- dev: false
-
- /emittery/0.10.2:
- resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==}
- engines: {node: '>=12'}
-
- /emittery/0.8.1:
- resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==}
- engines: {node: '>=10'}
- dev: false
-
- /emoji-regex/8.0.0:
- resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
-
- /emoji-regex/9.2.2:
- resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- dev: false
-
- /emojis-list/3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
- engines: {node: '>= 4'}
-
- /encodeurl/1.0.2:
- resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=}
- engines: {node: '>= 0.8'}
- dev: false
-
- /enhanced-resolve/5.10.0:
- resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==}
- engines: {node: '>=10.13.0'}
- dependencies:
- graceful-fs: 4.2.10
- tapable: 2.2.1
-
- /enhanced-resolve/5.9.3:
- resolution: {integrity: sha512-Bq9VSor+kjvW3f9/MiiR4eE3XYgOl7/rS8lnSxbRbF3kS0B2r+Y9w5krBWxZgDxASVZbdYrn5wT4j/Wb0J9qow==}
- engines: {node: '>=10.13.0'}
- dependencies:
- graceful-fs: 4.2.10
- tapable: 2.2.1
- dev: false
-
- /enquirer/2.3.6:
- resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
- engines: {node: '>=8.6'}
- dependencies:
- ansi-colors: 4.1.3
- dev: true
-
- /entities/2.2.0:
- resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
-
- /entities/4.3.0:
- resolution: {integrity: sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==}
- engines: {node: '>=0.12'}
- dev: false
-
- /error-ex/1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- dependencies:
- is-arrayish: 0.2.1
-
- /error-stack-parser/2.0.6:
- resolution: {integrity: sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==}
- dependencies:
- stackframe: 1.2.0
- dev: false
-
- /es-abstract/1.20.0:
- resolution: {integrity: sha512-URbD8tgRthKD3YcC39vbvSDrX23upXnPcnGAjQfgxXF5ID75YcENawc9ZX/9iTP9ptUyfCLIxTTuMYoRfiOVKA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- es-to-primitive: 1.2.1
- function-bind: 1.1.1
- function.prototype.name: 1.1.5
- get-intrinsic: 1.1.1
- get-symbol-description: 1.0.0
- has: 1.0.3
- has-property-descriptors: 1.0.0
- has-symbols: 1.0.3
- internal-slot: 1.0.3
- is-callable: 1.2.4
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-weakref: 1.0.2
- object-inspect: 1.12.0
- object-keys: 1.1.1
- object.assign: 4.1.2
- regexp.prototype.flags: 1.4.3
- string.prototype.trimend: 1.0.5
- string.prototype.trimstart: 1.0.5
- unbox-primitive: 1.0.2
-
- /es-module-lexer/0.9.3:
- resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
-
- /es-shim-unscopables/1.0.0:
- resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
- dependencies:
- has: 1.0.3
-
- /es-to-primitive/1.2.1:
- resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
- engines: {node: '>= 0.4'}
- dependencies:
- is-callable: 1.2.4
- is-date-object: 1.0.5
- is-symbol: 1.0.4
-
- /esbuild-android-64/0.14.47:
- resolution: {integrity: sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: false
- optional: true
-
- /esbuild-android-64/0.14.53:
- resolution: {integrity: sha512-fIL93sOTnEU+NrTAVMIKiAw0YH22HWCAgg4N4Z6zov2t0kY9RAJ50zY9ZMCQ+RT6bnOfDt8gCTnt/RaSNA2yRA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- optional: true
-
- /esbuild-android-arm64/0.14.47:
- resolution: {integrity: sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: false
- optional: true
-
- /esbuild-android-arm64/0.14.53:
- resolution: {integrity: sha512-PC7KaF1v0h/nWpvlU1UMN7dzB54cBH8qSsm7S9mkwFA1BXpaEOufCg8hdoEI1jep0KeO/rjZVWrsH8+q28T77A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- optional: true
-
- /esbuild-darwin-64/0.14.47:
- resolution: {integrity: sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
-
- /esbuild-darwin-64/0.14.53:
- resolution: {integrity: sha512-gE7P5wlnkX4d4PKvLBUgmhZXvL7lzGRLri17/+CmmCzfncIgq8lOBvxGMiQ4xazplhxq+72TEohyFMZLFxuWvg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
- /esbuild-darwin-arm64/0.14.47:
- resolution: {integrity: sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
-
- /esbuild-darwin-arm64/0.14.53:
- resolution: {integrity: sha512-otJwDU3hnI15Q98PX4MJbknSZ/WSR1I45il7gcxcECXzfN4Mrpft5hBDHXNRnCh+5858uPXBXA1Vaz2jVWLaIA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
- /esbuild-freebsd-64/0.14.47:
- resolution: {integrity: sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: false
- optional: true
-
- /esbuild-freebsd-64/0.14.53:
- resolution: {integrity: sha512-WkdJa8iyrGHyKiPF4lk0MiOF87Q2SkE+i+8D4Cazq3/iqmGPJ6u49je300MFi5I2eUsQCkaOWhpCVQMTKGww2w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
- /esbuild-freebsd-arm64/0.14.47:
- resolution: {integrity: sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: false
- optional: true
-
- /esbuild-freebsd-arm64/0.14.53:
- resolution: {integrity: sha512-9T7WwCuV30NAx0SyQpw8edbKvbKELnnm1FHg7gbSYaatH+c8WJW10g/OdM7JYnv7qkimw2ZTtSA+NokOLd2ydQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
- /esbuild-linux-32/0.14.47:
- resolution: {integrity: sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /esbuild-linux-32/0.14.53:
- resolution: {integrity: sha512-VGanLBg5en2LfGDgLEUxQko2lqsOS7MTEWUi8x91YmsHNyzJVT/WApbFFx3MQGhkf+XdimVhpyo5/G0PBY91zg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /esbuild-linux-64/0.14.47:
- resolution: {integrity: sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /esbuild-linux-64/0.14.53:
- resolution: {integrity: sha512-pP/FA55j/fzAV7N9DF31meAyjOH6Bjuo3aSKPh26+RW85ZEtbJv9nhoxmGTd9FOqjx59Tc1ZbrJabuiXlMwuZQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /esbuild-linux-arm/0.14.47:
- resolution: {integrity: sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /esbuild-linux-arm/0.14.53:
- resolution: {integrity: sha512-/u81NGAVZMopbmzd21Nu/wvnKQK3pT4CrvQ8BTje1STXcQAGnfyKgQlj3m0j2BzYbvQxSy+TMck4TNV2onvoPA==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- optional: true
+ '@babel/runtime': 7.18.9
+ compute-scroll-into-view: 1.0.20
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-is: 17.0.2
+ tslib: 2.4.0
+ dev: false
- /esbuild-linux-arm64/0.14.47:
- resolution: {integrity: sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
+ /duplexer@0.1.2:
+ resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
dev: false
- optional: true
- /esbuild-linux-arm64/0.14.53:
- resolution: {integrity: sha512-GDmWITT+PMsjCA6/lByYk7NyFssW4Q6in32iPkpjZ/ytSyH+xeEx8q7HG3AhWH6heemEYEWpTll/eui3jwlSnw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- optional: true
+ /ee-first@1.1.1:
+ resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
+ dev: false
- /esbuild-linux-mips64le/0.14.47:
- resolution: {integrity: sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
+ /ejs@3.1.9:
+ resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+ dependencies:
+ jake: 10.8.6
dev: false
- optional: true
- /esbuild-linux-mips64le/0.14.53:
- resolution: {integrity: sha512-d6/XHIQW714gSSp6tOOX2UscedVobELvQlPMkInhx1NPz4ThZI9uNLQ4qQJHGBGKGfu+rtJsxM4NVHLhnNRdWQ==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- optional: true
+ /electron-to-chromium@1.4.405:
+ resolution: {integrity: sha512-JdDgnwU69FMZURoesf9gNOej2Cms1XJFfLk24y1IBtnAdhTcJY/mXnokmpmxHN59PcykBP4bgUU98vLY44Lhuw==}
- /esbuild-linux-ppc64le/0.14.47:
- resolution: {integrity: sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==}
+ /emittery@0.10.2:
+ resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==}
engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
+
+ /emittery@0.8.1:
+ resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==}
+ engines: {node: '>=10'}
dev: false
- optional: true
- /esbuild-linux-ppc64le/0.14.53:
- resolution: {integrity: sha512-ndnJmniKPCB52m+r6BtHHLAOXw+xBCWIxNnedbIpuREOcbSU/AlyM/2dA3BmUQhsHdb4w3amD5U2s91TJ3MzzA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- optional: true
+ /emoji-regex@8.0.0:
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- /esbuild-linux-riscv64/0.14.47:
- resolution: {integrity: sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
+ /emoji-regex@9.2.2:
+ resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
dev: false
- optional: true
- /esbuild-linux-riscv64/0.14.53:
- resolution: {integrity: sha512-yG2sVH+QSix6ct4lIzJj329iJF3MhloLE6/vKMQAAd26UVPVkhMFqFopY+9kCgYsdeWvXdPgmyOuKa48Y7+/EQ==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- optional: true
+ /emojis-list@3.0.0:
+ resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
+ engines: {node: '>= 4'}
- /esbuild-linux-s390x/0.14.47:
- resolution: {integrity: sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
+ /encodeurl@1.0.2:
+ resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
+ engines: {node: '>= 0.8'}
dev: false
- optional: true
-
- /esbuild-linux-s390x/0.14.53:
- resolution: {integrity: sha512-OCJlgdkB+XPYndHmw6uZT7jcYgzmx9K+28PVdOa/eLjdoYkeAFvH5hTwX4AXGLZLH09tpl4bVsEtvuyUldaNCg==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- optional: true
- /esbuild-loader/2.19.0:
- resolution: {integrity: sha512-urGNVE6Tl2rqx92ElKi/LiExXjGvcH6HfDBFzJ9Ppwqh4n6Jmx8x7RKAyMzSM78b6CAaJLhDncG5sPrL0ROh5Q==}
- peerDependencies:
- webpack: ^4.40.0 || ^5.0.0
+ /enhanced-resolve@5.14.1:
+ resolution: {integrity: sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==}
+ engines: {node: '>=10.13.0'}
dependencies:
- esbuild: 0.14.47
- joycon: 3.0.1
- json5: 2.2.0
- loader-utils: 2.0.0
+ graceful-fs: 4.2.11
tapable: 2.2.1
- webpack-sources: 2.3.1
- dev: false
- /esbuild-netbsd-64/0.14.47:
- resolution: {integrity: sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: false
- optional: true
+ /enquirer@2.3.6:
+ resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
+ engines: {node: '>=8.6'}
+ dependencies:
+ ansi-colors: 4.1.3
+ dev: true
- /esbuild-netbsd-64/0.14.53:
- resolution: {integrity: sha512-gp2SB+Efc7MhMdWV2+pmIs/Ja/Mi5rjw+wlDmmbIn68VGXBleNgiEZG+eV2SRS0kJEUyHNedDtwRIMzaohWedQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- optional: true
+ /entities@2.2.0:
+ resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- /esbuild-openbsd-64/0.14.47:
- resolution: {integrity: sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: false
- optional: true
+ /entities@4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
+ engines: {node: '>=0.12'}
- /esbuild-openbsd-64/0.14.53:
- resolution: {integrity: sha512-eKQ30ZWe+WTZmteDYg8S+YjHV5s4iTxeSGhJKJajFfQx9TLZJvsJX0/paqwP51GicOUruFpSUAs2NCc0a4ivQQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- optional: true
+ /error-ex@1.3.2:
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ dependencies:
+ is-arrayish: 0.2.1
- /esbuild-sunos-64/0.14.47:
- resolution: {integrity: sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
+ /error-stack-parser@2.1.4:
+ resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
+ dependencies:
+ stackframe: 1.3.4
dev: false
- optional: true
- /esbuild-sunos-64/0.14.53:
- resolution: {integrity: sha512-OWLpS7a2FrIRukQqcgQqR1XKn0jSJoOdT+RlhAxUoEQM/IpytS3FXzCJM6xjUYtpO5GMY0EdZJp+ur2pYdm39g==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- optional: true
+ /es-abstract@1.21.2:
+ resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.0
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ es-set-tostringtag: 2.0.1
+ es-to-primitive: 1.2.1
+ function.prototype.name: 1.1.5
+ get-intrinsic: 1.2.1
+ get-symbol-description: 1.0.0
+ globalthis: 1.0.3
+ gopd: 1.0.1
+ has: 1.0.3
+ has-property-descriptors: 1.0.0
+ has-proto: 1.0.1
+ has-symbols: 1.0.3
+ internal-slot: 1.0.5
+ is-array-buffer: 3.0.2
+ is-callable: 1.2.7
+ is-negative-zero: 2.0.2
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.2
+ is-string: 1.0.7
+ is-typed-array: 1.1.10
+ is-weakref: 1.0.2
+ object-inspect: 1.12.3
+ object-keys: 1.1.1
+ object.assign: 4.1.4
+ regexp.prototype.flags: 1.5.0
+ safe-regex-test: 1.0.0
+ string.prototype.trim: 1.2.7
+ string.prototype.trimend: 1.0.6
+ string.prototype.trimstart: 1.0.6
+ typed-array-length: 1.0.4
+ unbox-primitive: 1.0.2
+ which-typed-array: 1.1.9
- /esbuild-wasm/0.14.53:
- resolution: {integrity: sha512-7b9EaBu6T16D4++/tEecq60wa1/latTo55U2frlpD5ATZSS2CpJ4Dd64Wck+xRXZp8pMJ5eQHEDiCr5bU2naQA==}
- engines: {node: '>=12'}
- hasBin: true
+ /es-array-method-boxes-properly@1.0.0:
+ resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
dev: false
- /esbuild-windows-32/0.14.47:
- resolution: {integrity: sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: false
- optional: true
+ /es-get-iterator@1.1.3:
+ resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.2.1
+ has-symbols: 1.0.3
+ is-arguments: 1.1.1
+ is-map: 2.0.2
+ is-set: 2.0.2
+ is-string: 1.0.7
+ isarray: 2.0.5
+ stop-iteration-iterator: 1.0.0
- /esbuild-windows-32/0.14.53:
- resolution: {integrity: sha512-m14XyWQP5rwGW0tbEfp95U6A0wY0DYPInWBB7D69FAXUpBpBObRoGTKRv36lf2RWOdE4YO3TNvj37zhXjVL5xg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- optional: true
+ /es-module-lexer@1.2.1:
+ resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==}
- /esbuild-windows-64/0.14.47:
- resolution: {integrity: sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: false
- optional: true
+ /es-set-tostringtag@2.0.1:
+ resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.1
+ has: 1.0.3
+ has-tostringtag: 1.0.0
- /esbuild-windows-64/0.14.53:
- resolution: {integrity: sha512-s9skQFF0I7zqnQ2K8S1xdLSfZFsPLuOGmSx57h2btSEswv0N0YodYvqLcJMrNMXh6EynOmWD7rz+0rWWbFpIHQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- optional: true
+ /es-shim-unscopables@1.0.0:
+ resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
+ dependencies:
+ has: 1.0.3
- /esbuild-windows-arm64/0.14.47:
- resolution: {integrity: sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
+ /es-to-primitive@1.2.1:
+ resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-callable: 1.2.7
+ is-date-object: 1.0.5
+ is-symbol: 1.0.4
+
+ /esbuild-loader@3.0.1(webpack@5.84.0):
+ resolution: {integrity: sha512-aZfGybqTeuyCd4AsVvWOOfkhIuN+wfZFjMyh3gyQEU1Uvsl8L6vye9HqP93iRa0iTA+6Jclap514PJIC3cLnMA==}
+ peerDependencies:
+ webpack: ^4.40.0 || ^5.0.0
+ dependencies:
+ esbuild: 0.17.19
+ get-tsconfig: 4.5.0
+ loader-utils: 2.0.4
+ webpack: 5.84.0
+ webpack-sources: 1.4.3
dev: false
- optional: true
- /esbuild-windows-arm64/0.14.53:
- resolution: {integrity: sha512-E+5Gvb+ZWts+00T9II6wp2L3KG2r3iGxByqd/a1RmLmYWVsSVUjkvIxZuJ3hYTIbhLkH5PRwpldGTKYqVz0nzQ==}
+ /esbuild-wasm@0.17.19:
+ resolution: {integrity: sha512-X9UQEMJMZXwlGCfqcBmJ1jEa+KrLfd+gCBypO/TSzo5hZvbVwFqpxj1YCuX54ptTF75wxmrgorR4RL40AKtLVg==}
engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- optional: true
-
- /esbuild/0.11.23:
- resolution: {integrity: sha512-iaiZZ9vUF5wJV8ob1tl+5aJTrwDczlvGP0JoMmnpC2B0ppiMCu8n8gmy5ZTGl5bcG081XBVn+U+jP+mPFm5T5Q==}
hasBin: true
- requiresBuild: true
- dev: true
+ dev: false
- /esbuild/0.14.47:
- resolution: {integrity: sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==}
+ /esbuild@0.17.19:
+ resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- esbuild-android-64: 0.14.47
- esbuild-android-arm64: 0.14.47
- esbuild-darwin-64: 0.14.47
- esbuild-darwin-arm64: 0.14.47
- esbuild-freebsd-64: 0.14.47
- esbuild-freebsd-arm64: 0.14.47
- esbuild-linux-32: 0.14.47
- esbuild-linux-64: 0.14.47
- esbuild-linux-arm: 0.14.47
- esbuild-linux-arm64: 0.14.47
- esbuild-linux-mips64le: 0.14.47
- esbuild-linux-ppc64le: 0.14.47
- esbuild-linux-riscv64: 0.14.47
- esbuild-linux-s390x: 0.14.47
- esbuild-netbsd-64: 0.14.47
- esbuild-openbsd-64: 0.14.47
- esbuild-sunos-64: 0.14.47
- esbuild-windows-32: 0.14.47
- esbuild-windows-64: 0.14.47
- esbuild-windows-arm64: 0.14.47
- dev: false
-
- /esbuild/0.14.53:
- resolution: {integrity: sha512-ohO33pUBQ64q6mmheX1mZ8mIXj8ivQY/L4oVuAshr+aJI+zLl+amrp3EodrUNDNYVrKJXGPfIHFGhO8slGRjuw==}
+ '@esbuild/android-arm': 0.17.19
+ '@esbuild/android-arm64': 0.17.19
+ '@esbuild/android-x64': 0.17.19
+ '@esbuild/darwin-arm64': 0.17.19
+ '@esbuild/darwin-x64': 0.17.19
+ '@esbuild/freebsd-arm64': 0.17.19
+ '@esbuild/freebsd-x64': 0.17.19
+ '@esbuild/linux-arm': 0.17.19
+ '@esbuild/linux-arm64': 0.17.19
+ '@esbuild/linux-ia32': 0.17.19
+ '@esbuild/linux-loong64': 0.17.19
+ '@esbuild/linux-mips64el': 0.17.19
+ '@esbuild/linux-ppc64': 0.17.19
+ '@esbuild/linux-riscv64': 0.17.19
+ '@esbuild/linux-s390x': 0.17.19
+ '@esbuild/linux-x64': 0.17.19
+ '@esbuild/netbsd-x64': 0.17.19
+ '@esbuild/openbsd-x64': 0.17.19
+ '@esbuild/sunos-x64': 0.17.19
+ '@esbuild/win32-arm64': 0.17.19
+ '@esbuild/win32-ia32': 0.17.19
+ '@esbuild/win32-x64': 0.17.19
+
+ /esbuild@0.17.6:
+ resolution: {integrity: sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/linux-loong64': 0.14.53
- esbuild-android-64: 0.14.53
- esbuild-android-arm64: 0.14.53
- esbuild-darwin-64: 0.14.53
- esbuild-darwin-arm64: 0.14.53
- esbuild-freebsd-64: 0.14.53
- esbuild-freebsd-arm64: 0.14.53
- esbuild-linux-32: 0.14.53
- esbuild-linux-64: 0.14.53
- esbuild-linux-arm: 0.14.53
- esbuild-linux-arm64: 0.14.53
- esbuild-linux-mips64le: 0.14.53
- esbuild-linux-ppc64le: 0.14.53
- esbuild-linux-riscv64: 0.14.53
- esbuild-linux-s390x: 0.14.53
- esbuild-netbsd-64: 0.14.53
- esbuild-openbsd-64: 0.14.53
- esbuild-sunos-64: 0.14.53
- esbuild-windows-32: 0.14.53
- esbuild-windows-64: 0.14.53
- esbuild-windows-arm64: 0.14.53
-
- /escalade/3.1.1:
+ '@esbuild/android-arm': 0.17.6
+ '@esbuild/android-arm64': 0.17.6
+ '@esbuild/android-x64': 0.17.6
+ '@esbuild/darwin-arm64': 0.17.6
+ '@esbuild/darwin-x64': 0.17.6
+ '@esbuild/freebsd-arm64': 0.17.6
+ '@esbuild/freebsd-x64': 0.17.6
+ '@esbuild/linux-arm': 0.17.6
+ '@esbuild/linux-arm64': 0.17.6
+ '@esbuild/linux-ia32': 0.17.6
+ '@esbuild/linux-loong64': 0.17.6
+ '@esbuild/linux-mips64el': 0.17.6
+ '@esbuild/linux-ppc64': 0.17.6
+ '@esbuild/linux-riscv64': 0.17.6
+ '@esbuild/linux-s390x': 0.17.6
+ '@esbuild/linux-x64': 0.17.6
+ '@esbuild/netbsd-x64': 0.17.6
+ '@esbuild/openbsd-x64': 0.17.6
+ '@esbuild/sunos-x64': 0.17.6
+ '@esbuild/win32-arm64': 0.17.6
+ '@esbuild/win32-ia32': 0.17.6
+ '@esbuild/win32-x64': 0.17.6
+ dev: true
+
+ /escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
- /escape-html/1.0.3:
- resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=}
+ /escape-html@1.0.3:
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
dev: false
- /escape-string-regexp/1.0.5:
+ /escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
- /escape-string-regexp/2.0.0:
+ /escape-string-regexp@2.0.0:
resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
engines: {node: '>=8'}
- /escape-string-regexp/4.0.0:
+ /escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- /escodegen/2.0.0:
+ /escodegen@2.0.0:
resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==}
engines: {node: '>=6.0'}
hasBin: true
@@ -10218,7 +9015,7 @@ packages:
source-map: 0.6.1
dev: false
- /eslint-config-react-app/7.0.1_vn3pi5swrhxnvt6h7ahlpfzyoa:
+ /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.5)(eslint@8.43.0)(jest@27.5.1)(typescript@4.6.4):
resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -10228,21 +9025,21 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.18.5
- '@babel/eslint-parser': 7.17.0_hh6gdl3bupb3oz2rn4ykfrzfzm
- '@rushstack/eslint-patch': 1.1.3
- '@typescript-eslint/eslint-plugin': 5.23.0_ttki4ynzteu7mlbvqnybjztyzm
- '@typescript-eslint/parser': 5.23.0_uywfi3zeys2kqr4zjbjh4sypl4
+ '@babel/core': 7.18.10
+ '@babel/eslint-parser': 7.21.8(@babel/core@7.18.10)(eslint@8.43.0)
+ '@rushstack/eslint-patch': 1.3.0
+ '@typescript-eslint/eslint-plugin': 5.59.7(@typescript-eslint/parser@5.59.7)(eslint@8.43.0)(typescript@4.6.4)
+ '@typescript-eslint/parser': 5.59.7(eslint@8.43.0)(typescript@4.6.4)
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
eslint: 8.43.0
- eslint-plugin-flowtype: 8.0.3_eslint@8.43.0
- eslint-plugin-import: 2.26.0_inevvfcfwd33dbsqvshvbxioai
- eslint-plugin-jest: 25.7.0_dkm2c6sfpke3lgwj5jjdhx3wzy
- eslint-plugin-jsx-a11y: 6.5.1_eslint@8.43.0
- eslint-plugin-react: 7.29.4_eslint@8.43.0
- eslint-plugin-react-hooks: 4.5.0_eslint@8.43.0
- eslint-plugin-testing-library: 5.5.0_uywfi3zeys2kqr4zjbjh4sypl4
+ eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.5)(eslint@8.43.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.7)(eslint@8.43.0)
+ eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.59.7)(eslint@8.43.0)(jest@27.5.1)(typescript@4.6.4)
+ eslint-plugin-jsx-a11y: 6.7.1(eslint@8.43.0)
+ eslint-plugin-react: 7.32.2(eslint@8.43.0)
+ eslint-plugin-react-hooks: 4.6.0(eslint@8.43.0)
+ eslint-plugin-testing-library: 5.11.0(eslint@8.43.0)(typescript@4.6.4)
typescript: 4.6.4
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
@@ -10253,26 +9050,30 @@ packages:
- supports-color
dev: false
- /eslint-import-resolver-node/0.3.6:
- resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==}
+ /eslint-import-resolver-node@0.3.7:
+ resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
dependencies:
debug: 3.2.7
- resolve: 1.22.0
+ is-core-module: 2.12.1
+ resolve: 1.22.2
transitivePeerDependencies:
- supports-color
dev: false
- /eslint-module-utils/2.7.3_cphntlaow2spielwlvsegonsm4:
- resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.7)(eslint-import-resolver-node@0.3.7)(eslint@8.43.0):
+ resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
+ eslint: '*'
eslint-import-resolver-node: '*'
eslint-import-resolver-typescript: '*'
eslint-import-resolver-webpack: '*'
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
+ eslint:
+ optional: true
eslint-import-resolver-node:
optional: true
eslint-import-resolver-typescript:
@@ -10280,15 +9081,15 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.23.0_uywfi3zeys2kqr4zjbjh4sypl4
+ '@typescript-eslint/parser': 5.59.7(eslint@8.43.0)(typescript@4.6.4)
debug: 3.2.7
- eslint-import-resolver-node: 0.3.6
- find-up: 2.1.0
+ eslint: 8.43.0
+ eslint-import-resolver-node: 0.3.7
transitivePeerDependencies:
- supports-color
dev: false
- /eslint-plugin-flowtype/8.0.3_eslint@8.43.0:
+ /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.5)(eslint@8.43.0):
resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -10296,13 +9097,15 @@ packages:
'@babel/plugin-transform-react-jsx': ^7.14.9
eslint: ^8.1.0
dependencies:
+ '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.8)
eslint: 8.43.0
lodash: 4.17.21
string-natural-compare: 3.0.1
dev: false
- /eslint-plugin-import/2.26.0_inevvfcfwd33dbsqvshvbxioai:
- resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
+ /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.7)(eslint@8.43.0):
+ resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -10311,28 +9114,30 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.23.0_uywfi3zeys2kqr4zjbjh4sypl4
- array-includes: 3.1.5
- array.prototype.flat: 1.3.0
- debug: 2.6.9
+ '@typescript-eslint/parser': 5.59.7(eslint@8.43.0)(typescript@4.6.4)
+ array-includes: 3.1.6
+ array.prototype.flat: 1.3.1
+ array.prototype.flatmap: 1.3.1
+ debug: 3.2.7
doctrine: 2.1.0
eslint: 8.43.0
- eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.3_cphntlaow2spielwlvsegonsm4
+ eslint-import-resolver-node: 0.3.7
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.7)(eslint-import-resolver-node@0.3.7)(eslint@8.43.0)
has: 1.0.3
- is-core-module: 2.9.0
+ is-core-module: 2.12.1
is-glob: 4.0.3
minimatch: 3.1.2
- object.values: 1.1.5
- resolve: 1.22.0
- tsconfig-paths: 3.14.1
+ object.values: 1.1.6
+ resolve: 1.22.2
+ semver: 6.3.0
+ tsconfig-paths: 3.14.2
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
dev: false
- /eslint-plugin-jest/25.7.0_dkm2c6sfpke3lgwj5jjdhx3wzy:
+ /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.59.7)(eslint@8.43.0)(jest@27.5.1)(typescript@4.6.4):
resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
peerDependencies:
@@ -10345,8 +9150,8 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.23.0_ttki4ynzteu7mlbvqnybjztyzm
- '@typescript-eslint/experimental-utils': 5.23.0_uywfi3zeys2kqr4zjbjh4sypl4
+ '@typescript-eslint/eslint-plugin': 5.59.7(@typescript-eslint/parser@5.59.7)(eslint@8.43.0)(typescript@4.6.4)
+ '@typescript-eslint/experimental-utils': 5.59.7(eslint@8.43.0)(typescript@4.6.4)
eslint: 8.43.0
jest: 27.5.1
transitivePeerDependencies:
@@ -10354,29 +9159,33 @@ packages:
- typescript
dev: false
- /eslint-plugin-jsx-a11y/6.5.1_eslint@8.43.0:
- resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==}
+ /eslint-plugin-jsx-a11y@6.7.1(eslint@8.43.0):
+ resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.18.9
- aria-query: 4.2.2
- array-includes: 3.1.5
+ '@babel/runtime': 7.21.5
+ aria-query: 5.1.3
+ array-includes: 3.1.6
+ array.prototype.flatmap: 1.3.1
ast-types-flow: 0.0.7
- axe-core: 4.4.2
- axobject-query: 2.2.0
+ axe-core: 4.7.1
+ axobject-query: 3.1.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
eslint: 8.43.0
has: 1.0.3
- jsx-ast-utils: 3.3.0
+ jsx-ast-utils: 3.3.3
language-tags: 1.0.5
minimatch: 3.1.2
+ object.entries: 1.1.6
+ object.fromentries: 2.0.6
+ semver: 6.3.0
dev: false
- /eslint-plugin-react-hooks/4.5.0_eslint@8.43.0:
- resolution: {integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==}
+ /eslint-plugin-react-hooks@4.6.0(eslint@8.43.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
@@ -10384,97 +9193,88 @@ packages:
eslint: 8.43.0
dev: false
- /eslint-plugin-react/7.29.4_eslint@8.43.0:
- resolution: {integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==}
+ /eslint-plugin-react@7.32.2(eslint@8.43.0):
+ resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- array-includes: 3.1.5
- array.prototype.flatmap: 1.3.0
+ array-includes: 3.1.6
+ array.prototype.flatmap: 1.3.1
+ array.prototype.tosorted: 1.1.1
doctrine: 2.1.0
eslint: 8.43.0
estraverse: 5.3.0
- jsx-ast-utils: 3.3.0
+ jsx-ast-utils: 3.3.3
minimatch: 3.1.2
- object.entries: 1.1.5
- object.fromentries: 2.0.5
- object.hasown: 1.1.1
- object.values: 1.1.5
+ object.entries: 1.1.6
+ object.fromentries: 2.0.6
+ object.hasown: 1.1.2
+ object.values: 1.1.6
prop-types: 15.8.1
- resolve: 2.0.0-next.3
+ resolve: 2.0.0-next.4
semver: 6.3.0
- string.prototype.matchall: 4.0.7
+ string.prototype.matchall: 4.0.8
dev: false
- /eslint-plugin-testing-library/5.5.0_uywfi3zeys2kqr4zjbjh4sypl4:
- resolution: {integrity: sha512-eWQ19l6uWL7LW8oeMyQVSGjVYFnBqk7DMHjadm0yOHBvX3Xi9OBrsNuxoAMdX4r7wlQ5WWpW46d+CB6FWFL/PQ==}
+ /eslint-plugin-testing-library@5.11.0(eslint@8.43.0)(typescript@4.6.4):
+ resolution: {integrity: sha512-ELY7Gefo+61OfXKlQeXNIDVVLPcvKTeiQOoMZG9TeuWa7Ln4dUNRv8JdRWBQI9Mbb427XGlVB1aa1QPZxBJM8Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'}
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.23.0_uywfi3zeys2kqr4zjbjh4sypl4
+ '@typescript-eslint/utils': 5.59.7(eslint@8.43.0)(typescript@4.6.4)
eslint: 8.43.0
transitivePeerDependencies:
- supports-color
- typescript
dev: false
- /eslint-scope/5.1.1:
+ /eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- /eslint-scope/7.2.0:
+ /eslint-scope@7.2.0:
resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
- /eslint-utils/3.0.0_eslint@8.43.0:
- resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
- engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
- peerDependencies:
- eslint: '>=5'
- dependencies:
- eslint: 8.43.0
- eslint-visitor-keys: 2.1.0
- dev: false
-
- /eslint-visitor-keys/2.1.0:
+ /eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
dev: false
- /eslint-visitor-keys/3.4.1:
+ /eslint-visitor-keys@3.4.1:
resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /eslint-webpack-plugin/3.1.1_xskiyb2ulvvvkw3jfu2r7gejyu:
- resolution: {integrity: sha512-xSucskTN9tOkfW7so4EaiFIkulWLXwCB/15H917lR6pTv0Zot6/fetFucmENRb7J5whVSFKIvwnrnsa78SG2yg==}
+ /eslint-webpack-plugin@3.2.0(eslint@8.43.0)(webpack@5.84.0):
+ resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==}
engines: {node: '>= 12.13.0'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
webpack: ^5.0.0
dependencies:
- '@types/eslint': 7.29.0
+ '@types/eslint': 8.40.0
eslint: 8.43.0
- jest-worker: 27.5.1
+ jest-worker: 28.1.3
micromatch: 4.0.5
normalize-path: 3.0.0
- schema-utils: 3.1.1
- webpack: 5.73.0
+ schema-utils: 4.0.1
+ webpack: 5.84.0
dev: false
- /eslint/8.43.0:
+ /eslint@8.43.0:
resolution: {integrity: sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.43.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0)
'@eslint-community/regexpp': 4.5.1
'@eslint/eslintrc': 2.0.3
'@eslint/js': 8.43.0
@@ -10498,7 +9298,7 @@ packages:
glob-parent: 6.0.2
globals: 13.20.0
graphemer: 1.4.0
- ignore: 5.2.0
+ ignore: 5.2.4
import-fresh: 3.3.0
imurmurhash: 0.1.4
is-glob: 4.0.3
@@ -10516,109 +9316,112 @@ packages:
transitivePeerDependencies:
- supports-color
- /espree/9.5.2:
+ /espree@9.5.2:
resolution: {integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.8.0
- acorn-jsx: 5.3.2_acorn@8.8.0
+ acorn: 8.8.2
+ acorn-jsx: 5.3.2(acorn@8.8.2)
eslint-visitor-keys: 3.4.1
- /esprima/4.0.1:
+ /esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- /esquery/1.5.0:
+ /esquery@1.5.0:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
dependencies:
estraverse: 5.3.0
- /esrecurse/4.3.0:
+ /esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
dependencies:
estraverse: 5.3.0
- /estraverse/4.3.0:
+ /estraverse@4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
- /estraverse/5.3.0:
+ /estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- /estree-util-attach-comments/2.0.0:
- resolution: {integrity: sha512-kT9YVRvlt2ewPp9BazfIIgXMGsXOEpOm57bK8aa4F3eOEndMml2JAETjWaG3SZYHmC6axSNIzHGY718dYwIuVg==}
+ /estree-util-attach-comments@2.1.1:
+ resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==}
dependencies:
- '@types/estree': 0.0.46
+ '@types/estree': 1.0.1
dev: false
- /estree-util-build-jsx/2.0.0:
- resolution: {integrity: sha512-d49hPGqBCJF/bF06g1Ywg7zjH1mrrUdPPrixBlKBxcX4WvMYlUUJ8BkrwlzWc8/fm6XqGgk5jilhgeZBDEGwOQ==}
+ /estree-util-build-jsx@2.2.2:
+ resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==}
dependencies:
- '@types/estree-jsx': 0.0.1
- estree-util-is-identifier-name: 2.0.0
- estree-walker: 3.0.1
+ '@types/estree-jsx': 1.0.0
+ estree-util-is-identifier-name: 2.1.0
+ estree-walker: 3.0.3
dev: false
- /estree-util-is-identifier-name/1.1.0:
+ /estree-util-is-identifier-name@1.1.0:
resolution: {integrity: sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==}
dev: false
- /estree-util-is-identifier-name/2.0.0:
- resolution: {integrity: sha512-aXXZFVMnBBDRP81vS4YtAYJ0hUkgEsXea7lNKWCOeaAquGb1Jm2rcONPB5fpzwgbNxulTvrWuKnp9UElUGAKeQ==}
+ /estree-util-is-identifier-name@2.1.0:
+ resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==}
dev: false
- /estree-util-value-to-estree/1.3.0:
+ /estree-util-value-to-estree@1.3.0:
resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==}
engines: {node: '>=12.0.0'}
dependencies:
is-plain-obj: 3.0.0
dev: false
- /estree-util-visit/1.1.0:
- resolution: {integrity: sha512-3lXJ4Us9j8TUif9cWcQy81t9p5OLasnDuuhrFiqb+XstmKC1d1LmrQWYsY49/9URcfHE64mPypDBaNK9NwWDPQ==}
+ /estree-util-visit@1.2.1:
+ resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==}
dependencies:
- '@types/estree-jsx': 0.0.1
+ '@types/estree-jsx': 1.0.0
'@types/unist': 2.0.6
dev: false
- /estree-walker/1.0.1:
+ /estree-walker@1.0.1:
resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
+ dev: false
- /estree-walker/2.0.2:
+ /estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
- /estree-walker/3.0.1:
- resolution: {integrity: sha512-woY0RUD87WzMBUiZLx8NsYr23N5BKsOMZHhu2hoNRVh6NXGfoiT1KOL8G3UHlJAnEDGmfa5ubNA/AacfG+Kb0g==}
+ /estree-walker@3.0.3:
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+ dependencies:
+ '@types/estree': 1.0.1
dev: false
- /esutils/2.0.3:
+ /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- /etag/1.8.1:
- resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=}
+ /etag@1.8.1:
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
dev: false
- /eval/0.1.6:
+ /eval@0.1.6:
resolution: {integrity: sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ==}
engines: {node: '>= 0.8'}
dependencies:
require-like: 0.1.2
dev: true
- /eventemitter3/4.0.7:
+ /eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
- /events/3.3.0:
+ /events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- /execa/5.1.1:
+ /execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
dependencies:
@@ -10632,11 +9435,11 @@ packages:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- /exit/0.1.2:
- resolution: {integrity: sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=}
+ /exit@0.1.2:
+ resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
- /expect/27.5.1:
+ /expect@27.5.1:
resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -10646,64 +9449,26 @@ packages:
jest-message-util: 27.5.1
dev: false
- /expect/28.1.3:
- resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@jest/expect-utils': 28.1.3
- jest-get-type: 28.0.2
- jest-matcher-utils: 28.1.3
- jest-message-util: 28.1.3
- jest-util: 28.1.3
- dev: true
-
- /express/4.17.3:
- resolution: {integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==}
- engines: {node: '>= 0.10.0'}
- dependencies:
- accepts: 1.3.8
- array-flatten: 1.1.1
- body-parser: 1.19.2
- content-disposition: 0.5.4
- content-type: 1.0.4
- cookie: 0.4.2
- cookie-signature: 1.0.6
- debug: 2.6.9
- depd: 1.1.2
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 1.1.2
- fresh: 0.5.2
- merge-descriptors: 1.0.1
- methods: 1.1.2
- on-finished: 2.3.0
- parseurl: 1.3.3
- path-to-regexp: 0.1.7
- proxy-addr: 2.0.7
- qs: 6.9.7
- range-parser: 1.2.1
- safe-buffer: 5.2.1
- send: 0.17.2
- serve-static: 1.14.2
- setprototypeof: 1.2.0
- statuses: 1.5.0
- type-is: 1.6.18
- utils-merge: 1.0.1
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /express/4.18.1:
- resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==}
+ /expect@28.1.3:
+ resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==}
+ engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ dependencies:
+ '@jest/expect-utils': 28.1.3
+ jest-get-type: 28.0.2
+ jest-matcher-utils: 28.1.3
+ jest-message-util: 28.1.3
+ jest-util: 28.1.3
+ dev: true
+
+ /express@4.18.2:
+ resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
engines: {node: '>= 0.10.0'}
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.0
+ body-parser: 1.20.1
content-disposition: 0.5.4
- content-type: 1.0.4
+ content-type: 1.0.5
cookie: 0.5.0
cookie-signature: 1.0.6
debug: 2.6.9
@@ -10720,7 +9485,7 @@ packages:
parseurl: 1.3.3
path-to-regexp: 0.1.7
proxy-addr: 2.0.7
- qs: 6.10.3
+ qs: 6.11.0
range-parser: 1.2.1
safe-buffer: 5.2.1
send: 0.18.0
@@ -10734,15 +9499,15 @@ packages:
- supports-color
dev: false
- /extend/3.0.2:
+ /extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
dev: false
- /extendable-error/0.1.7:
+ /extendable-error@0.1.7:
resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
dev: true
- /external-editor/3.1.0:
+ /external-editor@3.1.0:
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
engines: {node: '>=4'}
dependencies:
@@ -10750,11 +9515,11 @@ packages:
iconv-lite: 0.4.24
tmp: 0.0.33
- /fast-deep-equal/3.1.3:
+ /fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- /fast-glob/3.2.11:
- resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==}
+ /fast-glob@3.2.12:
+ resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -10763,108 +9528,97 @@ packages:
merge2: 1.4.1
micromatch: 4.0.5
- /fast-json-stable-stringify/2.1.0:
+ /fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- /fast-levenshtein/2.0.6:
+ /fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- /fast-plist/0.1.2:
- resolution: {integrity: sha1-pFr/NFGWAG1AbKbNzQX2kFHvNbg=}
+ /fast-plist@0.1.3:
+ resolution: {integrity: sha512-d9cEfo/WcOezgPLAC/8t8wGb6YOD6JTCPMw2QcG2nAdFmyY+9rTUizCTaGjIZAloWENTEUMAPpkUAIJJJ0i96A==}
dev: false
- /fastq/1.13.0:
- resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
+ /fastparse@1.1.2:
+ resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
+ dev: true
+
+ /fastq@1.15.0:
+ resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
- /fault/1.0.4:
+ /fault@1.0.4:
resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==}
dependencies:
format: 0.2.2
dev: false
- /faye-websocket/0.11.4:
+ /faye-websocket@0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'}
dependencies:
websocket-driver: 0.7.4
dev: false
- /fb-watchman/2.0.1:
- resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==}
+ /fb-watchman@2.0.2:
+ resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
dependencies:
bser: 2.1.1
- /fetch-blob/3.1.4:
- resolution: {integrity: sha512-Eq5Xv5+VlSrYWEqKrusxY1C3Hm/hjeAsCGVG3ft7pZahlUAChpGZT/Ms1WmSLnEAisEXszjzu/s+ce6HZB2VHA==}
+ /fetch-blob@3.2.0:
+ resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
engines: {node: ^12.20 || >= 14.13}
dependencies:
node-domexception: 1.0.0
- web-streams-polyfill: 3.2.0
+ web-streams-polyfill: 3.2.1
dev: false
- /figures/3.2.0:
+ /figures@3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
dependencies:
escape-string-regexp: 1.0.5
- /file-entry-cache/6.0.1:
+ /file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flat-cache: 3.0.4
- /file-loader/6.2.0_webpack@5.73.0:
+ /file-loader@6.2.0(webpack@5.84.0):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
- loader-utils: 2.0.2
- schema-utils: 3.1.1
- webpack: 5.73.0
+ loader-utils: 2.0.4
+ schema-utils: 3.1.2
+ webpack: 5.84.0
dev: false
- /file-uri-to-path/1.0.0:
+ /file-uri-to-path@1.0.0:
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
dev: false
optional: true
- /filelist/1.0.4:
+ /filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
- minimatch: 5.1.0
+ minimatch: 5.1.6
dev: false
- /filesize/8.0.7:
+ /filesize@8.0.7:
resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==}
engines: {node: '>= 0.4.0'}
dev: false
- /fill-range/7.0.1:
+ /fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
- /finalhandler/1.1.2:
- resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
- engines: {node: '>= 0.8'}
- dependencies:
- debug: 2.6.9
- encodeurl: 1.0.2
- escape-html: 1.0.3
- on-finished: 2.3.0
- parseurl: 1.3.3
- statuses: 1.5.0
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /finalhandler/1.2.0:
+ /finalhandler@1.2.0:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
dependencies:
@@ -10879,7 +9633,7 @@ packages:
- supports-color
dev: false
- /find-cache-dir/3.3.2:
+ /find-cache-dir@3.3.2:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
dependencies:
@@ -10887,53 +9641,46 @@ packages:
make-dir: 3.1.0
pkg-dir: 4.2.0
- /find-up/2.1.0:
- resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
- engines: {node: '>=4'}
- dependencies:
- locate-path: 2.0.0
- dev: false
-
- /find-up/3.0.0:
+ /find-up@3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
engines: {node: '>=6'}
dependencies:
locate-path: 3.0.0
dev: false
- /find-up/4.1.0:
+ /find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
dependencies:
locate-path: 5.0.0
path-exists: 4.0.0
- /find-up/5.0.0:
+ /find-up@5.0.0:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
dependencies:
locate-path: 6.0.0
path-exists: 4.0.0
- /find-yarn-workspace-root2/1.2.16:
+ /find-yarn-workspace-root2@1.2.16:
resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==}
dependencies:
micromatch: 4.0.5
pkg-dir: 4.2.0
dev: true
- /flat-cache/3.0.4:
+ /flat-cache@3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flatted: 3.2.5
+ flatted: 3.2.7
rimraf: 3.0.2
- /flatted/3.2.5:
- resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==}
+ /flatted@3.2.7:
+ resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
- /follow-redirects/1.14.4:
- resolution: {integrity: sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g==}
+ /follow-redirects@1.15.2:
+ resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -10941,8 +9688,13 @@ packages:
debug:
optional: true
- /fork-ts-checker-webpack-plugin/6.5.2_h7bnoe4qg5b6m7aryrp7j5hcru:
- resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==}
+ /for-each@0.3.3:
+ resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ dependencies:
+ is-callable: 1.2.7
+
+ /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.43.0)(typescript@4.6.4)(webpack@5.84.0):
+ resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
eslint: '>= 6'
@@ -10955,25 +9707,25 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.21.4
'@types/json-schema': 7.0.11
chalk: 4.1.2
chokidar: 3.5.3
cosmiconfig: 6.0.0
- deepmerge: 4.2.2
+ deepmerge: 4.3.1
eslint: 8.43.0
fs-extra: 9.1.0
glob: 7.2.3
- memfs: 3.4.1
+ memfs: 3.5.1
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.3.7
+ semver: 7.5.1
tapable: 1.1.3
typescript: 4.6.4
- webpack: 5.73.0
+ webpack: 5.84.0
dev: false
- /form-data/3.0.1:
+ /form-data@3.0.1:
resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
engines: {node: '>= 6'}
dependencies:
@@ -10982,166 +9734,180 @@ packages:
mime-types: 2.1.35
dev: false
- /format/0.2.2:
- resolution: {integrity: sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=}
+ /format@0.2.2:
+ resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
engines: {node: '>=0.4.x'}
dev: false
- /formdata-polyfill/4.0.10:
+ /formdata-polyfill@4.0.10:
resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
engines: {node: '>=12.20.0'}
dependencies:
- fetch-blob: 3.1.4
+ fetch-blob: 3.2.0
dev: false
- /forwarded/0.2.0:
+ /forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
dev: false
- /fraction.js/4.2.0:
+ /fraction.js@4.2.0:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
- /fresh/0.5.2:
+ /fresh@0.5.2:
resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=}
engines: {node: '>= 0.6'}
dev: false
- /front-matter/4.0.2:
+ /front-matter@4.0.2:
resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==}
dependencies:
js-yaml: 3.14.1
dev: false
- /fs-extra/10.1.0:
+ /fs-extra@10.1.0:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.0
dev: false
- /fs-extra/7.0.1:
+ /fs-extra@11.1.1:
+ resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
+ engines: {node: '>=14.14'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 2.0.0
+
+ /fs-extra@7.0.1:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
dev: true
- /fs-extra/8.1.0:
+ /fs-extra@8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
dev: true
- /fs-extra/9.1.0:
+ /fs-extra@9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
dependencies:
at-least-node: 1.0.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.0
dev: false
- /fs-monkey/1.0.3:
+ /fs-monkey@1.0.3:
resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
dev: false
- /fs.realpath/1.0.0:
+ /fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- /fsevents/2.3.2:
+ /fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
optional: true
- /function-bind/1.1.1:
+ /function-bind@1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
- /function.prototype.name/1.1.5:
+ /function.prototype.name@1.1.5:
resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
functions-have-names: 1.2.3
- /functional-red-black-tree/1.0.1:
- resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=}
- dev: false
-
- /functions-have-names/1.2.3:
+ /functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- /gensync/1.0.0-beta.2:
+ /gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- /get-caller-file/2.0.5:
+ /get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- /get-intrinsic/1.1.1:
- resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==}
+ /get-intrinsic@1.2.1:
+ resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
dependencies:
function-bind: 1.1.1
has: 1.0.3
+ has-proto: 1.0.1
has-symbols: 1.0.3
- /get-nonce/1.0.1:
+ /get-nonce@1.0.1:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
dev: false
- /get-own-enumerable-property-symbols/3.0.2:
+ /get-own-enumerable-property-symbols@3.0.2:
resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
dev: false
- /get-package-type/0.1.0:
+ /get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
- /get-stream/6.0.1:
+ /get-stdin@9.0.0:
+ resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- /get-symbol-description/1.0.0:
+ /get-symbol-description@1.0.0:
resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.2.1
+
+ /get-tsconfig@4.5.0:
+ resolution: {integrity: sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==}
+ dev: false
- /github-slugger/1.4.0:
+ /github-slugger@1.4.0:
resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==}
dev: false
- /glob-parent/5.1.2:
+ /glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
- /glob-parent/6.0.2:
+ /glob-parent@6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
dependencies:
is-glob: 4.0.3
- /glob-to-regexp/0.4.1:
+ /glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- /glob/7.1.6:
+ /glob@7.1.6:
resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
dependencies:
fs.realpath: 1.0.0
@@ -11151,7 +9917,7 @@ packages:
once: 1.4.0
path-is-absolute: 1.0.1
- /glob/7.2.3:
+ /glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
@@ -11161,25 +9927,24 @@ packages:
once: 1.4.0
path-is-absolute: 1.0.1
- /glob/8.0.3:
+ /glob@8.0.3:
resolution: {integrity: sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==}
engines: {node: '>=12'}
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 5.1.0
+ minimatch: 5.1.6
once: 1.4.0
- dev: false
- /global-modules/2.0.0:
+ /global-modules@2.0.0:
resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
engines: {node: '>=6'}
dependencies:
global-prefix: 3.0.0
dev: false
- /global-prefix/3.0.0:
+ /global-prefix@3.0.0:
resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
engines: {node: '>=6'}
dependencies:
@@ -11188,155 +9953,158 @@ packages:
which: 1.3.1
dev: false
- /globals/11.12.0:
+ /globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals/13.20.0:
+ /globals@13.20.0:
resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
- /globby/11.1.0:
+ /globalthis@1.0.3:
+ resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-properties: 1.2.0
+
+ /globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.2.11
- ignore: 5.2.0
+ fast-glob: 3.2.12
+ ignore: 5.2.4
merge2: 1.4.1
slash: 3.0.0
- /globby/13.1.2:
- resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==}
+ /globby@13.1.4:
+ resolution: {integrity: sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
dir-glob: 3.0.1
- fast-glob: 3.2.11
- ignore: 5.2.0
+ fast-glob: 3.2.12
+ ignore: 5.2.4
merge2: 1.4.1
slash: 4.0.0
- dev: false
- /graceful-fs/4.2.10:
- resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
+ /gopd@1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ dependencies:
+ get-intrinsic: 1.2.1
- /graceful-fs/4.2.9:
- resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==}
- dev: false
+ /graceful-fs@4.2.11:
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- /grapheme-splitter/1.0.4:
+ /grapheme-splitter@1.0.4:
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
- dev: true
- /graphemer/1.4.0:
+ /graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
- /graphql/16.5.0:
- resolution: {integrity: sha512-qbHgh8Ix+j/qY+a/ZcJnFQ+j8ezakqPiHwPiZhV/3PgGlgf96QMBB5/f2rkiC9sgLoy/xvT6TSiaf2nTHJh5iA==}
+ /graphql@16.6.0:
+ resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
- /gzip-size/6.0.0:
+ /gzip-size@6.0.0:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
dependencies:
duplexer: 0.1.2
dev: false
- /handle-thing/2.0.1:
+ /handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
dev: false
- /hard-rejection/2.1.0:
+ /hard-rejection@2.1.0:
resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
engines: {node: '>=6'}
dev: true
- /harmony-reflect/1.6.2:
+ /harmony-reflect@1.6.2:
resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==}
dev: false
- /has-bigints/1.0.1:
- resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==}
-
- /has-bigints/1.0.2:
+ /has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
- /has-flag/3.0.0:
+ /has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
- /has-flag/4.0.0:
+ /has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-property-descriptors/1.0.0:
+ /has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.2.1
- /has-symbols/1.0.2:
- resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==}
+ /has-proto@1.0.1:
+ resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
engines: {node: '>= 0.4'}
- /has-symbols/1.0.3:
+ /has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
- /has-tostringtag/1.0.0:
+ /has-tostringtag@1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
dependencies:
- has-symbols: 1.0.2
+ has-symbols: 1.0.3
- /has/1.0.3:
+ /has@1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
- /hast-util-has-property/1.0.4:
+ /hast-util-has-property@1.0.4:
resolution: {integrity: sha512-ghHup2voGfgFoHMGnaLHOjbYFACKrRh9KFttdCzMCbFoBMJXiNi2+XTrPP8+q6cDJM/RSqlCfVWrjp1H201rZg==}
dev: false
- /hast-util-heading-rank/1.0.1:
+ /hast-util-heading-rank@1.0.1:
resolution: {integrity: sha512-P6Hq7RCky9syMevlrN90QWpqWDXCxwIVOfQR2rK6P4GpY4bqjKEuCzoWSRORZ7vz+VgRpLnXimh+mkwvVFjbyQ==}
dev: false
- /hast-util-heading/1.0.5:
+ /hast-util-heading@1.0.5:
resolution: {integrity: sha512-dU4fm5D88ZUn89GRQ0HHW9p7FgDYIgH7PNMr6ZhRYXrwAOw6Do/OIFy5lN2vEMv4biFXZBmpHZsFn7zTMMs6OA==}
dependencies:
hast-util-is-element: 1.1.0
dev: false
- /hast-util-is-element/1.1.0:
+ /hast-util-is-element@1.1.0:
resolution: {integrity: sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==}
dev: false
- /hast-util-to-estree/2.0.2:
- resolution: {integrity: sha512-UQrZVeBj6A9od0lpFvqHKNSH9zvDrNoyWKbveu1a2oSCXEDUI+3bnd6BoiQLPnLrcXXn/jzJ6y9hmJTTlvf8lQ==}
+ /hast-util-to-estree@2.3.3:
+ resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==}
dependencies:
- '@types/estree-jsx': 0.0.1
+ '@types/estree': 1.0.1
+ '@types/estree-jsx': 1.0.0
'@types/hast': 2.3.4
'@types/unist': 2.0.6
- comma-separated-tokens: 2.0.2
- estree-util-attach-comments: 2.0.0
- estree-util-is-identifier-name: 2.0.0
- hast-util-whitespace: 2.0.0
- mdast-util-mdx-expression: 1.2.0
- mdast-util-mdxjs-esm: 1.2.0
- property-information: 6.1.1
- space-separated-tokens: 2.0.1
- style-to-object: 0.3.0
- unist-util-position: 4.0.1
- zwitch: 2.0.2
+ comma-separated-tokens: 2.0.3
+ estree-util-attach-comments: 2.1.1
+ estree-util-is-identifier-name: 2.1.0
+ hast-util-whitespace: 2.0.1
+ mdast-util-mdx-expression: 1.3.2
+ mdast-util-mdxjs-esm: 1.3.1
+ property-information: 6.2.0
+ space-separated-tokens: 2.0.2
+ style-to-object: 0.4.1
+ unist-util-position: 4.0.4
+ zwitch: 2.0.4
transitivePeerDependencies:
- supports-color
dev: false
- /hast-util-to-html/7.1.3:
+ /hast-util-to-html@7.1.3:
resolution: {integrity: sha512-yk2+1p3EJTEE9ZEUkgHsUSVhIpCsL/bvT8E5GzmWc+N1Po5gBw+0F8bo7dpxXR0nu0bQVxVZGX2lBGF21CmeDw==}
dependencies:
ccount: 1.1.0
@@ -11351,139 +10119,119 @@ packages:
xtend: 4.0.2
dev: false
- /hast-util-to-string/1.0.4:
+ /hast-util-to-string@1.0.4:
resolution: {integrity: sha512-eK0MxRX47AV2eZ+Lyr18DCpQgodvaS3fAQO2+b9Two9F5HEoRPhiUMNzoXArMJfZi2yieFzUBMRl3HNJ3Jus3w==}
dev: false
- /hast-util-whitespace/1.0.4:
+ /hast-util-whitespace@1.0.4:
resolution: {integrity: sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A==}
dev: false
- /hast-util-whitespace/2.0.0:
- resolution: {integrity: sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==}
+ /hast-util-whitespace@2.0.1:
+ resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==}
dev: false
- /he/1.2.0:
+ /he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
- /headers-polyfill/3.0.7:
- resolution: {integrity: sha512-JoLCAdCEab58+2/yEmSnOlficyHFpIl0XJqwu3l+Unkm1gXpFUYsThz6Yha3D6tNhocWkCPfyW0YVIGWFqTi7w==}
+ /headers-polyfill@3.1.2:
+ resolution: {integrity: sha512-tWCK4biJ6hcLqTviLXVR9DTRfYGQMXEIUj3gwJ2rZ5wO/at3XtkI4g8mCvFdUF9l1KMBNCfmNAdnahm1cgavQA==}
- /highlight-words-core/1.2.2:
+ /highlight-words-core@1.2.2:
resolution: {integrity: sha512-BXUKIkUuh6cmmxzi5OIbUJxrG8OAk2MqoL1DtO3Wo9D2faJg2ph5ntyuQeLqaHJmzER6H5tllCDA9ZnNe9BVGg==}
dev: false
- /history/5.3.0:
+ /history@5.3.0:
resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.9
dev: false
- /hoopy/0.1.4:
+ /hoopy@0.1.4:
resolution: {integrity: sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==}
engines: {node: '>= 6.0.0'}
dev: false
- /hosted-git-info/2.8.9:
+ /hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
dev: true
- /hpack.js/2.1.6:
+ /hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
dependencies:
inherits: 2.0.4
obuf: 1.1.2
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
wbuf: 1.7.3
dev: false
- /html-encoding-sniffer/2.0.1:
+ /html-encoding-sniffer@2.0.1:
resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==}
engines: {node: '>=10'}
dependencies:
whatwg-encoding: 1.0.5
dev: false
- /html-encoding-sniffer/3.0.0:
+ /html-encoding-sniffer@3.0.0:
resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
engines: {node: '>=12'}
dependencies:
whatwg-encoding: 2.0.0
dev: true
- /html-entities/2.3.2:
- resolution: {integrity: sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==}
- dev: false
-
- /html-entities/2.3.3:
+ /html-entities@2.3.3:
resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
dev: false
- /html-escaper/2.0.2:
+ /html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
- /html-minifier-terser/6.0.2:
- resolution: {integrity: sha512-AgYO3UGhMYQx2S/FBJT3EM0ZYcKmH6m9XL9c1v77BeK/tYJxGPxT1/AtsdUi4FcP8kZGmqqnItCcjFPcX9hk6A==}
+ /html-minifier-terser@6.1.0:
+ resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
engines: {node: '>=12'}
hasBin: true
dependencies:
camel-case: 4.1.2
- clean-css: 5.2.1
+ clean-css: 5.3.2
commander: 8.3.0
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.10.0
- dev: false
+ terser: 5.17.6
- /html-void-elements/1.0.5:
+ /html-void-elements@1.0.5:
resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==}
dev: false
- /html-webpack-plugin/5.5.0_webpack@5.73.0:
+ /html-webpack-plugin@5.5.0(webpack@5.84.0):
resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
engines: {node: '>=10.13.0'}
peerDependencies:
webpack: ^5.20.0
dependencies:
- '@types/html-minifier-terser': 6.0.0
- html-minifier-terser: 6.0.2
+ '@types/html-minifier-terser': 6.1.0
+ html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.73.0
+ webpack: 5.84.0
dev: false
- /html-webpack-plugin/5.5.0_webpack@5.74.0:
- resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
+ /html-webpack-plugin@5.5.1(webpack@5.84.0):
+ resolution: {integrity: sha512-cTUzZ1+NqjGEKjmVgZKLMdiFg3m9MdRXkZW2OEe69WYVi5ONLMmlnSZdXzGGMOq0C8jGDrL6EWyEDDUioHO/pA==}
engines: {node: '>=10.13.0'}
peerDependencies:
webpack: ^5.20.0
dependencies:
- '@types/html-minifier-terser': 6.0.0
- html-minifier-terser: 6.0.2
+ '@types/html-minifier-terser': 6.1.0
+ html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.74.0_esbuild@0.14.53
- dev: false
-
- /html-webpack-tags-plugin/3.0.2_dseqt6curza6cwqlyc3eowsnru:
- resolution: {integrity: sha512-jZ4IHjT8AWyNa4RJ+8p0+AGkunLf1H5E/IjzW+9BOQbJ39Dy2jZULnxseXsEAiFxu6DX6z+sOZKV9rhbEDtpqA==}
- engines: {node: '>=10'}
- peerDependencies:
- html-webpack-plugin: ^5.0.0
- webpack: ^5.0.0
- dependencies:
- glob: 7.2.3
- html-webpack-plugin: 5.5.0_webpack@5.74.0
- minimatch: 3.0.4
- slash: 3.0.0
- webpack: 5.74.0_esbuild@0.14.53
- dev: false
+ webpack: 5.84.0(esbuild@0.17.19)
- /html-webpack-tags-plugin/3.0.2_webpack@5.74.0:
+ /html-webpack-tags-plugin@3.0.2(html-webpack-plugin@5.5.1)(webpack@5.84.0):
resolution: {integrity: sha512-jZ4IHjT8AWyNa4RJ+8p0+AGkunLf1H5E/IjzW+9BOQbJ39Dy2jZULnxseXsEAiFxu6DX6z+sOZKV9rhbEDtpqA==}
engines: {node: '>=10'}
peerDependencies:
@@ -11491,34 +10239,33 @@ packages:
webpack: ^5.0.0
dependencies:
glob: 7.2.3
- minimatch: 3.0.4
+ html-webpack-plugin: 5.5.1(webpack@5.84.0)
+ minimatch: 3.1.2
slash: 3.0.0
- webpack: 5.74.0_esbuild@0.14.53
- dev: true
+ webpack: 5.84.0(esbuild@0.17.19)
- /htmlparser2/6.1.0:
+ /htmlparser2@6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
dependencies:
- domelementtype: 2.2.0
- domhandler: 4.3.0
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
domutils: 2.8.0
entities: 2.2.0
- dev: false
- /htmlparser2/8.0.1:
+ /htmlparser2@8.0.1:
resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==}
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
domutils: 3.0.1
- entities: 4.3.0
+ entities: 4.5.0
dev: false
- /http-deceiver/1.2.7:
+ /http-deceiver@1.2.7:
resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
dev: false
- /http-errors/1.6.3:
+ /http-errors@1.6.3:
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
engines: {node: '>= 0.6'}
dependencies:
@@ -11528,18 +10275,7 @@ packages:
statuses: 1.5.0
dev: false
- /http-errors/1.8.1:
- resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==}
- engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.4
- setprototypeof: 1.2.0
- statuses: 1.5.0
- toidentifier: 1.0.1
- dev: false
-
- /http-errors/2.0.0:
+ /http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
dependencies:
@@ -11550,11 +10286,11 @@ packages:
toidentifier: 1.0.1
dev: false
- /http-parser-js/0.5.8:
+ /http-parser-js@0.5.8:
resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
dev: false
- /http-proxy-agent/4.0.1:
+ /http-proxy-agent@4.0.1:
resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
engines: {node: '>= 6'}
dependencies:
@@ -11565,26 +10301,7 @@ packages:
- supports-color
dev: false
- /http-proxy-middleware/2.0.3_@types+express@4.17.13:
- resolution: {integrity: sha512-1bloEwnrHMnCoO/Gcwbz7eSVvW50KPES01PecpagI+YLNLci4AcuKJrujW4Mc3sBLpFxMSlsLNHS5Nl/lvrTPA==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- '@types/express': ^4.17.13
- peerDependenciesMeta:
- '@types/express':
- optional: true
- dependencies:
- '@types/express': 4.17.13
- '@types/http-proxy': 1.17.8
- http-proxy: 1.18.1
- is-glob: 4.0.3
- is-plain-obj: 3.0.0
- micromatch: 4.0.4
- transitivePeerDependencies:
- - debug
- dev: false
-
- /http-proxy-middleware/2.0.6_@types+express@4.17.13:
+ /http-proxy-middleware@2.0.6(@types/express@4.17.17):
resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -11593,8 +10310,8 @@ packages:
'@types/express':
optional: true
dependencies:
- '@types/express': 4.17.13
- '@types/http-proxy': 1.17.9
+ '@types/express': 4.17.17
+ '@types/http-proxy': 1.17.11
http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
@@ -11603,17 +10320,17 @@ packages:
- debug
dev: false
- /http-proxy/1.18.1:
+ /http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.14.4
+ follow-redirects: 1.15.2
requires-port: 1.0.0
transitivePeerDependencies:
- debug
- /http-server/14.1.1:
+ /http-server@14.1.1:
resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==}
engines: {node: '>=12'}
hasBin: true
@@ -11625,9 +10342,9 @@ packages:
html-encoding-sniffer: 3.0.0
http-proxy: 1.18.1
mime: 1.6.0
- minimist: 1.2.6
+ minimist: 1.2.8
opener: 1.5.2
- portfinder: 1.0.28
+ portfinder: 1.0.32
secure-compare: 3.0.1
union: 0.5.0
url-join: 4.0.1
@@ -11636,7 +10353,7 @@ packages:
- supports-color
dev: true
- /https-proxy-agent/5.0.1:
+ /https-proxy-agent@5.0.1:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
dependencies:
@@ -11646,71 +10363,67 @@ packages:
- supports-color
dev: false
- /human-id/1.0.2:
+ /human-id@1.0.2:
resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==}
dev: true
- /human-signals/2.1.0:
+ /human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- /iconv-lite/0.4.24:
+ /iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
- /iconv-lite/0.6.3:
+ /iconv-lite@0.6.3:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
- /icss-utils/5.1.0_postcss@8.4.16:
+ /icss-utils@5.1.0(postcss@8.4.23):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
- /idb/6.1.5:
- resolution: {integrity: sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==}
+ /idb@7.1.1:
+ resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==}
dev: false
- /idb/7.0.2:
- resolution: {integrity: sha512-jjKrT1EnyZewQ/gCBb/eyiYrhGzws2FeY92Yx8qT9S9GeQAmo4JFVIiWRIfKW/6Ob9A+UDAOW9j9jn58fy2HIg==}
- dev: false
-
- /identity-obj-proxy/3.0.0:
- resolution: {integrity: sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=}
+ /identity-obj-proxy@3.0.0:
+ resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==}
engines: {node: '>=4'}
dependencies:
harmony-reflect: 1.6.2
dev: false
- /ieee754/1.2.1:
+ /ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- /ignore/5.2.0:
- resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==}
+ /ignore@5.2.4:
+ resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
- /immer/9.0.14:
- resolution: {integrity: sha512-ubBeqQutOSLIFCUBN03jGeOS6a3DoYlSYwYJTa+gSKEZKU5redJIqkIdZ3JVv/4RZpfcXdAWH5zCNLWPRv2WDw==}
+ /immer@9.0.21:
+ resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
dev: false
- /immutable/4.1.0:
- resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==}
+ /immutable@4.3.0:
+ resolution: {integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==}
- /import-fresh/3.3.0:
+ /import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- /import-local/3.1.0:
+ /import-local@3.1.0:
resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
engines: {node: '>=8'}
hasBin: true
@@ -11718,41 +10431,41 @@ packages:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
- /imurmurhash/0.1.4:
+ /imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- /indent-string/4.0.0:
+ /indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
- /inflight/1.0.6:
+ /inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
- /inherits/2.0.3:
+ /inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
dev: false
- /inherits/2.0.4:
+ /inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- /ini/1.3.8:
+ /ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
dev: false
- /inline-style-parser/0.1.1:
+ /inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
dev: false
- /inquirer/8.2.4:
- resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==}
+ /inquirer@8.2.5:
+ resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==}
engines: {node: '>=12.0.0'}
dependencies:
ansi-escapes: 4.3.2
- chalk: 4.1.2
+ chalk: 4.1.1
cli-cursor: 3.1.0
cli-width: 3.0.0
external-editor: 3.1.0
@@ -11761,343 +10474,380 @@ packages:
mute-stream: 0.0.8
ora: 5.4.1
run-async: 2.4.1
- rxjs: 7.5.5
+ rxjs: 7.8.1
string-width: 4.2.3
strip-ansi: 6.0.1
through: 2.3.8
wrap-ansi: 7.0.0
- /internal-slot/1.0.3:
- resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==}
+ /internal-slot@1.0.5:
+ resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.2.1
has: 1.0.3
side-channel: 1.0.4
- /invariant/2.2.4:
+ /invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
dev: false
- /ipaddr.js/1.9.1:
+ /ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
dev: false
- /ipaddr.js/2.0.1:
+ /ipaddr.js@2.0.1:
resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==}
engines: {node: '>= 10'}
dev: false
- /is-alphabetical/1.0.4:
+ /is-alphabetical@1.0.4:
resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
dev: false
- /is-alphabetical/2.0.1:
+ /is-alphabetical@2.0.1:
resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
dev: false
- /is-alphanumerical/1.0.4:
+ /is-alphanumerical@1.0.4:
resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
dependencies:
is-alphabetical: 1.0.4
is-decimal: 1.0.4
dev: false
- /is-alphanumerical/2.0.1:
+ /is-alphanumerical@2.0.1:
resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
dependencies:
is-alphabetical: 2.0.1
is-decimal: 2.0.1
dev: false
- /is-arrayish/0.2.1:
+ /is-arguments@1.1.1:
+ resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ has-tostringtag: 1.0.0
+
+ /is-array-buffer@3.0.2:
+ resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.2.1
+ is-typed-array: 1.1.10
+
+ /is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- /is-bigint/1.0.4:
+ /is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
- has-bigints: 1.0.1
+ has-bigints: 1.0.2
- /is-binary-path/2.1.0:
+ /is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
binary-extensions: 2.2.0
- /is-boolean-object/1.1.2:
+ /is-boolean-object@1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- /is-buffer/2.0.5:
+ /is-buffer@2.0.5:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
dev: false
- /is-builtin-module/3.1.0:
- resolution: {integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==}
+ /is-builtin-module@3.2.1:
+ resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
engines: {node: '>=6'}
dependencies:
builtin-modules: 3.3.0
dev: true
- /is-callable/1.2.4:
- resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==}
+ /is-callable@1.2.7:
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- /is-ci/3.0.1:
+ /is-ci@3.0.1:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
dependencies:
- ci-info: 3.3.2
+ ci-info: 3.8.0
dev: true
- /is-core-module/2.8.1:
- resolution: {integrity: sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==}
- dependencies:
- has: 1.0.3
-
- /is-core-module/2.9.0:
- resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==}
+ /is-core-module@2.12.1:
+ resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==}
dependencies:
has: 1.0.3
- /is-date-object/1.0.5:
+ /is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- /is-decimal/1.0.4:
+ /is-decimal@1.0.4:
resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
dev: false
- /is-decimal/2.0.1:
+ /is-decimal@2.0.1:
resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
dev: false
- /is-docker/2.2.1:
+ /is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
hasBin: true
dev: false
- /is-extglob/2.1.1:
+ /is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- /is-fullwidth-code-point/3.0.0:
+ /is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- /is-generator-fn/2.1.0:
+ /is-generator-fn@2.1.0:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
- /is-glob/4.0.3:
+ /is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- /is-hexadecimal/1.0.4:
+ /is-hexadecimal@1.0.4:
resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
dev: false
- /is-hexadecimal/2.0.1:
+ /is-hexadecimal@2.0.1:
resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
dev: false
- /is-interactive/1.0.0:
+ /is-interactive@1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
- /is-module/1.0.0:
- resolution: {integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=}
+ /is-map@2.0.2:
+ resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
- /is-negative-zero/2.0.2:
+ /is-module@1.0.0:
+ resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
+
+ /is-negative-zero@2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
- /is-node-process/1.0.1:
- resolution: {integrity: sha512-5IcdXuf++TTNt3oGl9EBdkvndXA8gmc4bz/Y+mdEpWh3Mcn/+kOw6hI7LD5CocqJWMzeb0I0ClndRVNdEPuJXQ==}
+ /is-node-process@1.2.0:
+ resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==}
- /is-number-object/1.0.6:
- resolution: {integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==}
+ /is-number-object@1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- /is-number/7.0.0:
+ /is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- /is-obj/1.0.1:
- resolution: {integrity: sha1-PkcprB9f3gJc19g6iW2rn09n2w8=}
+ /is-obj@1.0.1:
+ resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
engines: {node: '>=0.10.0'}
dev: false
- /is-obj/3.0.0:
+ /is-obj@3.0.0:
resolution: {integrity: sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==}
engines: {node: '>=12'}
dev: false
- /is-path-inside/3.0.3:
+ /is-path-inside@3.0.3:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
- /is-plain-obj/1.1.0:
+ /is-plain-obj@1.1.0:
resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
engines: {node: '>=0.10.0'}
dev: true
- /is-plain-obj/2.1.0:
+ /is-plain-obj@2.1.0:
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
engines: {node: '>=8'}
dev: false
- /is-plain-obj/3.0.0:
+ /is-plain-obj@3.0.0:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
engines: {node: '>=10'}
dev: false
- /is-plain-obj/4.0.0:
- resolution: {integrity: sha512-NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw==}
+ /is-plain-obj@4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
dev: false
- /is-plain-object/2.0.4:
+ /is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
dev: false
- /is-potential-custom-element-name/1.0.1:
+ /is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
dev: false
- /is-reference/1.2.1:
+ /is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
dependencies:
- '@types/estree': 1.0.0
+ '@types/estree': 1.0.1
dev: true
- /is-reference/3.0.0:
- resolution: {integrity: sha512-Eo1W3wUoHWoCoVM4GVl/a+K0IgiqE5aIo4kJABFyMum1ZORlPkC+UC357sSQUL5w5QCE5kCC9upl75b7+7CY/Q==}
+ /is-reference@3.0.1:
+ resolution: {integrity: sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==}
dependencies:
- '@types/estree': 1.0.0
+ '@types/estree': 1.0.1
dev: false
- /is-regex/1.1.4:
+ /is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- /is-regexp/1.0.0:
- resolution: {integrity: sha1-/S2INUXEa6xaYz57mgnof6LLUGk=}
+ /is-regexp@1.0.0:
+ resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
engines: {node: '>=0.10.0'}
dev: false
- /is-regexp/3.1.0:
+ /is-regexp@3.1.0:
resolution: {integrity: sha512-rbku49cWloU5bSMI+zaRaXdQHXnthP6DZ/vLnfdSKyL4zUzuWnomtOEiZZOd+ioQ+avFo/qau3KPTc7Fjy1uPA==}
engines: {node: '>=12'}
dev: false
- /is-root/2.1.0:
+ /is-root@2.1.0:
resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==}
engines: {node: '>=6'}
dev: false
- /is-shared-array-buffer/1.0.2:
+ /is-set@2.0.2:
+ resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
+
+ /is-shared-array-buffer@1.0.2:
resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
dependencies:
call-bind: 1.0.2
- /is-stream/2.0.1:
+ /is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- /is-string/1.0.7:
+ /is-string@1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- /is-subdir/1.2.0:
+ /is-subdir@1.2.0:
resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
engines: {node: '>=4'}
dependencies:
better-path-resolve: 1.0.0
dev: true
- /is-symbol/1.0.4:
+ /is-symbol@1.0.4:
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
dependencies:
- has-symbols: 1.0.2
+ has-symbols: 1.0.3
+
+ /is-typed-array@1.1.10:
+ resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.0
- /is-typedarray/1.0.0:
- resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=}
+ /is-typedarray@1.0.0:
+ resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
dev: false
- /is-unicode-supported/0.1.0:
+ /is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
- /is-weakref/1.0.2:
+ /is-weakmap@2.0.1:
+ resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
+
+ /is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
call-bind: 1.0.2
- /is-windows/1.0.2:
+ /is-weakset@2.0.2:
+ resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.2.1
+
+ /is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
dev: true
- /is-wsl/2.2.0:
+ /is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
dependencies:
is-docker: 2.2.1
dev: false
- /isarray/1.0.0:
+ /isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
dev: false
- /isexe/2.0.0:
- resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
+ /isarray@2.0.5:
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- /isobject/3.0.1:
- resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=}
+ /isexe@2.0.0:
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+
+ /isobject@3.0.1:
+ resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
dev: false
- /istanbul-lib-coverage/3.2.0:
+ /istanbul-lib-coverage@3.2.0:
resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==}
engines: {node: '>=8'}
- /istanbul-lib-instrument/5.2.0:
- resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==}
+ /istanbul-lib-instrument@5.2.1:
+ resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.18.10
- '@babel/parser': 7.17.10
+ '@babel/core': 7.21.8
+ '@babel/parser': 7.21.9
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /istanbul-lib-report/3.0.0:
+ /istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==}
engines: {node: '>=8'}
dependencies:
@@ -12105,7 +10855,7 @@ packages:
make-dir: 3.1.0
supports-color: 7.2.0
- /istanbul-lib-source-maps/4.0.1:
+ /istanbul-lib-source-maps@4.0.1:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
engines: {node: '>=10'}
dependencies:
@@ -12115,47 +10865,38 @@ packages:
transitivePeerDependencies:
- supports-color
- /istanbul-reports/3.1.4:
- resolution: {integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==}
- engines: {node: '>=8'}
- dependencies:
- html-escaper: 2.0.2
- istanbul-lib-report: 3.0.0
- dev: false
-
- /istanbul-reports/3.1.5:
+ /istanbul-reports@3.1.5:
resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==}
engines: {node: '>=8'}
dependencies:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.0
- dev: true
- /jake/10.8.5:
- resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
+ /jake@10.8.6:
+ resolution: {integrity: sha512-G43Ub9IYEFfu72sua6rzooi8V8Gz2lkfk48rW20vEWCGizeaEPlKB1Kh8JIA84yQbiAEfqlPmSpGgCKKxH3rDA==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- async: 3.2.3
+ async: 3.2.4
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
dev: false
- /javascript-stringify/2.1.0:
+ /javascript-stringify@2.1.0:
resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==}
dev: true
- /jest-changed-files/27.5.1:
+ /jest-changed-files@27.5.1:
resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
execa: 5.1.1
- throat: 6.0.1
+ throat: 6.0.2
dev: false
- /jest-changed-files/28.1.3:
+ /jest-changed-files@28.1.3:
resolution: {integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12163,7 +10904,7 @@ packages:
p-limit: 3.1.0
dev: true
- /jest-circus/27.5.1:
+ /jest-circus@27.5.1:
resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12184,13 +10925,13 @@ packages:
jest-util: 27.5.1
pretty-format: 27.5.1
slash: 3.0.0
- stack-utils: 2.0.5
- throat: 6.0.1
+ stack-utils: 2.0.6
+ throat: 6.0.2
transitivePeerDependencies:
- supports-color
dev: false
- /jest-circus/28.1.3:
+ /jest-circus@28.1.3:
resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12198,7 +10939,7 @@ packages:
'@jest/expect': 28.1.3
'@jest/test-result': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.6.4
+ '@types/node': 18.0.1
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -12212,12 +10953,12 @@ packages:
p-limit: 3.1.0
pretty-format: 28.1.3
slash: 3.0.0
- stack-utils: 2.0.5
+ stack-utils: 2.0.6
transitivePeerDependencies:
- supports-color
dev: true
- /jest-cli/27.5.1:
+ /jest-cli@27.5.1:
resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
hasBin: true
@@ -12232,7 +10973,7 @@ packages:
'@jest/types': 27.5.1
chalk: 4.1.2
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
import-local: 3.1.0
jest-config: 27.5.1
jest-util: 27.5.1
@@ -12247,7 +10988,7 @@ packages:
- utf-8-validate
dev: false
- /jest-cli/28.1.3:
+ /jest-cli@28.1.3:
resolution: {integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
hasBin: true
@@ -12262,20 +11003,20 @@ packages:
'@jest/types': 28.1.3
chalk: 4.1.2
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
import-local: 3.1.0
- jest-config: 28.1.3
+ jest-config: 28.1.3(@types/node@18.0.1)
jest-util: 28.1.3
jest-validate: 28.1.3
prompts: 2.4.2
- yargs: 17.5.1
+ yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
- supports-color
- ts-node
dev: true
- /jest-config/27.5.1:
+ /jest-config@27.5.1:
resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
@@ -12284,15 +11025,15 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.18.5
+ '@babel/core': 7.18.10
'@jest/test-sequencer': 27.5.1
'@jest/types': 27.5.1
- babel-jest: 27.5.1_@babel+core@7.18.5
+ babel-jest: 27.5.1(@babel/core@7.18.10)
chalk: 4.1.2
- ci-info: 3.3.1
- deepmerge: 4.2.2
+ ci-info: 3.8.0
+ deepmerge: 4.3.1
glob: 7.2.3
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-circus: 27.5.1
jest-environment-jsdom: 27.5.1
jest-environment-node: 27.5.1
@@ -12315,45 +11056,7 @@ packages:
- utf-8-validate
dev: false
- /jest-config/28.1.3:
- resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- peerDependencies:
- '@types/node': '*'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- ts-node:
- optional: true
- dependencies:
- '@babel/core': 7.18.10
- '@jest/test-sequencer': 28.1.3
- '@jest/types': 28.1.3
- babel-jest: 28.1.3_@babel+core@7.18.10
- chalk: 4.1.2
- ci-info: 3.3.2
- deepmerge: 4.2.2
- glob: 7.2.3
- graceful-fs: 4.2.10
- jest-circus: 28.1.3
- jest-environment-node: 28.1.3
- jest-get-type: 28.0.2
- jest-regex-util: 28.0.2
- jest-resolve: 28.1.3
- jest-runner: 28.1.3
- jest-util: 28.1.3
- jest-validate: 28.1.3
- micromatch: 4.0.5
- parse-json: 5.2.0
- pretty-format: 28.1.3
- slash: 3.0.0
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /jest-config/28.1.3_@types+node@18.6.4:
+ /jest-config@28.1.3(@types/node@18.0.1):
resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -12365,16 +11068,16 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.18.10
+ '@babel/core': 7.21.8
'@jest/test-sequencer': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.6.4
- babel-jest: 28.1.3_@babel+core@7.18.10
+ '@types/node': 18.0.1
+ babel-jest: 28.1.3(@babel/core@7.21.8)
chalk: 4.1.2
- ci-info: 3.3.2
- deepmerge: 4.2.2
+ ci-info: 3.8.0
+ deepmerge: 4.3.1
glob: 7.2.3
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-circus: 28.1.3
jest-environment-node: 28.1.3
jest-get-type: 28.0.2
@@ -12392,7 +11095,7 @@ packages:
- supports-color
dev: true
- /jest-diff/27.5.1:
+ /jest-diff@27.5.1:
resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12402,7 +11105,7 @@ packages:
pretty-format: 27.5.1
dev: false
- /jest-diff/28.1.3:
+ /jest-diff@28.1.3:
resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12411,21 +11114,21 @@ packages:
jest-get-type: 28.0.2
pretty-format: 28.1.3
- /jest-docblock/27.5.1:
+ /jest-docblock@27.5.1:
resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
detect-newline: 3.1.0
dev: false
- /jest-docblock/28.1.1:
+ /jest-docblock@28.1.1:
resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
detect-newline: 3.1.0
dev: true
- /jest-each/27.5.1:
+ /jest-each@27.5.1:
resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12436,7 +11139,7 @@ packages:
pretty-format: 27.5.1
dev: false
- /jest-each/28.1.3:
+ /jest-each@28.1.3:
resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12447,7 +11150,7 @@ packages:
pretty-format: 28.1.3
dev: true
- /jest-environment-jsdom/27.5.1:
+ /jest-environment-jsdom@27.5.1:
resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12465,7 +11168,7 @@ packages:
- utf-8-validate
dev: false
- /jest-environment-node/27.5.1:
+ /jest-environment-node@27.5.1:
resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12477,37 +11180,37 @@ packages:
jest-util: 27.5.1
dev: false
- /jest-environment-node/28.1.3:
+ /jest-environment-node@28.1.3:
resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/environment': 28.1.3
'@jest/fake-timers': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.6.4
+ '@types/node': 18.0.1
jest-mock: 28.1.3
jest-util: 28.1.3
dev: true
- /jest-get-type/27.5.1:
+ /jest-get-type@27.5.1:
resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dev: false
- /jest-get-type/28.0.2:
+ /jest-get-type@28.0.2:
resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- /jest-haste-map/27.5.1:
+ /jest-haste-map@27.5.1:
resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/graceful-fs': 4.1.5
+ '@types/graceful-fs': 4.1.6
'@types/node': 18.0.1
- anymatch: 3.1.2
- fb-watchman: 2.0.1
- graceful-fs: 4.2.10
+ anymatch: 3.1.3
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
jest-regex-util: 27.5.1
jest-serializer: 27.5.1
jest-util: 27.5.1
@@ -12518,16 +11221,16 @@ packages:
fsevents: 2.3.2
dev: false
- /jest-haste-map/28.1.3:
+ /jest-haste-map@28.1.3:
resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/types': 28.1.3
- '@types/graceful-fs': 4.1.5
- '@types/node': 18.6.4
- anymatch: 3.1.2
- fb-watchman: 2.0.1
- graceful-fs: 4.2.10
+ '@types/graceful-fs': 4.1.6
+ '@types/node': 18.0.1
+ anymatch: 3.1.3
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
jest-regex-util: 28.0.2
jest-util: 28.1.3
jest-worker: 28.1.3
@@ -12537,7 +11240,7 @@ packages:
fsevents: 2.3.2
dev: true
- /jest-jasmine2/27.5.1:
+ /jest-jasmine2@27.5.1:
resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12557,12 +11260,12 @@ packages:
jest-snapshot: 27.5.1
jest-util: 27.5.1
pretty-format: 27.5.1
- throat: 6.0.1
+ throat: 6.0.2
transitivePeerDependencies:
- supports-color
dev: false
- /jest-leak-detector/27.5.1:
+ /jest-leak-detector@27.5.1:
resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12570,7 +11273,7 @@ packages:
pretty-format: 27.5.1
dev: false
- /jest-leak-detector/28.1.3:
+ /jest-leak-detector@28.1.3:
resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12578,7 +11281,7 @@ packages:
pretty-format: 28.1.3
dev: true
- /jest-matcher-utils/27.5.1:
+ /jest-matcher-utils@27.5.1:
resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12588,7 +11291,7 @@ packages:
pretty-format: 27.5.1
dev: false
- /jest-matcher-utils/28.1.3:
+ /jest-matcher-utils@28.1.3:
resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12597,52 +11300,36 @@ packages:
jest-get-type: 28.0.2
pretty-format: 28.1.3
- /jest-message-util/27.5.1:
+ /jest-message-util@27.5.1:
resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.21.4
'@jest/types': 27.5.1
'@types/stack-utils': 2.0.1
chalk: 4.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
micromatch: 4.0.5
pretty-format: 27.5.1
slash: 3.0.0
- stack-utils: 2.0.5
- dev: false
-
- /jest-message-util/28.1.0:
- resolution: {integrity: sha512-RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@babel/code-frame': 7.16.7
- '@jest/types': 28.1.0
- '@types/stack-utils': 2.0.1
- chalk: 4.1.2
- graceful-fs: 4.2.10
- micromatch: 4.0.5
- pretty-format: 28.1.0
- slash: 3.0.0
- stack-utils: 2.0.5
+ stack-utils: 2.0.6
dev: false
- /jest-message-util/28.1.3:
+ /jest-message-util@28.1.3:
resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@babel/code-frame': 7.18.6
+ '@babel/code-frame': 7.21.4
'@jest/types': 28.1.3
'@types/stack-utils': 2.0.1
chalk: 4.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
micromatch: 4.0.5
pretty-format: 28.1.3
slash: 3.0.0
- stack-utils: 2.0.5
- dev: true
+ stack-utils: 2.0.6
- /jest-mock/27.5.1:
+ /jest-mock@27.5.1:
resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12650,16 +11337,16 @@ packages:
'@types/node': 18.0.1
dev: false
- /jest-mock/28.1.3:
+ /jest-mock@28.1.3:
resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/types': 28.1.3
- '@types/node': 18.6.4
+ '@types/node': 18.0.1
dev: true
- /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1:
- resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==}
+ /jest-pnp-resolver@1.2.3(jest-resolve@27.5.1):
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
jest-resolve: '*'
@@ -12670,8 +11357,8 @@ packages:
jest-resolve: 27.5.1
dev: false
- /jest-pnp-resolver/1.2.2_jest-resolve@28.1.3:
- resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==}
+ /jest-pnp-resolver@1.2.3(jest-resolve@28.1.3):
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
jest-resolve: '*'
@@ -12682,16 +11369,16 @@ packages:
jest-resolve: 28.1.3
dev: true
- /jest-regex-util/27.5.1:
+ /jest-regex-util@27.5.1:
resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dev: false
- /jest-regex-util/28.0.2:
+ /jest-regex-util@28.0.2:
resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- /jest-resolve-dependencies/27.5.1:
+ /jest-resolve-dependencies@27.5.1:
resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12702,7 +11389,7 @@ packages:
- supports-color
dev: false
- /jest-resolve-dependencies/28.1.3:
+ /jest-resolve-dependencies@28.1.3:
resolution: {integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12712,38 +11399,38 @@ packages:
- supports-color
dev: true
- /jest-resolve/27.5.1:
+ /jest-resolve@27.5.1:
resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
chalk: 4.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-haste-map: 27.5.1
- jest-pnp-resolver: 1.2.2_jest-resolve@27.5.1
+ jest-pnp-resolver: 1.2.3(jest-resolve@27.5.1)
jest-util: 27.5.1
jest-validate: 27.5.1
- resolve: 1.22.0
- resolve.exports: 1.1.0
+ resolve: 1.22.2
+ resolve.exports: 1.1.1
slash: 3.0.0
dev: false
- /jest-resolve/28.1.3:
+ /jest-resolve@28.1.3:
resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
chalk: 4.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-haste-map: 28.1.3
- jest-pnp-resolver: 1.2.2_jest-resolve@28.1.3
+ jest-pnp-resolver: 1.2.3(jest-resolve@28.1.3)
jest-util: 28.1.3
jest-validate: 28.1.3
- resolve: 1.22.1
- resolve.exports: 1.1.0
+ resolve: 1.22.2
+ resolve.exports: 1.1.1
slash: 3.0.0
dev: true
- /jest-runner/27.5.1:
+ /jest-runner@27.5.1:
resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12755,7 +11442,7 @@ packages:
'@types/node': 18.0.1
chalk: 4.1.2
emittery: 0.8.1
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-docblock: 27.5.1
jest-environment-jsdom: 27.5.1
jest-environment-node: 27.5.1
@@ -12767,7 +11454,7 @@ packages:
jest-util: 27.5.1
jest-worker: 27.5.1
source-map-support: 0.5.21
- throat: 6.0.1
+ throat: 6.0.2
transitivePeerDependencies:
- bufferutil
- canvas
@@ -12775,7 +11462,7 @@ packages:
- utf-8-validate
dev: false
- /jest-runner/28.1.3:
+ /jest-runner@28.1.3:
resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12784,10 +11471,10 @@ packages:
'@jest/test-result': 28.1.3
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.6.4
+ '@types/node': 18.0.1
chalk: 4.1.2
emittery: 0.10.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-docblock: 28.1.1
jest-environment-node: 28.1.3
jest-haste-map: 28.1.3
@@ -12804,7 +11491,7 @@ packages:
- supports-color
dev: true
- /jest-runtime/27.5.1:
+ /jest-runtime@27.5.1:
resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12820,7 +11507,7 @@ packages:
collect-v8-coverage: 1.0.1
execa: 5.1.1
glob: 7.2.3
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-haste-map: 27.5.1
jest-message-util: 27.5.1
jest-mock: 27.5.1
@@ -12834,7 +11521,7 @@ packages:
- supports-color
dev: false
- /jest-runtime/28.1.3:
+ /jest-runtime@28.1.3:
resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12850,7 +11537,7 @@ packages:
collect-v8-coverage: 1.0.1
execa: 5.1.1
glob: 7.2.3
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-haste-map: 28.1.3
jest-message-util: 28.1.3
jest-mock: 28.1.3
@@ -12864,31 +11551,31 @@ packages:
- supports-color
dev: true
- /jest-serializer/27.5.1:
+ /jest-serializer@27.5.1:
resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@types/node': 18.0.1
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
dev: false
- /jest-snapshot/27.5.1:
+ /jest-snapshot@27.5.1:
resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/core': 7.18.5
- '@babel/generator': 7.17.10
- '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.18.5
- '@babel/traverse': 7.17.10
- '@babel/types': 7.17.10
+ '@babel/core': 7.18.10
+ '@babel/generator': 7.21.9
+ '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.18.10)
+ '@babel/traverse': 7.21.5
+ '@babel/types': 7.21.5
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/babel__traverse': 7.17.1
- '@types/prettier': 2.6.1
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.5
+ '@types/babel__traverse': 7.18.5
+ '@types/prettier': 2.7.2
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.18.10)
chalk: 4.1.2
expect: 27.5.1
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-diff: 27.5.1
jest-get-type: 27.5.1
jest-haste-map: 27.5.1
@@ -12897,29 +11584,29 @@ packages:
jest-util: 27.5.1
natural-compare: 1.4.0
pretty-format: 27.5.1
- semver: 7.3.7
+ semver: 7.5.1
transitivePeerDependencies:
- supports-color
dev: false
- /jest-snapshot/28.1.3:
+ /jest-snapshot@28.1.3:
resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@babel/core': 7.18.10
- '@babel/generator': 7.18.12
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.10
- '@babel/traverse': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/core': 7.21.8
+ '@babel/generator': 7.21.9
+ '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.8)
+ '@babel/traverse': 7.21.5
+ '@babel/types': 7.21.5
'@jest/expect-utils': 28.1.3
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
- '@types/babel__traverse': 7.18.0
- '@types/prettier': 2.7.0
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10
+ '@types/babel__traverse': 7.18.5
+ '@types/prettier': 2.7.2
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.8)
chalk: 4.1.2
expect: 28.1.3
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-diff: 28.1.3
jest-get-type: 28.0.2
jest-haste-map: 28.1.3
@@ -12928,48 +11615,46 @@ packages:
jest-util: 28.1.3
natural-compare: 1.4.0
pretty-format: 28.1.3
- semver: 7.3.7
+ semver: 7.5.1
transitivePeerDependencies:
- supports-color
dev: true
- /jest-util/27.5.1:
+ /jest-util@27.5.1:
resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
'@types/node': 18.0.1
chalk: 4.1.2
- ci-info: 3.3.1
- graceful-fs: 4.2.10
+ ci-info: 3.8.0
+ graceful-fs: 4.2.11
picomatch: 2.3.1
dev: false
- /jest-util/28.1.0:
- resolution: {integrity: sha512-qYdCKD77k4Hwkose2YBEqQk7PzUf/NSE+rutzceduFveQREeH6b+89Dc9+wjX9dAwHcgdx4yedGA3FQlU/qCTA==}
+ /jest-util@28.1.3:
+ resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@jest/types': 28.1.0
- '@types/node': 18.0.0
+ '@jest/types': 28.1.3
+ '@types/node': 18.0.1
chalk: 4.1.2
- ci-info: 3.3.1
- graceful-fs: 4.2.10
+ ci-info: 3.8.0
+ graceful-fs: 4.2.11
picomatch: 2.3.1
- dev: false
- /jest-util/28.1.3:
- resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-util@29.5.0:
+ resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 28.1.3
- '@types/node': 18.6.4
+ '@jest/types': 29.5.0
+ '@types/node': 20.2.3
chalk: 4.1.2
- ci-info: 3.3.2
- graceful-fs: 4.2.10
+ ci-info: 3.8.0
+ graceful-fs: 4.2.11
picomatch: 2.3.1
- dev: true
- /jest-validate/27.5.1:
+ /jest-validate@27.5.1:
resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -12981,7 +11666,7 @@ packages:
pretty-format: 27.5.1
dev: false
- /jest-validate/28.1.3:
+ /jest-validate@28.1.3:
resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12993,7 +11678,7 @@ packages:
pretty-format: 28.1.3
dev: true
- /jest-watch-typeahead/1.1.0_jest@27.5.1:
+ /jest-watch-typeahead@1.1.0(jest@27.5.1):
resolution: {integrity: sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -13003,13 +11688,13 @@ packages:
chalk: 4.1.2
jest: 27.5.1
jest-regex-util: 28.0.2
- jest-watcher: 28.1.0
+ jest-watcher: 28.1.3
slash: 4.0.0
string-length: 5.0.1
strip-ansi: 7.0.1
dev: false
- /jest-watcher/27.5.1:
+ /jest-watcher@27.5.1:
resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -13022,70 +11707,54 @@ packages:
string-length: 4.0.2
dev: false
- /jest-watcher/28.1.0:
- resolution: {integrity: sha512-tNHMtfLE8Njcr2IRS+5rXYA4BhU90gAOwI9frTGOqd+jX0P/Au/JfRSNqsf5nUTcWdbVYuLxS1KjnzILSoR5hA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@jest/test-result': 28.1.0
- '@jest/types': 28.1.0
- '@types/node': 18.0.1
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- emittery: 0.10.2
- jest-util: 28.1.0
- string-length: 4.0.2
- dev: false
-
- /jest-watcher/28.1.3:
+ /jest-watcher@28.1.3:
resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/test-result': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.6.4
+ '@types/node': 18.0.1
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.10.2
jest-util: 28.1.3
string-length: 4.0.2
- dev: true
- /jest-worker/26.6.2:
+ /jest-worker@26.6.2:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.0.1
+ '@types/node': 20.2.3
merge-stream: 2.0.0
supports-color: 7.2.0
dev: false
- /jest-worker/27.4.6:
- resolution: {integrity: sha512-gHWJF/6Xi5CTG5QCvROr6GcmpIqNYpDJyc8A1h/DyXqH1tD6SnRCM0d3U5msV31D2LB/U+E0M+W4oyvKV44oNw==}
+ /jest-worker@27.5.1:
+ resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/node': 18.0.1
merge-stream: 2.0.0
supports-color: 8.1.1
- dev: false
- /jest-worker/27.5.1:
- resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
- engines: {node: '>= 10.13.0'}
+ /jest-worker@28.1.3:
+ resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==}
+ engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@types/node': 18.0.0
+ '@types/node': 18.0.1
merge-stream: 2.0.0
supports-color: 8.1.1
- /jest-worker/28.1.3:
- resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-worker@29.5.0:
+ resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 18.6.4
+ '@types/node': 20.2.3
+ jest-util: 29.5.0
merge-stream: 2.0.0
supports-color: 8.1.1
- dev: true
- /jest/27.5.1:
+ /jest@27.5.1:
resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
hasBin: true
@@ -13106,7 +11775,7 @@ packages:
- utf-8-validate
dev: false
- /jest/28.1.3:
+ /jest@28.1.3:
resolution: {integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
hasBin: true
@@ -13126,39 +11795,35 @@ packages:
- ts-node
dev: true
- /joycon/3.0.1:
- resolution: {integrity: sha512-SJcJNBg32dGgxhPtM0wQqxqV0ax9k/9TaUskGDSJkSFSQOEWWvQ3zzWdGQRIUry2j1zA5+ReH13t0Mf3StuVZA==}
- engines: {node: '>=10'}
- dev: false
+ /jiti@1.18.2:
+ resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==}
+ hasBin: true
- /joycon/3.1.1:
+ /joycon@3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
- /js-levenshtein/1.1.6:
+ /js-levenshtein@1.1.6:
resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==}
engines: {node: '>=0.10.0'}
- /js-sha3/0.8.0:
- resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==}
-
- /js-tokens/4.0.0:
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- /js-yaml/3.14.1:
+ /js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- /js-yaml/4.1.0:
+ /js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
dependencies:
argparse: 2.0.1
- /jsdom/16.7.0:
+ /jsdom@16.7.0:
resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==}
engines: {node: '>=10'}
peerDependencies:
@@ -13168,12 +11833,12 @@ packages:
optional: true
dependencies:
abab: 2.0.6
- acorn: 8.8.0
+ acorn: 8.8.2
acorn-globals: 6.0.0
cssom: 0.4.4
cssstyle: 2.3.0
data-urls: 2.0.0
- decimal.js: 10.3.1
+ decimal.js: 10.4.3
domexception: 2.0.1
escodegen: 2.0.0
form-data: 3.0.1
@@ -13181,18 +11846,18 @@ packages:
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.0
+ nwsapi: 2.2.4
parse5: 6.0.1
saxes: 5.0.1
symbol-tree: 3.2.4
- tough-cookie: 4.0.0
+ tough-cookie: 4.1.2
w3c-hr-time: 1.0.2
w3c-xmlserializer: 2.0.0
webidl-conversions: 6.1.0
whatwg-encoding: 1.0.5
whatwg-mimetype: 2.3.0
whatwg-url: 8.7.0
- ws: 7.5.7
+ ws: 7.5.9
xml-name-validator: 3.0.0
transitivePeerDependencies:
- bufferutil
@@ -13200,119 +11865,111 @@ packages:
- utf-8-validate
dev: false
- /jsesc/0.5.0:
+ /jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- /jsesc/2.5.2:
+ /jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
- /json-parse-even-better-errors/2.3.1:
+ /json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- /json-schema-traverse/0.4.1:
+ /json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- /json-schema-traverse/1.0.0:
+ /json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- /json-schema/0.4.0:
+ /json-schema@0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
dev: false
- /json-stable-stringify-without-jsonify/1.0.1:
+ /json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- /json5/1.0.1:
- resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
+ /json5@1.0.2:
+ resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
dependencies:
- minimist: 1.2.6
+ minimist: 1.2.8
dev: false
- /json5/2.2.0:
- resolution: {integrity: sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==}
+ /json5@2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
- dependencies:
- minimist: 1.2.5
- /json5/2.2.1:
- resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
- engines: {node: '>=6'}
- hasBin: true
+ /jsonc-parser@3.2.0:
+ resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
+ dev: true
- /jsonfile/4.0.0:
+ /jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
dev: true
- /jsonfile/6.1.0:
+ /jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
universalify: 2.0.0
optionalDependencies:
- graceful-fs: 4.2.10
- dev: false
-
- /jsonpointer/5.0.0:
- resolution: {integrity: sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==}
- engines: {node: '>=0.10.0'}
- dev: false
+ graceful-fs: 4.2.11
- /jsonpointer/5.0.1:
+ /jsonpointer@5.0.1:
resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
engines: {node: '>=0.10.0'}
dev: false
- /jsx-ast-utils/3.3.0:
- resolution: {integrity: sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==}
+ /jsx-ast-utils@3.3.3:
+ resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
engines: {node: '>=4.0'}
dependencies:
- array-includes: 3.1.5
- object.assign: 4.1.2
+ array-includes: 3.1.6
+ object.assign: 4.1.4
dev: false
- /kind-of/6.0.3:
+ /kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- /kleur/3.0.3:
+ /kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- /kleur/4.1.4:
- resolution: {integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==}
- engines: {node: '>=6'}
- dev: false
-
- /kleur/4.1.5:
+ /kleur@4.1.5:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
- dev: true
- /klona/2.0.5:
- resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==}
+ /klona@2.0.6:
+ resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- /language-subtag-registry/0.3.21:
- resolution: {integrity: sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==}
+ /language-subtag-registry@0.3.22:
+ resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
dev: false
- /language-tags/1.0.5:
- resolution: {integrity: sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=}
+ /language-tags@1.0.5:
+ resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
dependencies:
- language-subtag-registry: 0.3.21
+ language-subtag-registry: 0.3.22
dev: false
- /leven/3.1.0:
+ /launch-editor@2.6.0:
+ resolution: {integrity: sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==}
+ dependencies:
+ picocolors: 1.0.0
+ shell-quote: 1.8.1
+ dev: false
+
+ /leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
- /levn/0.3.0:
+ /levn@0.3.0:
resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -13320,83 +11977,52 @@ packages:
type-check: 0.3.2
dev: false
- /levn/0.4.1:
+ /levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
type-check: 0.4.0
- /lilconfig/2.0.4:
- resolution: {integrity: sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==}
- engines: {node: '>=10'}
- dev: false
-
- /lilconfig/2.0.5:
- resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==}
- engines: {node: '>=10'}
-
- /lilconfig/2.0.6:
- resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==}
+ /lilconfig@2.1.0:
+ resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- /lines-and-columns/1.2.4:
+ /lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- /load-tsconfig/0.2.3:
- resolution: {integrity: sha512-iyT2MXws+dc2Wi6o3grCFtGXpeMvHmJqS27sMPGtV2eUu4PeFnG+33I8BlFK1t1NWMjOpcx9bridn5yxLDX2gQ==}
+ /load-tsconfig@0.2.5:
+ resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- /load-yaml-file/0.2.0:
+ /load-yaml-file@0.2.0:
resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==}
engines: {node: '>=6'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
js-yaml: 3.14.1
pify: 4.0.1
strip-bom: 3.0.0
dev: true
- /loader-runner/4.2.0:
- resolution: {integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==}
- engines: {node: '>=6.11.5'}
- dev: false
-
- /loader-runner/4.3.0:
+ /loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
- /loader-utils/2.0.0:
- resolution: {integrity: sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==}
- engines: {node: '>=8.9.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.0
- dev: false
-
- /loader-utils/2.0.2:
- resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==}
+ /loader-utils@2.0.4:
+ resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
- json5: 2.2.0
-
- /loader-utils/3.2.0:
- resolution: {integrity: sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==}
- engines: {node: '>= 12.13.0'}
- dev: false
+ json5: 2.2.3
- /locate-path/2.0.0:
- resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
- engines: {node: '>=4'}
- dependencies:
- p-locate: 2.0.0
- path-exists: 3.0.0
+ /loader-utils@3.2.1:
+ resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==}
+ engines: {node: '>= 12.13.0'}
dev: false
- /locate-path/3.0.0:
+ /locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
dependencies:
@@ -13404,144 +12030,157 @@ packages:
path-exists: 3.0.0
dev: false
- /locate-path/5.0.0:
+ /locate-path@5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
dependencies:
p-locate: 4.1.0
- /locate-path/6.0.0:
+ /locate-path@6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
dependencies:
p-locate: 5.0.0
- /lodash.debounce/4.0.8:
+ /lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- /lodash.iteratee/4.7.0:
- resolution: {integrity: sha1-vkF32yiajMw8CZDx2ya1si/BVUw=}
+ /lodash.iteratee@4.7.0:
+ resolution: {integrity: sha512-yv3cSQZmfpbIKo4Yo45B1taEvxjNvcpF1CEOc0Y6dEyvhPIfEJE3twDwPgWTPQubcSgXyBwBKG6wpQvWMDOf6Q==}
dev: false
- /lodash.memoize/4.1.2:
+ /lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
- /lodash.merge/4.6.2:
+ /lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- /lodash.sortby/4.7.0:
+ /lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
- /lodash.startcase/4.4.0:
+ /lodash.startcase@4.4.0:
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
dev: true
- /lodash.uniq/4.5.0:
+ /lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- /lodash/4.17.21:
+ /lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- /log-symbols/4.1.0:
+ /log-symbols@4.1.0:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
dependencies:
chalk: 4.1.2
is-unicode-supported: 0.1.0
- /longest-streak/2.0.4:
+ /longest-streak@2.0.4:
resolution: {integrity: sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==}
dev: false
- /longest-streak/3.0.1:
- resolution: {integrity: sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==}
+ /longest-streak@3.1.0:
+ resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
dev: false
- /loose-envify/1.4.0:
+ /loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
dependencies:
js-tokens: 4.0.0
- /lower-case/2.0.2:
+ /lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
tslib: 2.4.0
- dev: false
- /lru-cache/4.1.5:
+ /lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
dependencies:
pseudomap: 1.0.2
yallist: 2.1.2
dev: true
- /lru-cache/6.0.0:
+ /lru-cache@5.1.1:
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+ dependencies:
+ yallist: 3.1.1
+
+ /lru-cache@6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
- /lz-string/1.4.4:
- resolution: {integrity: sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=}
+ /lz-string@1.5.0:
+ resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
- /magic-string/0.25.9:
+ /magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
dependencies:
sourcemap-codec: 1.4.8
+ dev: false
+
+ /magic-string@0.27.0:
+ resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==}
+ engines: {node: '>=12'}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.4.15
+ dev: true
- /make-dir/3.1.0:
+ /make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
dependencies:
semver: 6.3.0
- /make-error/1.3.6:
+ /make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
dev: true
- /makeerror/1.0.12:
+ /makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
dependencies:
tmpl: 1.0.5
- /map-obj/1.0.1:
+ /map-obj@1.0.1:
resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
engines: {node: '>=0.10.0'}
dev: true
- /map-obj/4.3.0:
+ /map-obj@4.3.0:
resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
engines: {node: '>=8'}
dev: true
- /markdown-extensions/1.1.1:
+ /markdown-extensions@1.1.1:
resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==}
engines: {node: '>=0.10.0'}
dev: false
- /markdown-table/2.0.0:
+ /markdown-table@2.0.0:
resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==}
dependencies:
repeat-string: 1.6.1
dev: false
- /match-sorter/6.3.1:
+ /match-sorter@6.3.1:
resolution: {integrity: sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==}
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.21.5
remove-accents: 0.4.2
+ dev: false
- /mdast-util-definitions/5.1.0:
- resolution: {integrity: sha512-5hcR7FL2EuZ4q6lLMUK5w4lHT2H3vqL9quPvYZ/Ku5iifrirfMHiGdhxdXMUbUkDmz5I+TYMd7nbaxUhbQkfpQ==}
+ /mdast-util-definitions@5.1.2:
+ resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
dependencies:
'@types/mdast': 3.0.10
'@types/unist': 2.0.6
- unist-util-visit: 3.1.0
+ unist-util-visit: 4.1.2
dev: false
- /mdast-util-find-and-replace/1.1.1:
+ /mdast-util-find-and-replace@1.1.1:
resolution: {integrity: sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==}
dependencies:
escape-string-regexp: 4.0.0
@@ -13549,7 +12188,7 @@ packages:
unist-util-visit-parents: 3.1.1
dev: false
- /mdast-util-from-markdown/0.8.5:
+ /mdast-util-from-markdown@0.8.5:
resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
dependencies:
'@types/mdast': 3.0.10
@@ -13561,32 +12200,32 @@ packages:
- supports-color
dev: false
- /mdast-util-from-markdown/1.2.0:
- resolution: {integrity: sha512-iZJyyvKD1+K7QX1b5jXdE7Sc5dtoTry1vzV28UZZe8Z1xVnB/czKntJ7ZAkG0tANqRnBF6p3p7GpU1y19DTf2Q==}
+ /mdast-util-from-markdown@1.3.0:
+ resolution: {integrity: sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==}
dependencies:
'@types/mdast': 3.0.10
'@types/unist': 2.0.6
- decode-named-character-reference: 1.0.1
- mdast-util-to-string: 3.1.0
- micromark: 3.0.10
+ decode-named-character-reference: 1.0.2
+ mdast-util-to-string: 3.2.0
+ micromark: 3.1.0
micromark-util-decode-numeric-character-reference: 1.0.0
micromark-util-decode-string: 1.0.2
micromark-util-normalize-identifier: 1.0.0
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- unist-util-stringify-position: 3.0.2
- uvu: 0.5.3
+ unist-util-stringify-position: 3.0.3
+ uvu: 0.5.6
transitivePeerDependencies:
- supports-color
dev: false
- /mdast-util-frontmatter/0.2.0:
+ /mdast-util-frontmatter@0.2.0:
resolution: {integrity: sha512-FHKL4w4S5fdt1KjJCwB0178WJ0evnyyQr5kXTM3wrOVpytD0hrkvd+AOOjU9Td8onOejCkmZ+HQRT3CZ3coHHQ==}
dependencies:
micromark-extension-frontmatter: 0.2.2
dev: false
- /mdast-util-gfm-autolink-literal/0.1.3:
+ /mdast-util-gfm-autolink-literal@0.1.3:
resolution: {integrity: sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==}
dependencies:
ccount: 1.1.0
@@ -13596,26 +12235,26 @@ packages:
- supports-color
dev: false
- /mdast-util-gfm-strikethrough/0.2.3:
+ /mdast-util-gfm-strikethrough@0.2.3:
resolution: {integrity: sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==}
dependencies:
mdast-util-to-markdown: 0.6.5
dev: false
- /mdast-util-gfm-table/0.1.6:
+ /mdast-util-gfm-table@0.1.6:
resolution: {integrity: sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==}
dependencies:
markdown-table: 2.0.0
mdast-util-to-markdown: 0.6.5
dev: false
- /mdast-util-gfm-task-list-item/0.1.6:
+ /mdast-util-gfm-task-list-item@0.1.6:
resolution: {integrity: sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==}
dependencies:
mdast-util-to-markdown: 0.6.5
dev: false
- /mdast-util-gfm/0.1.2:
+ /mdast-util-gfm@0.1.2:
resolution: {integrity: sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==}
dependencies:
mdast-util-gfm-autolink-literal: 0.1.3
@@ -13627,71 +12266,82 @@ packages:
- supports-color
dev: false
- /mdast-util-mdx-expression/1.2.0:
- resolution: {integrity: sha512-wb36oi09XxqO9RVqgfD+xo8a7xaNgS+01+k3v0GKW0X0bYbeBmUZz22Z/IJ8SuphVlG+DNgNo9VoEaUJ3PKfJQ==}
+ /mdast-util-mdx-expression@1.3.2:
+ resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
dependencies:
- '@types/estree-jsx': 0.0.1
+ '@types/estree-jsx': 1.0.0
'@types/hast': 2.3.4
'@types/mdast': 3.0.10
- mdast-util-from-markdown: 1.2.0
- mdast-util-to-markdown: 1.3.0
+ mdast-util-from-markdown: 1.3.0
+ mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
- supports-color
dev: false
- /mdast-util-mdx-jsx/2.0.1:
- resolution: {integrity: sha512-oPC7/smPBf7vxnvIYH5y3fPo2lw1rdrswFfSb4i0GTAXRUQv7JUU/t/hbp07dgGdUFTSDOHm5DNamhNg/s2Hrg==}
+ /mdast-util-mdx-jsx@2.1.4:
+ resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==}
dependencies:
- '@types/estree-jsx': 0.0.1
+ '@types/estree-jsx': 1.0.0
'@types/hast': 2.3.4
'@types/mdast': 3.0.10
+ '@types/unist': 2.0.6
ccount: 2.0.1
- mdast-util-to-markdown: 1.3.0
- parse-entities: 4.0.0
- stringify-entities: 4.0.2
- unist-util-remove-position: 4.0.1
- unist-util-stringify-position: 3.0.2
- vfile-message: 3.1.2
+ mdast-util-from-markdown: 1.3.0
+ mdast-util-to-markdown: 1.5.0
+ parse-entities: 4.0.1
+ stringify-entities: 4.0.3
+ unist-util-remove-position: 4.0.2
+ unist-util-stringify-position: 3.0.3
+ vfile-message: 3.1.4
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /mdast-util-mdx/2.0.0:
- resolution: {integrity: sha512-M09lW0CcBT1VrJUaF/PYxemxxHa7SLDHdSn94Q9FhxjCQfuW7nMAWKWimTmA3OyDMSTH981NN1csW1X+HPSluw==}
+ /mdast-util-mdx@2.0.1:
+ resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==}
dependencies:
- mdast-util-mdx-expression: 1.2.0
- mdast-util-mdx-jsx: 2.0.1
- mdast-util-mdxjs-esm: 1.2.0
+ mdast-util-from-markdown: 1.3.0
+ mdast-util-mdx-expression: 1.3.2
+ mdast-util-mdx-jsx: 2.1.4
+ mdast-util-mdxjs-esm: 1.3.1
+ mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
- supports-color
dev: false
- /mdast-util-mdxjs-esm/1.2.0:
- resolution: {integrity: sha512-IPpX9GBzAIbIRCjbyeLDpMhACFb0wxTIujuR3YElB8LWbducUdMgRJuqs/Vg8xQ1bIAMm7lw8L+YNtua0xKXRw==}
+ /mdast-util-mdxjs-esm@1.3.1:
+ resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==}
dependencies:
- '@types/estree-jsx': 0.0.1
+ '@types/estree-jsx': 1.0.0
'@types/hast': 2.3.4
'@types/mdast': 3.0.10
- mdast-util-from-markdown: 1.2.0
- mdast-util-to-markdown: 1.3.0
+ mdast-util-from-markdown: 1.3.0
+ mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
- supports-color
dev: false
- /mdast-util-to-hast/12.1.1:
- resolution: {integrity: sha512-qE09zD6ylVP14jV4mjLIhDBOrpFdShHZcEsYvvKGABlr9mGbV7mTlRWdoFxL/EYSTNDiC9GZXy7y8Shgb9Dtzw==}
+ /mdast-util-phrasing@3.0.1:
+ resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
+ dependencies:
+ '@types/mdast': 3.0.10
+ unist-util-is: 5.2.1
+ dev: false
+
+ /mdast-util-to-hast@12.3.0:
+ resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
dependencies:
'@types/hast': 2.3.4
'@types/mdast': 3.0.10
- '@types/mdurl': 1.0.2
- mdast-util-definitions: 5.1.0
- mdurl: 1.0.1
- micromark-util-sanitize-uri: 1.0.0
- unist-builder: 3.0.0
- unist-util-generated: 2.0.0
- unist-util-position: 4.0.1
- unist-util-visit: 4.1.0
+ mdast-util-definitions: 5.1.2
+ micromark-util-sanitize-uri: 1.1.0
+ trim-lines: 3.0.1
+ unist-util-generated: 2.0.1
+ unist-util-position: 4.0.4
+ unist-util-visit: 4.1.2
dev: false
- /mdast-util-to-markdown/0.6.5:
+ /mdast-util-to-markdown@0.6.5:
resolution: {integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==}
dependencies:
'@types/unist': 2.0.6
@@ -13702,73 +12352,72 @@ packages:
zwitch: 1.0.5
dev: false
- /mdast-util-to-markdown/1.3.0:
- resolution: {integrity: sha512-6tUSs4r+KK4JGTTiQ7FfHmVOaDrLQJPmpjD6wPMlHGUVXoG9Vjc3jIeP+uyBWRf8clwB2blM+W7+KrlMYQnftA==}
+ /mdast-util-to-markdown@1.5.0:
+ resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
dependencies:
'@types/mdast': 3.0.10
'@types/unist': 2.0.6
- longest-streak: 3.0.1
- mdast-util-to-string: 3.1.0
+ longest-streak: 3.1.0
+ mdast-util-phrasing: 3.0.1
+ mdast-util-to-string: 3.2.0
micromark-util-decode-string: 1.0.2
- unist-util-visit: 4.1.0
- zwitch: 2.0.2
+ unist-util-visit: 4.1.2
+ zwitch: 2.0.4
dev: false
- /mdast-util-to-string/2.0.0:
+ /mdast-util-to-string@2.0.0:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
dev: false
- /mdast-util-to-string/3.1.0:
- resolution: {integrity: sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==}
+ /mdast-util-to-string@3.2.0:
+ resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
+ dependencies:
+ '@types/mdast': 3.0.10
dev: false
- /mdn-data/2.0.14:
+ /mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
-
- /mdn-data/2.0.4:
- resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==}
dev: false
- /mdurl/1.0.1:
- resolution: {integrity: sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=}
+ /mdn-data@2.0.28:
+ resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
+
+ /mdn-data@2.0.30:
+ resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
+
+ /mdn-data@2.0.4:
+ resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==}
dev: false
- /media-query-parser/2.0.2:
+ /media-query-parser@2.0.2:
resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==}
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.21.5
dev: true
- /media-typer/0.3.0:
+ /media-typer@0.3.0:
resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
engines: {node: '>= 0.6'}
dev: false
- /memfs/3.4.1:
- resolution: {integrity: sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==}
- engines: {node: '>= 4.0.0'}
- dependencies:
- fs-monkey: 1.0.3
- dev: false
-
- /memfs/3.4.7:
- resolution: {integrity: sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==}
+ /memfs@3.5.1:
+ resolution: {integrity: sha512-UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA==}
engines: {node: '>= 4.0.0'}
dependencies:
fs-monkey: 1.0.3
dev: false
- /memoize-one/4.0.3:
+ /memoize-one@4.0.3:
resolution: {integrity: sha512-QmpUu4KqDmX0plH4u+tf0riMc1KHE1+lw95cMrLlXQAFOx/xnBtwhZ52XJxd9X2O6kwKBqX32kmhbhlobD0cuw==}
dev: false
- /meow/6.1.1:
+ /meow@6.1.1:
resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==}
engines: {node: '>=8'}
dependencies:
'@types/minimist': 1.2.2
camelcase-keys: 6.2.2
- decamelize-keys: 1.1.0
+ decamelize-keys: 1.1.1
hard-rejection: 2.1.0
minimist-options: 4.1.0
normalize-package-data: 2.5.0
@@ -13779,26 +12428,26 @@ packages:
yargs-parser: 18.1.3
dev: true
- /merge-descriptors/1.0.1:
+ /merge-descriptors@1.0.1:
resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=}
dev: false
- /merge-stream/2.0.0:
+ /merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- /merge2/1.4.1:
+ /merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /methods/1.1.2:
- resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=}
+ /methods@1.1.2:
+ resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
dev: false
- /micromark-core-commonmark/1.0.6:
+ /micromark-core-commonmark@1.0.6:
resolution: {integrity: sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==}
dependencies:
- decode-named-character-reference: 1.0.1
+ decode-named-character-reference: 1.0.2
micromark-factory-destination: 1.0.0
micromark-factory-label: 1.0.2
micromark-factory-space: 1.0.0
@@ -13807,22 +12456,22 @@ packages:
micromark-util-character: 1.1.0
micromark-util-chunked: 1.0.0
micromark-util-classify-character: 1.0.0
- micromark-util-html-tag-name: 1.0.0
+ micromark-util-html-tag-name: 1.1.0
micromark-util-normalize-identifier: 1.0.0
micromark-util-resolve-all: 1.0.0
micromark-util-subtokenize: 1.0.2
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
dev: false
- /micromark-extension-frontmatter/0.2.2:
+ /micromark-extension-frontmatter@0.2.2:
resolution: {integrity: sha512-q6nPLFCMTLtfsctAuS0Xh4vaolxSFUWUWR6PZSrXXiRy+SANGllpcqdXFv2z07l0Xz/6Hl40hK0ffNCJPH2n1A==}
dependencies:
fault: 1.0.4
dev: false
- /micromark-extension-gfm-autolink-literal/0.5.7:
+ /micromark-extension-gfm-autolink-literal@0.5.7:
resolution: {integrity: sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==}
dependencies:
micromark: 2.11.4
@@ -13830,7 +12479,7 @@ packages:
- supports-color
dev: false
- /micromark-extension-gfm-strikethrough/0.6.5:
+ /micromark-extension-gfm-strikethrough@0.6.5:
resolution: {integrity: sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==}
dependencies:
micromark: 2.11.4
@@ -13838,7 +12487,7 @@ packages:
- supports-color
dev: false
- /micromark-extension-gfm-table/0.4.3:
+ /micromark-extension-gfm-table@0.4.3:
resolution: {integrity: sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==}
dependencies:
micromark: 2.11.4
@@ -13846,11 +12495,11 @@ packages:
- supports-color
dev: false
- /micromark-extension-gfm-tagfilter/0.3.0:
+ /micromark-extension-gfm-tagfilter@0.3.0:
resolution: {integrity: sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==}
dev: false
- /micromark-extension-gfm-task-list-item/0.3.3:
+ /micromark-extension-gfm-task-list-item@0.3.3:
resolution: {integrity: sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==}
dependencies:
micromark: 2.11.4
@@ -13858,7 +12507,7 @@ packages:
- supports-color
dev: false
- /micromark-extension-gfm/0.3.3:
+ /micromark-extension-gfm@0.3.3:
resolution: {integrity: sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==}
dependencies:
micromark: 2.11.4
@@ -13871,65 +12520,65 @@ packages:
- supports-color
dev: false
- /micromark-extension-mdx-expression/1.0.3:
- resolution: {integrity: sha512-TjYtjEMszWze51NJCZmhv7MEBcgYRgb3tJeMAJ+HQCAaZHHRBaDCccqQzGizR/H4ODefP44wRTgOn2vE5I6nZA==}
+ /micromark-extension-mdx-expression@1.0.5:
+ resolution: {integrity: sha512-/ruJEj+Qpgar/P+b6z0firNIbY5VMHFdL3MJDvsnVVY+RnecmGNpN7YUZhb51NfBtk7iQnNCl5xeb4E5cWxXvw==}
dependencies:
- micromark-factory-mdx-expression: 1.0.6
+ micromark-factory-mdx-expression: 1.0.8
micromark-factory-space: 1.0.0
micromark-util-character: 1.1.0
- micromark-util-events-to-acorn: 1.0.4
+ micromark-util-events-to-acorn: 1.2.3
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
dev: false
- /micromark-extension-mdx-jsx/1.0.3:
- resolution: {integrity: sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==}
+ /micromark-extension-mdx-jsx@1.0.4:
+ resolution: {integrity: sha512-Jq4O738s2PvxJJSMZhV+y/7uq+pGI/ugQvHJBQelWpE3ECYvJMtF2duwfHQoAuUnIKSvg8b0dU1D+EXTAYE5ww==}
dependencies:
'@types/acorn': 4.0.6
- estree-util-is-identifier-name: 2.0.0
- micromark-factory-mdx-expression: 1.0.6
+ estree-util-is-identifier-name: 2.1.0
+ micromark-factory-mdx-expression: 1.0.8
micromark-factory-space: 1.0.0
micromark-util-character: 1.1.0
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
- vfile-message: 3.1.2
+ uvu: 0.5.6
+ vfile-message: 3.1.4
dev: false
- /micromark-extension-mdx-md/1.0.0:
- resolution: {integrity: sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==}
+ /micromark-extension-mdx-md@1.0.1:
+ resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==}
dependencies:
micromark-util-types: 1.0.2
dev: false
- /micromark-extension-mdxjs-esm/1.0.2:
- resolution: {integrity: sha512-bIaxblNIM+CCaJvp3L/V+168l79iuNmxEiTU6i3vB0YuDW+rumV64BFMxvhfRDxaJxQE1zD5vTPdyLBbW4efGA==}
+ /micromark-extension-mdxjs-esm@1.0.4:
+ resolution: {integrity: sha512-mmyCf6baCbLf+OHTCZdj+f8lDY8GBae4qhbffrJDqM1KltghsZz2k3nbvRfEwm301G62nhrlom9M9OheQwrssg==}
dependencies:
micromark-core-commonmark: 1.0.6
micromark-util-character: 1.1.0
- micromark-util-events-to-acorn: 1.0.4
+ micromark-util-events-to-acorn: 1.2.3
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- unist-util-position-from-estree: 1.1.1
- uvu: 0.5.3
- vfile-message: 3.1.2
+ unist-util-position-from-estree: 1.1.2
+ uvu: 0.5.6
+ vfile-message: 3.1.4
dev: false
- /micromark-extension-mdxjs/1.0.0:
- resolution: {integrity: sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==}
+ /micromark-extension-mdxjs@1.0.1:
+ resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==}
dependencies:
- acorn: 8.8.0
- acorn-jsx: 5.3.2_acorn@8.8.0
- micromark-extension-mdx-expression: 1.0.3
- micromark-extension-mdx-jsx: 1.0.3
- micromark-extension-mdx-md: 1.0.0
- micromark-extension-mdxjs-esm: 1.0.2
+ acorn: 8.8.2
+ acorn-jsx: 5.3.2(acorn@8.8.2)
+ micromark-extension-mdx-expression: 1.0.5
+ micromark-extension-mdx-jsx: 1.0.4
+ micromark-extension-mdx-md: 1.0.1
+ micromark-extension-mdxjs-esm: 1.0.4
micromark-util-combine-extensions: 1.0.0
micromark-util-types: 1.0.2
dev: false
- /micromark-factory-destination/1.0.0:
+ /micromark-factory-destination@1.0.0:
resolution: {integrity: sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==}
dependencies:
micromark-util-character: 1.1.0
@@ -13937,46 +12586,46 @@ packages:
micromark-util-types: 1.0.2
dev: false
- /micromark-factory-label/1.0.2:
+ /micromark-factory-label@1.0.2:
resolution: {integrity: sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==}
dependencies:
micromark-util-character: 1.1.0
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
dev: false
- /micromark-factory-mdx-expression/1.0.6:
- resolution: {integrity: sha512-WRQIc78FV7KrCfjsEf/sETopbYjElh3xAmNpLkd1ODPqxEngP42eVRGbiPEQWpRV27LzqW+XVTvQAMIIRLPnNA==}
+ /micromark-factory-mdx-expression@1.0.8:
+ resolution: {integrity: sha512-/GWj6h6bDFCDCkxOCb/xXpgKGonhBXEqMnhTThVo0nlIN/i8z6L6YrmRq+N91oerxY97fEz7vHSCSIcW7fGFhQ==}
dependencies:
- micromark-factory-space: 1.0.0
+ '@types/estree': 1.0.1
micromark-util-character: 1.1.0
- micromark-util-events-to-acorn: 1.0.4
+ micromark-util-events-to-acorn: 1.2.3
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- unist-util-position-from-estree: 1.1.1
- uvu: 0.5.3
- vfile-message: 3.1.2
+ unist-util-position-from-estree: 1.1.2
+ uvu: 0.5.6
+ vfile-message: 3.1.4
dev: false
- /micromark-factory-space/1.0.0:
+ /micromark-factory-space@1.0.0:
resolution: {integrity: sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==}
dependencies:
micromark-util-character: 1.1.0
micromark-util-types: 1.0.2
dev: false
- /micromark-factory-title/1.0.2:
+ /micromark-factory-title@1.0.2:
resolution: {integrity: sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==}
dependencies:
micromark-factory-space: 1.0.0
micromark-util-character: 1.1.0
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
dev: false
- /micromark-factory-whitespace/1.0.0:
+ /micromark-factory-whitespace@1.0.0:
resolution: {integrity: sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==}
dependencies:
micromark-factory-space: 1.0.0
@@ -13985,20 +12634,20 @@ packages:
micromark-util-types: 1.0.2
dev: false
- /micromark-util-character/1.1.0:
+ /micromark-util-character@1.1.0:
resolution: {integrity: sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==}
dependencies:
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
dev: false
- /micromark-util-chunked/1.0.0:
+ /micromark-util-chunked@1.0.0:
resolution: {integrity: sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==}
dependencies:
micromark-util-symbol: 1.0.1
dev: false
- /micromark-util-classify-character/1.0.0:
+ /micromark-util-classify-character@1.0.0:
resolution: {integrity: sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==}
dependencies:
micromark-util-character: 1.1.0
@@ -14006,85 +12655,87 @@ packages:
micromark-util-types: 1.0.2
dev: false
- /micromark-util-combine-extensions/1.0.0:
+ /micromark-util-combine-extensions@1.0.0:
resolution: {integrity: sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==}
dependencies:
micromark-util-chunked: 1.0.0
micromark-util-types: 1.0.2
dev: false
- /micromark-util-decode-numeric-character-reference/1.0.0:
+ /micromark-util-decode-numeric-character-reference@1.0.0:
resolution: {integrity: sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==}
dependencies:
micromark-util-symbol: 1.0.1
dev: false
- /micromark-util-decode-string/1.0.2:
+ /micromark-util-decode-string@1.0.2:
resolution: {integrity: sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==}
dependencies:
- decode-named-character-reference: 1.0.1
+ decode-named-character-reference: 1.0.2
micromark-util-character: 1.1.0
micromark-util-decode-numeric-character-reference: 1.0.0
micromark-util-symbol: 1.0.1
dev: false
- /micromark-util-encode/1.0.1:
+ /micromark-util-encode@1.0.1:
resolution: {integrity: sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==}
dev: false
- /micromark-util-events-to-acorn/1.0.4:
- resolution: {integrity: sha512-dpo8ecREK5s/KMph7jJ46RLM6g7N21CMc9LAJQbDLdbQnTpijigkSJPTIfLXZ+h5wdXlcsQ+b6ufAE9v76AdgA==}
+ /micromark-util-events-to-acorn@1.2.3:
+ resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==}
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 0.0.50
- estree-util-visit: 1.1.0
+ '@types/estree': 1.0.1
+ '@types/unist': 2.0.6
+ estree-util-visit: 1.2.1
+ micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
- vfile-message: 3.1.2
+ uvu: 0.5.6
+ vfile-message: 3.1.4
dev: false
- /micromark-util-html-tag-name/1.0.0:
- resolution: {integrity: sha512-NenEKIshW2ZI/ERv9HtFNsrn3llSPZtY337LID/24WeLqMzeZhBEE6BQ0vS2ZBjshm5n40chKtJ3qjAbVV8S0g==}
+ /micromark-util-html-tag-name@1.1.0:
+ resolution: {integrity: sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==}
dev: false
- /micromark-util-normalize-identifier/1.0.0:
+ /micromark-util-normalize-identifier@1.0.0:
resolution: {integrity: sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==}
dependencies:
micromark-util-symbol: 1.0.1
dev: false
- /micromark-util-resolve-all/1.0.0:
+ /micromark-util-resolve-all@1.0.0:
resolution: {integrity: sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==}
dependencies:
micromark-util-types: 1.0.2
dev: false
- /micromark-util-sanitize-uri/1.0.0:
- resolution: {integrity: sha512-cCxvBKlmac4rxCGx6ejlIviRaMKZc0fWm5HdCHEeDWRSkn44l6NdYVRyU+0nT1XC72EQJMZV8IPHF+jTr56lAg==}
+ /micromark-util-sanitize-uri@1.1.0:
+ resolution: {integrity: sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==}
dependencies:
micromark-util-character: 1.1.0
micromark-util-encode: 1.0.1
micromark-util-symbol: 1.0.1
dev: false
- /micromark-util-subtokenize/1.0.2:
+ /micromark-util-subtokenize@1.0.2:
resolution: {integrity: sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==}
dependencies:
micromark-util-chunked: 1.0.0
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
dev: false
- /micromark-util-symbol/1.0.1:
+ /micromark-util-symbol@1.0.1:
resolution: {integrity: sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==}
dev: false
- /micromark-util-types/1.0.2:
+ /micromark-util-types@1.0.2:
resolution: {integrity: sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==}
dev: false
- /micromark/2.11.4:
+ /micromark@2.11.4:
resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}
dependencies:
debug: 4.3.4
@@ -14093,12 +12744,12 @@ packages:
- supports-color
dev: false
- /micromark/3.0.10:
- resolution: {integrity: sha512-ryTDy6UUunOXy2HPjelppgJ2sNfcPz1pLlMdA6Rz9jPzhLikWXv/irpWV/I2jd68Uhmny7hHxAlAhk4+vWggpg==}
+ /micromark@3.1.0:
+ resolution: {integrity: sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==}
dependencies:
- '@types/debug': 4.1.7
+ '@types/debug': 4.1.8
debug: 4.3.4
- decode-named-character-reference: 1.0.1
+ decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.0.6
micromark-factory-space: 1.0.0
micromark-util-character: 1.1.0
@@ -14108,111 +12759,74 @@ packages:
micromark-util-encode: 1.0.1
micromark-util-normalize-identifier: 1.0.0
micromark-util-resolve-all: 1.0.0
- micromark-util-sanitize-uri: 1.0.0
+ micromark-util-sanitize-uri: 1.1.0
micromark-util-subtokenize: 1.0.2
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
transitivePeerDependencies:
- supports-color
dev: false
- /micromatch/4.0.4:
- resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==}
- engines: {node: '>=8.6'}
- dependencies:
- braces: 3.0.2
- picomatch: 2.3.1
- dev: false
-
- /micromatch/4.0.5:
+ /micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
braces: 3.0.2
picomatch: 2.3.1
- /microseconds/0.2.0:
- resolution: {integrity: sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==}
-
- /mime-db/1.52.0:
+ /mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- /mime-types/2.1.35:
+ /mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- /mime/1.6.0:
+ /mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
- /mimic-fn/2.1.0:
+ /mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- /min-indent/1.0.1:
+ /min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- /mini-css-extract-plugin/2.6.1:
- resolution: {integrity: sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- schema-utils: 4.0.0
- dev: true
-
- /mini-css-extract-plugin/2.6.1_webpack@5.73.0:
- resolution: {integrity: sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- schema-utils: 4.0.0
- webpack: 5.73.0
- dev: false
-
- /mini-css-extract-plugin/2.6.1_webpack@5.74.0:
- resolution: {integrity: sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==}
+ /mini-css-extract-plugin@2.7.6(webpack@5.84.0):
+ resolution: {integrity: sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- schema-utils: 4.0.0
- webpack: 5.74.0
- dev: false
+ schema-utils: 4.0.1
+ webpack: 5.84.0
- /mini-svg-data-uri/1.4.4:
+ /mini-svg-data-uri@1.4.4:
resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
hasBin: true
- /minimalistic-assert/1.0.1:
+ /minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
dev: false
- /minimatch/3.0.4:
- resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
- dependencies:
- brace-expansion: 1.1.11
-
- /minimatch/3.1.2:
+ /minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
- /minimatch/5.1.0:
- resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==}
+ /minimatch@5.1.6:
+ resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
- dev: false
- /minimist-options/4.1.0:
+ /minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
dependencies:
@@ -14221,60 +12835,58 @@ packages:
kind-of: 6.0.3
dev: true
- /minimist/1.2.5:
- resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==}
-
- /minimist/1.2.6:
- resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
+ /minimist@1.2.8:
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- /mitt/3.0.0:
+ /mitt@3.0.0:
resolution: {integrity: sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==}
dev: false
- /mixme/0.5.4:
- resolution: {integrity: sha512-3KYa4m4Vlqx98GPdOHghxSdNtTvcP8E0kkaJ5Dlh+h2DRzF7zpuVVcA8B0QpKd11YJeP9QQ7ASkKzOeu195Wzw==}
+ /mixme@0.5.9:
+ resolution: {integrity: sha512-VC5fg6ySUscaWUpI4gxCBTQMH2RdUpNrk+MsbpCYtIvf9SBJdiUey4qE7BXviJsJR4nDQxCZ+3yaYNW3guz/Pw==}
engines: {node: '>= 8.0.0'}
dev: true
- /mkdirp/0.5.5:
- resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==}
- hasBin: true
- dependencies:
- minimist: 1.2.5
-
- /mkdirp/0.5.6:
+ /mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
dependencies:
- minimist: 1.2.6
- dev: false
+ minimist: 1.2.8
- /monaco-editor/0.33.0:
- resolution: {integrity: sha512-VcRWPSLIUEgQJQIE0pVT8FcGBIgFoxz7jtqctE+IiCxWugD0DwgyQBcZBhdSrdMC84eumoqMZsGl2GTreOzwqw==}
+ /mlly@1.3.0:
+ resolution: {integrity: sha512-HT5mcgIQKkOrZecOjOX3DJorTikWXwsBfpcr/MGBkhfWcjiqvnaL/9ppxvIUXfjT6xt4DVIAsN9fMUz1ev4bIw==}
+ dependencies:
+ acorn: 8.8.2
+ pathe: 1.1.0
+ pkg-types: 1.0.3
+ ufo: 1.1.2
dev: true
- /monaco-themes/0.4.2:
- resolution: {integrity: sha512-T3kp6SC5MPJvwYGXZENCd0UOIKVgUVV5SjsiXLBhgEZBnScY+6gEbwNRK1oYmfwbf+dGVqF1bSLN5YcrFu3HmA==}
+ /monaco-editor@0.38.0:
+ resolution: {integrity: sha512-11Fkh6yzEmwx7O0YoLxeae0qEGFwmyPRlVxpg7oF9czOOCB/iCjdJrG5I67da5WiXK3YJCxoz9TJFE8Tfq/v9A==}
+
+ /monaco-themes@0.4.4:
+ resolution: {integrity: sha512-Hbb9pvRrpSi0rZezcB/IOdQnpx10o55Lx4zFdRAAVpFMa1HP7FgaqEZdKffb4ovd90fETCixeFO9JPYFMAq+TQ==}
dependencies:
- fast-plist: 0.1.2
+ fast-plist: 0.1.3
dev: false
- /mri/1.2.0:
+ /mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
dev: false
- /ms/2.0.0:
+ /ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
dev: false
- /ms/2.1.2:
+ /ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- /ms/2.1.3:
+ /ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- /msw/0.42.1_typescript@4.6.4:
+ /msw@0.42.1(typescript@4.6.4):
resolution: {integrity: sha512-LZZuz7VddL45gCBgfBWHyXj6a4W7OTJY0mZPoipJ3P/xwbuJwrtwB3IJrWlqBM8aink/eTKlRxwzmtIAwCj5yQ==}
engines: {node: '>=14'}
hasBin: true
@@ -14285,7 +12897,7 @@ packages:
typescript:
optional: true
dependencies:
- '@mswjs/cookies': 0.2.1
+ '@mswjs/cookies': 0.2.2
'@mswjs/interceptors': 0.16.6
'@open-draft/until': 1.0.3
'@types/cookie': 0.4.1
@@ -14293,92 +12905,82 @@ packages:
chalk: 4.1.1
chokidar: 3.5.3
cookie: 0.4.2
- graphql: 16.5.0
- headers-polyfill: 3.0.7
- inquirer: 8.2.4
- is-node-process: 1.0.1
+ graphql: 16.6.0
+ headers-polyfill: 3.1.2
+ inquirer: 8.2.5
+ is-node-process: 1.2.0
js-levenshtein: 1.1.6
node-fetch: 2.6.7
- outvariant: 1.3.0
+ outvariant: 1.4.0
path-to-regexp: 6.2.1
statuses: 2.0.1
- strict-event-emitter: 0.2.4
+ strict-event-emitter: 0.2.8
type-fest: 1.4.0
typescript: 4.6.4
- yargs: 17.5.1
+ yargs: 17.7.2
transitivePeerDependencies:
- encoding
- supports-color
- /multicast-dns/7.2.4:
- resolution: {integrity: sha512-XkCYOU+rr2Ft3LI6w4ye51M3VK31qJXFIxu0XLw169PtKG0Zx47OrXeVW/GCYOfpC9s1yyyf1S+L8/4LY0J9Zw==}
- hasBin: true
- dependencies:
- dns-packet: 5.3.1
- thunky: 1.1.0
- dev: false
-
- /multicast-dns/7.2.5:
+ /multicast-dns@7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
dependencies:
- dns-packet: 5.4.0
+ dns-packet: 5.6.0
thunky: 1.1.0
dev: false
- /mute-stream/0.0.8:
+ /mute-stream@0.0.8:
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
- /mz/2.7.0:
+ /mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
dependencies:
any-promise: 1.3.0
object-assign: 4.1.1
thenify-all: 1.6.0
- /nano-time/1.0.0:
- resolution: {integrity: sha1-sFVPaa2J4i0JB/ehKwmTpdlhN+8=}
- dependencies:
- big-integer: 1.6.51
-
- /nanocolors/0.2.13:
+ /nanocolors@0.2.13:
resolution: {integrity: sha512-0n3mSAQLPpGLV9ORXT5+C/D4mwew7Ebws69Hx4E2sgz2ZA5+32Q80B9tL8PbL7XHnRDiAxH/pnrUJ9a4fkTNTA==}
dev: false
- /nanoid/3.3.4:
- resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
+ /nanoid@3.3.6:
+ resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- /natural-compare/1.4.0:
+ /natural-compare-lite@1.4.0:
+ resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
+ dev: false
+
+ /natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- /negotiator/0.6.3:
+ /negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
dev: false
- /neo-async/2.6.2:
+ /neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- /no-case/3.0.4:
+ /no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
tslib: 2.4.0
- dev: false
- /node-addon-api/1.7.2:
+ /node-addon-api@1.7.2:
resolution: {integrity: sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==}
dev: false
optional: true
- /node-domexception/1.0.0:
+ /node-domexception@1.0.0:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
dev: false
- /node-fetch/2.6.7:
+ /node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
@@ -14389,189 +12991,173 @@ packages:
dependencies:
whatwg-url: 5.0.0
- /node-fetch/3.2.3:
- resolution: {integrity: sha512-AXP18u4pidSZ1xYXRDPY/8jdv3RAozIt/WLNR/MBGZAz+xjtlr90RvCnsvHQRiXyWliZF/CpytExp32UU67/SA==}
+ /node-fetch@3.3.1:
+ resolution: {integrity: sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
- data-uri-to-buffer: 4.0.0
- fetch-blob: 3.1.4
+ data-uri-to-buffer: 4.0.1
+ fetch-blob: 3.2.0
formdata-polyfill: 4.0.10
dev: false
- /node-forge/1.3.1:
+ /node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
dev: false
- /node-int64/0.4.0:
- resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=}
-
- /node-releases/2.0.1:
- resolution: {integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==}
- dev: false
-
- /node-releases/2.0.2:
- resolution: {integrity: sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==}
- dev: false
-
- /node-releases/2.0.4:
- resolution: {integrity: sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==}
- dev: false
-
- /node-releases/2.0.5:
- resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==}
- dev: false
+ /node-int64@0.4.0:
+ resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- /node-releases/2.0.6:
- resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
+ /node-releases@2.0.12:
+ resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==}
- /normalize-package-data/2.5.0:
+ /normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.1
+ resolve: 1.22.2
semver: 5.7.1
validate-npm-package-license: 3.0.4
dev: true
- /normalize-path/3.0.0:
+ /normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- /normalize-range/0.1.2:
+ /normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- /normalize-url/6.1.0:
+ /normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
+ dev: false
- /npm-run-path/4.0.1:
+ /npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
dependencies:
path-key: 3.1.1
- /nth-check/1.0.2:
+ /nth-check@1.0.2:
resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==}
dependencies:
boolbase: 1.0.0
dev: false
- /nth-check/2.0.1:
- resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
+ /nth-check@2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
boolbase: 1.0.0
- /nwsapi/2.2.0:
- resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==}
+ /nwsapi@2.2.4:
+ resolution: {integrity: sha512-NHj4rzRo0tQdijE9ZqAx6kYDcoRwYwSYzCA8MY3JzfxlrvEU0jhnhJT9BhqhJs7I/dKcrDm6TyulaRqZPIhN5g==}
dev: false
- /object-assign/4.1.1:
- resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
+ /object-assign@4.1.1:
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- /object-hash/3.0.0:
+ /object-hash@3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- /object-inspect/1.12.0:
- resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==}
+ /object-inspect@1.12.3:
+ resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
+
+ /object-is@1.1.5:
+ resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.0
- /object-keys/1.1.1:
+ /object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- /object.assign/4.1.2:
- resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==}
+ /object.assign@4.1.4:
+ resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
+ define-properties: 1.2.0
has-symbols: 1.0.3
object-keys: 1.1.1
- /object.entries/1.1.5:
- resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==}
+ /object.entries@1.1.6:
+ resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
dev: false
- /object.fromentries/2.0.5:
- resolution: {integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==}
+ /object.fromentries@2.0.6:
+ resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
dev: false
- /object.getownpropertydescriptors/2.1.3:
- resolution: {integrity: sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==}
+ /object.getownpropertydescriptors@2.1.6:
+ resolution: {integrity: sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==}
engines: {node: '>= 0.8'}
dependencies:
+ array.prototype.reduce: 1.0.5
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
+ safe-array-concat: 1.0.0
dev: false
- /object.hasown/1.1.1:
- resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==}
+ /object.hasown@1.1.2:
+ resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
dependencies:
- define-properties: 1.1.4
- es-abstract: 1.20.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
dev: false
- /object.values/1.1.5:
- resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==}
+ /object.values@1.1.6:
+ resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
dev: false
- /oblivious-set/1.0.0:
- resolution: {integrity: sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==}
-
- /obuf/1.1.2:
+ /obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
dev: false
- /on-finished/2.3.0:
- resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=}
- engines: {node: '>= 0.8'}
- dependencies:
- ee-first: 1.1.1
- dev: false
-
- /on-finished/2.4.1:
+ /on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
dev: false
- /on-headers/1.0.2:
+ /on-headers@1.0.2:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
dev: false
- /once/1.4.0:
+ /once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
- /onetime/5.1.2:
+ /onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
- /open/8.4.0:
+ /open@8.4.0:
resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
engines: {node: '>=12'}
dependencies:
@@ -14580,12 +13166,12 @@ packages:
is-wsl: 2.2.0
dev: false
- /opener/1.5.2:
+ /opener@1.5.2:
resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
hasBin: true
dev: true
- /optionator/0.8.3:
+ /optionator@0.8.3:
resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -14597,7 +13183,7 @@ packages:
word-wrap: 1.2.3
dev: false
- /optionator/0.9.1:
+ /optionator@0.9.1:
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -14608,101 +13194,79 @@ packages:
type-check: 0.4.0
word-wrap: 1.2.3
- /ora/5.4.1:
+ /ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
dependencies:
bl: 4.1.0
- chalk: 4.1.2
+ chalk: 4.1.1
cli-cursor: 3.1.0
- cli-spinners: 2.6.1
+ cli-spinners: 2.9.0
is-interactive: 1.0.0
is-unicode-supported: 0.1.0
log-symbols: 4.1.0
strip-ansi: 6.0.1
wcwidth: 1.0.1
- /os-tmpdir/1.0.2:
+ /os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
- /outdent/0.5.0:
+ /outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
dev: true
- /outdent/0.8.0:
+ /outdent@0.8.0:
resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==}
dev: true
- /outvariant/1.3.0:
- resolution: {integrity: sha512-yeWM9k6UPfG/nzxdaPlJkB2p08hCg4xP6Lx99F+vP8YF7xyZVfTmJjrrNalkmzudD4WFvNLVudQikqUmF8zhVQ==}
+ /outvariant@1.4.0:
+ resolution: {integrity: sha512-AlWY719RF02ujitly7Kk/0QlV+pXGFDHrHf9O2OKqyqgBieaPOIeuSkL8sRK6j2WK+/ZAURq2kZsY0d8JapUiw==}
- /p-filter/2.1.0:
+ /p-filter@2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
engines: {node: '>=8'}
dependencies:
p-map: 2.1.0
dev: true
- /p-limit/1.3.0:
- resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
- engines: {node: '>=4'}
- dependencies:
- p-try: 1.0.0
- dev: false
-
- /p-limit/2.3.0:
+ /p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
dependencies:
p-try: 2.2.0
- /p-limit/3.1.0:
+ /p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
dependencies:
yocto-queue: 0.1.0
- /p-locate/2.0.0:
- resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==}
- engines: {node: '>=4'}
- dependencies:
- p-limit: 1.3.0
- dev: false
-
- /p-locate/3.0.0:
+ /p-locate@3.0.0:
resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
engines: {node: '>=6'}
dependencies:
p-limit: 2.3.0
dev: false
- /p-locate/4.1.0:
+ /p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
dependencies:
p-limit: 2.3.0
- /p-locate/5.0.0:
+ /p-locate@5.0.0:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
dependencies:
p-limit: 3.1.0
- /p-map/2.1.0:
+ /p-map@2.1.0:
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
dev: true
- /p-retry/4.6.1:
- resolution: {integrity: sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==}
- engines: {node: '>=8'}
- dependencies:
- '@types/retry': 0.12.1
- retry: 0.13.1
- dev: false
-
- /p-retry/4.6.2:
+ /p-retry@4.6.2:
resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
engines: {node: '>=8'}
dependencies:
@@ -14710,29 +13274,23 @@ packages:
retry: 0.13.1
dev: false
- /p-try/1.0.0:
- resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=}
- engines: {node: '>=4'}
- dev: false
-
- /p-try/2.2.0:
+ /p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- /param-case/3.0.4:
+ /param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
tslib: 2.4.0
- dev: false
- /parent-module/1.0.1:
+ /parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
dependencies:
callsites: 3.1.0
- /parse-entities/2.0.0:
+ /parse-entities@2.0.0:
resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
dependencies:
character-entities: 1.2.4
@@ -14743,452 +13301,492 @@ packages:
is-hexadecimal: 1.0.4
dev: false
- /parse-entities/4.0.0:
- resolution: {integrity: sha512-5nk9Fn03x3rEhGaX1FU6IDwG/k+GxLXlFAkgrbM1asuAFl3BhdQWvASaIsmwWypRNcZKHPYnIuOSfIWEyEQnPQ==}
+ /parse-entities@4.0.1:
+ resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
dependencies:
'@types/unist': 2.0.6
- character-entities: 2.0.1
+ character-entities: 2.0.2
character-entities-legacy: 3.0.0
character-reference-invalid: 2.0.1
- decode-named-character-reference: 1.0.1
+ decode-named-character-reference: 1.0.2
is-alphanumerical: 2.0.1
is-decimal: 2.0.1
is-hexadecimal: 2.0.1
dev: false
- /parse-json/5.2.0:
+ /parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.18.6
+ '@babel/code-frame': 7.21.4
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- /parse-numeric-range/1.3.0:
+ /parse-numeric-range@1.3.0:
resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==}
dev: false
- /parse5/6.0.1:
+ /parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
dev: false
- /parseurl/1.3.3:
+ /parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
dev: false
- /pascal-case/3.1.2:
+ /pascal-case@3.1.2:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
tslib: 2.4.0
- dev: false
- /path-exists/3.0.0:
+ /path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
dev: false
- /path-exists/4.0.0:
+ /path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- /path-is-absolute/1.0.1:
- resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
+ /path-is-absolute@1.0.1:
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- /path-key/3.1.1:
+ /path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- /path-parse/1.0.7:
+ /path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-to-regexp/0.1.7:
- resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=}
+ /path-to-regexp@0.1.7:
+ resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
dev: false
- /path-to-regexp/6.2.1:
+ /path-to-regexp@6.2.1:
resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==}
- /path-type/4.0.0:
+ /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- /performance-now/2.1.0:
- resolution: {integrity: sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=}
+ /pathe@1.1.0:
+ resolution: {integrity: sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==}
+ dev: true
+
+ /performance-now@2.1.0:
+ resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
dev: false
- /periscopic/3.0.4:
- resolution: {integrity: sha512-SFx68DxCv0Iyo6APZuw/AKewkkThGwssmU0QWtTlvov3VAtPX+QJ4CadwSaz8nrT5jPIuxdvJWB4PnD2KNDxQg==}
+ /periscopic@3.1.0:
+ resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
dependencies:
- estree-walker: 3.0.1
- is-reference: 3.0.0
+ '@types/estree': 1.0.1
+ estree-walker: 3.0.3
+ is-reference: 3.0.1
dev: false
- /picocolors/0.2.1:
+ /picocolors@0.2.1:
resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
dev: false
- /picocolors/1.0.0:
+ /picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- /picomatch/2.3.1:
+ /picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pify/2.3.0:
+ /pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
- /pify/4.0.1:
+ /pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
dev: true
- /pirates/4.0.5:
+ /pirates@4.0.5:
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
engines: {node: '>= 6'}
- /pkg-dir/4.2.0:
+ /pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
dependencies:
find-up: 4.1.0
- /pkg-up/3.1.0:
+ /pkg-types@1.0.3:
+ resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
+ dependencies:
+ jsonc-parser: 3.2.0
+ mlly: 1.3.0
+ pathe: 1.1.0
+ dev: true
+
+ /pkg-up@3.1.0:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
engines: {node: '>=8'}
dependencies:
find-up: 3.0.0
dev: false
- /playwright-core/1.24.2:
- resolution: {integrity: sha512-zfAoDoPY/0sDLsgSgLZwWmSCevIg1ym7CppBwllguVBNiHeixZkc1AdMuYUPZC6AdEYc4CxWEyLMBTw2YcmRrA==}
+ /playwright-core@1.34.3:
+ resolution: {integrity: sha512-2pWd6G7OHKemc5x1r1rp8aQcpvDh7goMBZlJv6Co5vCNLVcQJdhxRL09SGaY6HcyHH9aT4tiynZabMofVasBYw==}
engines: {node: '>=14'}
hasBin: true
dev: true
- /portfinder/1.0.28:
- resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==}
+ /portfinder@1.0.32:
+ resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
engines: {node: '>= 0.12.0'}
dependencies:
- async: 2.6.3
+ async: 2.6.4
debug: 3.2.7
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
transitivePeerDependencies:
- supports-color
dev: true
- /postcss-attribute-case-insensitive/5.0.0_postcss@8.4.14:
- resolution: {integrity: sha512-b4g9eagFGq9T5SWX4+USfVyjIb3liPnjhHHRMP7FMB2kFVpYyfEscV0wP3eaXhKlcHKUut8lt5BGoeylWA/dBQ==}
+ /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.16):
+ resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.0.2
+ postcss: ^8.2
dependencies:
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-browser-comments/4.0.0_45omf6eai42q3ceghea5lhdztm:
+ /postcss-browser-comments@4.0.0(browserslist@4.21.5)(postcss@8.4.16):
resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==}
engines: {node: '>=8'}
peerDependencies:
browserslist: '>=4'
postcss: '>=8'
dependencies:
- browserslist: 4.20.3
- postcss: 8.4.14
+ browserslist: 4.21.5
+ postcss: 8.4.16
dev: false
- /postcss-calc/8.2.2_postcss@8.4.14:
- resolution: {integrity: sha512-B5R0UeB4zLJvxNt1FVCaDZULdzsKLPc6FhjFJ+xwFiq7VG4i9cuaJLxVjNtExNK8ocm3n2o4unXXLiVX1SCqxA==}
+ /postcss-calc@8.2.4(postcss@8.4.23):
+ resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.14
- postcss-selector-parser: 6.0.8
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: false
- /postcss-calc/8.2.4_postcss@8.4.16:
- resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
+ /postcss-calc@9.0.1(postcss@8.4.23):
+ resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.16
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
- /postcss-clamp/4.1.0_postcss@8.4.14:
+ /postcss-clamp@4.1.0(postcss@8.4.16):
resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
engines: {node: '>=7.6.0'}
peerDependencies:
postcss: ^8.4.6
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-color-functional-notation/4.2.2_postcss@8.4.14:
- resolution: {integrity: sha512-DXVtwUhIk4f49KK5EGuEdgx4Gnyj6+t2jBSEmxvpIK9QI40tWrpS2Pua8Q7iIZWBrki2QOaeUdEaLPPa91K0RQ==}
+ /postcss-cli@10.1.0(postcss@8.4.16):
+ resolution: {integrity: sha512-Zu7PLORkE9YwNdvOeOVKPmWghprOtjFQU3srMUGbdz3pHJiFh7yZ4geiZFMkjMfB0mtTFR3h8RemR62rPkbOPA==}
+ engines: {node: '>=14'}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.0.0
+ dependencies:
+ chokidar: 3.5.3
+ dependency-graph: 0.11.0
+ fs-extra: 11.1.1
+ get-stdin: 9.0.0
+ globby: 13.1.4
+ picocolors: 1.0.0
+ postcss: 8.4.16
+ postcss-load-config: 4.0.1(postcss@8.4.16)
+ postcss-reporter: 7.0.5(postcss@8.4.16)
+ pretty-hrtime: 1.0.3
+ read-cache: 1.0.0
+ slash: 5.1.0
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - ts-node
+ dev: true
+
+ /postcss-color-functional-notation@4.2.4(postcss@8.4.16):
+ resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-color-hex-alpha/8.0.3_postcss@8.4.14:
- resolution: {integrity: sha512-fESawWJCrBV035DcbKRPAVmy21LpoyiXdPTuHUfWJ14ZRjY7Y7PA6P4g8z6LQGYhU1WAxkTxjIjurXzoe68Glw==}
+ /postcss-color-hex-alpha@8.0.4(postcss@8.4.16):
+ resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-color-rebeccapurple/7.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-SFc3MaocHaQ6k3oZaFwH8io6MdypkUtEy/eXzXEB1vEQlO3S3oDc/FSZA8AsS04Z25RirQhlDlHLh3dn7XewWw==}
+ /postcss-color-rebeccapurple@7.1.1(postcss@8.4.16):
+ resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.3
+ postcss: ^8.2
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-colormin/5.2.3_postcss@8.4.14:
- resolution: {integrity: sha512-dra4xoAjub2wha6RUXAgadHEn2lGxbj8drhFcIGLOMn914Eu7DkPUurugDXgstwttCYkJtZ/+PkWRWdp3UHRIA==}
+ /postcss-colormin@5.3.1(postcss@8.4.23):
+ resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.1
+ browserslist: 4.21.5
caniuse-api: 3.0.0
- colord: 2.9.2
- postcss: 8.4.14
+ colord: 2.9.3
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-colormin/5.3.0_postcss@8.4.16:
- resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-colormin@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.3
+ browserslist: 4.21.5
caniuse-api: 3.0.0
- colord: 2.9.2
- postcss: 8.4.16
+ colord: 2.9.3
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-convert-values/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg==}
+ /postcss-convert-values@5.1.3(postcss@8.4.23):
+ resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ browserslist: 4.21.5
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-convert-values/5.1.2_postcss@8.4.16:
- resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-convert-values@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.3
- postcss: 8.4.16
+ browserslist: 4.21.5
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-custom-media/8.0.0_postcss@8.4.14:
- resolution: {integrity: sha512-FvO2GzMUaTN0t1fBULDeIvxr5IvbDXcIatt6pnJghc736nqNgsGao5NT+5+WVLAQiTt6Cb3YUms0jiPaXhL//g==}
- engines: {node: '>=10.0.0'}
+ /postcss-custom-media@8.0.2(postcss@8.4.16):
+ resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.1.0
+ postcss: ^8.3
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
dev: false
- /postcss-custom-properties/12.1.7_postcss@8.4.14:
- resolution: {integrity: sha512-N/hYP5gSoFhaqxi2DPCmvto/ZcRDVjE3T1LiAMzc/bg53hvhcHOLpXOHb526LzBBp5ZlAUhkuot/bfpmpgStJg==}
+ /postcss-custom-properties@12.1.11(postcss@8.4.16):
+ resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-custom-selectors/6.0.0_postcss@8.4.14:
- resolution: {integrity: sha512-/1iyBhz/W8jUepjGyu7V1OPcGbc636snN1yXEQCinb6Bwt7KxsiU7/bLQlp8GwAXzCh7cobBU5odNn/2zQWR8Q==}
- engines: {node: '>=10.0.0'}
+ /postcss-custom-selectors@6.0.3(postcss@8.4.16):
+ resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==}
+ engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.1.2
+ postcss: ^8.3
dependencies:
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-dir-pseudo-class/6.0.4_postcss@8.4.14:
- resolution: {integrity: sha512-I8epwGy5ftdzNWEYok9VjW9whC4xnelAtbajGv4adql4FIF09rnrxnA9Y8xSHN47y7gqFIv10C5+ImsLeJpKBw==}
+ /postcss-dir-pseudo-class@6.0.5(postcss@8.4.16):
+ resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-discard-comments/5.0.1_postcss@8.4.14:
- resolution: {integrity: sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==}
+ /postcss-discard-comments@5.1.2(postcss@8.4.23):
+ resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: false
- /postcss-discard-comments/5.1.2_postcss@8.4.16:
- resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-discard-comments@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
- /postcss-discard-duplicates/5.0.1_postcss@8.4.14:
- resolution: {integrity: sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==}
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: false
- /postcss-discard-duplicates/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-discard-duplicates@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
- /postcss-discard-empty/5.0.1_postcss@8.4.14:
- resolution: {integrity: sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==}
+ /postcss-discard-empty@5.1.1(postcss@8.4.23):
+ resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: false
- /postcss-discard-empty/5.1.1_postcss@8.4.16:
- resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-discard-empty@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
- /postcss-discard-overridden/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-+56BLP6NSSUuWUXjRgAQuho1p5xs/hU5Sw7+xt9S3JSg+7R6+WMGnJW7Hre/6tTuZ2xiXMB42ObkiZJ2hy/Pew==}
+ /postcss-discard-overridden@5.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: false
- /postcss-discard-overridden/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-discard-overridden@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
- /postcss-double-position-gradients/3.1.1_postcss@8.4.14:
- resolution: {integrity: sha512-jM+CGkTs4FcG53sMPjrrGE0rIvLDdCrqMzgDC5fLI7JHDO7o6QG8C5TQBtExb13hdBdoH9C2QVbG4jo2y9lErQ==}
+ /postcss-double-position-gradients@3.1.2(postcss@8.4.16):
+ resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14
- postcss: 8.4.14
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.16)
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-env-function/4.0.6_postcss@8.4.14:
+ /postcss-env-function@4.0.6(postcss@8.4.16):
resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-flexbugs-fixes/5.0.2_postcss@8.4.14:
+ /postcss-flexbugs-fixes@5.0.2(postcss@8.4.16):
resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==}
peerDependencies:
postcss: ^8.1.4
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
dev: false
- /postcss-focus-visible/6.0.4_postcss@8.4.14:
+ /postcss-focus-visible@6.0.4(postcss@8.4.16):
resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-focus-within/5.0.4_postcss@8.4.14:
+ /postcss-focus-within@5.0.4(postcss@8.4.16):
resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-font-variant/5.0.0_postcss@8.4.14:
+ /postcss-font-variant@5.0.0(postcss@8.4.16):
resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
dev: false
- /postcss-gap-properties/3.0.3_postcss@8.4.14:
- resolution: {integrity: sha512-rPPZRLPmEKgLk/KlXMqRaNkYTUpE7YC+bOIQFN5xcu1Vp11Y4faIXv6/Jpft6FMnl6YRxZqDZG0qQOW80stzxQ==}
+ /postcss-gap-properties@3.0.5(postcss@8.4.16):
+ resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
dev: false
- /postcss-image-set-function/4.0.6_postcss@8.4.14:
- resolution: {integrity: sha512-KfdC6vg53GC+vPd2+HYzsZ6obmPqOk6HY09kttU19+Gj1nC3S3XBVEXDHxkhxTohgZqzbUb94bKXvKDnYWBm/A==}
+ /postcss-image-set-function@4.0.7(postcss@8.4.16):
+ resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-import/14.1.0_postcss@8.4.16:
+ /postcss-import@14.1.0(postcss@8.4.16):
resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -15197,37 +13795,71 @@ packages:
postcss: 8.4.16
postcss-value-parser: 4.2.0
read-cache: 1.0.0
- resolve: 1.22.1
+ resolve: 1.22.2
+
+ /postcss-import@14.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ postcss: ^8.0.0
+ dependencies:
+ postcss: 8.4.23
+ postcss-value-parser: 4.2.0
+ read-cache: 1.0.0
+ resolve: 1.22.2
+ dev: true
+
+ /postcss-import@15.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ postcss: ^8.0.0
+ dependencies:
+ postcss: 8.4.23
+ postcss-value-parser: 4.2.0
+ read-cache: 1.0.0
+ resolve: 1.22.2
+ dev: true
- /postcss-initial/4.0.1_postcss@8.4.14:
+ /postcss-initial@4.0.1(postcss@8.4.16):
resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
dev: false
- /postcss-js/4.0.0_postcss@8.4.16:
- resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==}
+ /postcss-js@4.0.1(postcss@8.4.16):
+ resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
- postcss: ^8.3.3
+ postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
postcss: 8.4.16
- /postcss-lab-function/4.2.0_postcss@8.4.14:
- resolution: {integrity: sha512-Zb1EO9DGYfa3CP8LhINHCcTTCTLI+R3t7AX2mKsDzdgVQ/GkCpHOTgOr6HBHslP7XDdVbqgHW5vvRPMdVANQ8w==}
+ /postcss-js@4.0.1(postcss@8.4.23):
+ resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
+ engines: {node: ^12 || ^14 || >= 16}
+ peerDependencies:
+ postcss: ^8.4.21
+ dependencies:
+ camelcase-css: 2.0.1
+ postcss: 8.4.23
+ dev: true
+
+ /postcss-lab-function@4.2.1(postcss@8.4.16):
+ resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14
- postcss: 8.4.14
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.16)
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-load-config/3.1.4:
+ /postcss-load-config@3.1.4(postcss@8.4.16):
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -15239,11 +13871,11 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 2.0.6
+ lilconfig: 2.1.0
+ postcss: 8.4.16
yaml: 1.10.2
- dev: true
- /postcss-load-config/3.1.4_postcss@8.4.16:
+ /postcss-load-config@3.1.4(postcss@8.4.23):
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -15255,431 +13887,471 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 2.0.6
- postcss: 8.4.16
+ lilconfig: 2.1.0
+ postcss: 8.4.23
yaml: 1.10.2
+ dev: true
- /postcss-loader/6.2.1_mepnsno3xmng6eyses4tepu7bu:
- resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==}
- engines: {node: '>= 12.13.0'}
+ /postcss-load-config@4.0.1(postcss@8.4.16):
+ resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
+ engines: {node: '>= 14'}
peerDependencies:
- postcss: ^7.0.0 || ^8.0.1
- webpack: ^5.0.0
+ postcss: '>=8.0.9'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ postcss:
+ optional: true
+ ts-node:
+ optional: true
dependencies:
- cosmiconfig: 7.0.1
- klona: 2.0.5
- postcss: 8.4.14
- semver: 7.3.7
- webpack: 5.73.0
- dev: false
+ lilconfig: 2.1.0
+ postcss: 8.4.16
+ yaml: 2.3.1
+ dev: true
- /postcss-loader/7.0.1_postcss@8.4.16:
- resolution: {integrity: sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==}
- engines: {node: '>= 14.15.0'}
+ /postcss-load-config@4.0.1(postcss@8.4.23):
+ resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
+ engines: {node: '>= 14'}
+ peerDependencies:
+ postcss: '>=8.0.9'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ postcss:
+ optional: true
+ ts-node:
+ optional: true
+ dependencies:
+ lilconfig: 2.1.0
+ postcss: 8.4.23
+ yaml: 2.3.1
+ dev: true
+
+ /postcss-loader@6.2.1(postcss@8.4.16)(webpack@5.84.0):
+ resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==}
+ engines: {node: '>= 12.13.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
dependencies:
- cosmiconfig: 7.0.1
- klona: 2.0.5
+ cosmiconfig: 7.1.0
+ klona: 2.0.6
postcss: 8.4.16
- semver: 7.3.7
- dev: true
+ semver: 7.5.1
+ webpack: 5.84.0
+ dev: false
- /postcss-loader/7.0.1_qjv4cptcpse3y5hrjkrbb7drda:
- resolution: {integrity: sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==}
+ /postcss-loader@7.3.0(postcss@8.4.16)(webpack@5.84.0):
+ resolution: {integrity: sha512-qLAFjvR2BFNz1H930P7mj1iuWJFjGey/nVhimfOAAQ1ZyPpcClAxP8+A55Sl8mBvM+K2a9Pjgdj10KpANWrNfw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
dependencies:
- cosmiconfig: 7.0.1
- klona: 2.0.5
+ cosmiconfig: 8.1.3
+ jiti: 1.18.2
+ klona: 2.0.6
postcss: 8.4.16
- semver: 7.3.7
- webpack: 5.74.0
+ semver: 7.5.1
+ webpack: 5.84.0
- /postcss-logical/5.0.4_postcss@8.4.14:
+ /postcss-logical@5.0.4(postcss@8.4.16):
resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
dev: false
- /postcss-media-minmax/5.0.0_postcss@8.4.14:
+ /postcss-media-minmax@5.0.0(postcss@8.4.16):
resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
dev: false
- /postcss-merge-longhand/5.0.4_postcss@8.4.14:
- resolution: {integrity: sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==}
+ /postcss-merge-longhand@5.1.7(postcss@8.4.23):
+ resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- stylehacks: 5.0.1_postcss@8.4.14
+ stylehacks: 5.1.1(postcss@8.4.23)
dev: false
- /postcss-merge-longhand/5.1.6_postcss@8.4.16:
- resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-merge-longhand@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- stylehacks: 5.1.0_postcss@8.4.16
+ stylehacks: 6.0.0(postcss@8.4.23)
- /postcss-merge-rules/5.0.4_postcss@8.4.14:
- resolution: {integrity: sha512-yOj7bW3NxlQxaERBB0lEY1sH5y+RzevjbdH4DBJurjKERNpknRByFNdNe+V72i5pIZL12woM9uGdS5xbSB+kDQ==}
+ /postcss-merge-rules@5.1.4(postcss@8.4.23):
+ resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.1
+ browserslist: 4.21.5
caniuse-api: 3.0.0
- cssnano-utils: 3.0.0_postcss@8.4.14
- postcss: 8.4.14
- postcss-selector-parser: 6.0.8
+ cssnano-utils: 3.1.0(postcss@8.4.23)
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-merge-rules/5.1.2_postcss@8.4.16:
- resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-merge-rules@6.0.1(postcss@8.4.23):
+ resolution: {integrity: sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.3
+ browserslist: 4.21.5
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0_postcss@8.4.16
- postcss: 8.4.16
- postcss-selector-parser: 6.0.10
+ cssnano-utils: 4.0.0(postcss@8.4.23)
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
- /postcss-minify-font-values/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-R6MJZryq28Cw0AmnyhXrM7naqJZZLoa1paBltIzh2wM7yb4D45TLur+eubTQ4jCmZU9SGeZdWsc5KcSoqTMeTg==}
+ /postcss-minify-font-values@5.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-font-values/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-minify-font-values@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-minify-gradients/5.0.4_postcss@8.4.14:
- resolution: {integrity: sha512-RVwZA7NC4R4J76u8X0Q0j+J7ItKUWAeBUJ8oEEZWmtv3Xoh19uNJaJwzNpsydQjk6PkuhRrK+YwwMf+c+68EYg==}
+ /postcss-minify-gradients@5.1.1(postcss@8.4.23):
+ resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- colord: 2.9.2
- cssnano-utils: 3.0.0_postcss@8.4.14
- postcss: 8.4.14
+ colord: 2.9.3
+ cssnano-utils: 3.1.0(postcss@8.4.23)
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-gradients/5.1.1_postcss@8.4.16:
- resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-minify-gradients@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- colord: 2.9.2
- cssnano-utils: 3.1.0_postcss@8.4.16
- postcss: 8.4.16
+ colord: 2.9.3
+ cssnano-utils: 4.0.0(postcss@8.4.23)
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-minify-params/5.0.3_postcss@8.4.14:
- resolution: {integrity: sha512-NY92FUikE+wralaiVexFd5gwb7oJTIDhgTNeIw89i1Ymsgt4RWiPXfz3bg7hDy4NL6gepcThJwOYNtZO/eNi7Q==}
+ /postcss-minify-params@5.1.4(postcss@8.4.23):
+ resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- alphanum-sort: 1.0.2
- browserslist: 4.19.1
- cssnano-utils: 3.0.0_postcss@8.4.14
- postcss: 8.4.14
+ browserslist: 4.21.5
+ cssnano-utils: 3.1.0(postcss@8.4.23)
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-params/5.1.3_postcss@8.4.16:
- resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-minify-params@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.3
- cssnano-utils: 3.1.0_postcss@8.4.16
- postcss: 8.4.16
+ browserslist: 4.21.5
+ cssnano-utils: 4.0.0(postcss@8.4.23)
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-minify-selectors/5.1.1_postcss@8.4.14:
- resolution: {integrity: sha512-TOzqOPXt91O2luJInaVPiivh90a2SIK5Nf1Ea7yEIM/5w+XA5BGrZGUSW8aEx9pJ/oNj7ZJBhjvigSiBV+bC1Q==}
+ /postcss-minify-selectors@5.2.1(postcss@8.4.23):
+ resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- alphanum-sort: 1.0.2
- postcss: 8.4.14
- postcss-selector-parser: 6.0.8
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-minify-selectors/5.2.1_postcss@8.4.16:
- resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-minify-selectors@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.16:
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.23):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.16:
- resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
+ /postcss-modules-local-by-default@4.0.3(postcss@8.4.23):
+ resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.16
- postcss: 8.4.16
- postcss-selector-parser: 6.0.10
+ icss-utils: 5.1.0(postcss@8.4.23)
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
- /postcss-modules-scope/3.0.0_postcss@8.4.16:
+ /postcss-modules-scope@3.0.0(postcss@8.4.23):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.16
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
- /postcss-modules-values/4.0.0_postcss@8.4.16:
+ /postcss-modules-values@4.0.0(postcss@8.4.23):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.16
- postcss: 8.4.16
+ icss-utils: 5.1.0(postcss@8.4.23)
+ postcss: 8.4.23
- /postcss-nested/5.0.6_postcss@8.4.16:
+ /postcss-nested@5.0.6(postcss@8.4.16):
resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
postcss: 8.4.16
- postcss-selector-parser: 6.0.10
+ postcss-selector-parser: 6.0.13
+
+ /postcss-nested@5.0.6(postcss@8.4.23):
+ resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.2.14
+ dependencies:
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
+ dev: true
+
+ /postcss-nested@6.0.1(postcss@8.4.23):
+ resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.2.14
+ dependencies:
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
+ dev: true
- /postcss-nesting/10.1.5_postcss@8.4.14:
- resolution: {integrity: sha512-+NyBBE/wUcJ+NJgVd2FyKIZ414lul6ExqkOt1qXXw7oRzpQ0iT68cVpx+QfHh42QUMHXNoVLlN9InFY9XXK8ng==}
+ /postcss-nesting@10.2.0(postcss@8.4.16):
+ resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- '@csstools/selector-specificity': 1.0.0_444rcjjorr3kpoqtvoodsr46pu
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
+ '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13)
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-normalize-charset/5.0.1_postcss@8.4.14:
- resolution: {integrity: sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==}
+ /postcss-normalize-charset@5.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: false
- /postcss-normalize-charset/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-normalize-charset@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
- /postcss-normalize-display-values/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-RxXoJPUR0shSjkMMzgEZDjGPrgXUVYyWA/YwQRicb48H15OClPuaDR7tYokLAlGZ2tCSENEN5WxjgxSD5m4cUw==}
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-display-values/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-normalize-display-values@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-normalize-positions/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-tqghWFVDp2btqFg1gYob1etPNxXLNh3uVeWgZE2AQGh6b2F8AK2Gj36v5Vhyh+APwIzNjmt6jwZ9pTBP+/OM8g==}
+ /postcss-normalize-positions@5.1.1(postcss@8.4.23):
+ resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-positions/5.1.1_postcss@8.4.16:
- resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-normalize-positions@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-normalize-repeat-style/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-/rIZn8X9bBzC7KvY4iKUhXUGW3MmbXwfPF23jC9wT9xTi7kAvgj8sEgwxjixBmoL6MVa4WOgxNz2hAR6wTK8tw==}
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.23):
+ resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-repeat-style/5.1.1_postcss@8.4.16:
- resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-normalize-repeat-style@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-normalize-string/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-zaI1yzwL+a/FkIzUWMQoH25YwCYxi917J4pYm1nRXtdgiCdnlTkx5eRzqWEC64HtRa06WCJ9TIutpb6GmW4gFw==}
+ /postcss-normalize-string@5.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-string/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-normalize-string@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-normalize-timing-functions/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-Ao0PP6MoYsRU1LxeVUW740ioknvdIUmfr6uAA3xWlQJ9s69/Tupy8qwhuKG3xWfl+KvLMAP9p2WXF9cwuk/7Bg==}
+ /postcss-normalize-timing-functions@5.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-timing-functions/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-normalize-timing-functions@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-normalize-unicode/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-3y/V+vjZ19HNcTizeqwrbZSUsE69ZMRHfiiyLAJb7C7hJtYmM4Gsbajy7gKagu97E8q5rlS9k8FhojA8cpGhWw==}
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.23):
+ resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.1
- postcss: 8.4.14
+ browserslist: 4.21.5
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-unicode/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-normalize-unicode@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.3
- postcss: 8.4.16
+ browserslist: 4.21.5
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-normalize-url/5.0.4_postcss@8.4.14:
- resolution: {integrity: sha512-cNj3RzK2pgQQyNp7dzq0dqpUpQ/wYtdDZM3DepPmFjCmYIfceuD9VIAcOdvrNetjIU65g1B4uwdP/Krf6AFdXg==}
+ /postcss-normalize-url@5.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
normalize-url: 6.1.0
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-url/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-normalize-url@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- normalize-url: 6.1.0
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-normalize-whitespace/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-CXBx+9fVlzSgbk0IXA/dcZn9lXixnQRndnsPC5ht3HxlQ1bVh77KQDL1GffJx1LTzzfae8ftMulsjYmO2yegxA==}
+ /postcss-normalize-whitespace@5.1.1(postcss@8.4.23):
+ resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-whitespace/5.1.1_postcss@8.4.16:
- resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-normalize-whitespace@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-normalize/10.0.1_45omf6eai42q3ceghea5lhdztm:
+ /postcss-normalize@10.0.1(browserslist@4.21.5)(postcss@8.4.16):
resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==}
engines: {node: '>= 12'}
peerDependencies:
@@ -15687,254 +14359,268 @@ packages:
postcss: '>= 8'
dependencies:
'@csstools/normalize.css': 12.0.0
- browserslist: 4.20.3
- postcss: 8.4.14
- postcss-browser-comments: 4.0.0_45omf6eai42q3ceghea5lhdztm
+ browserslist: 4.21.5
+ postcss: 8.4.16
+ postcss-browser-comments: 4.0.0(browserslist@4.21.5)(postcss@8.4.16)
sanitize.css: 13.0.0
dev: false
- /postcss-opacity-percentage/1.1.2:
- resolution: {integrity: sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==}
+ /postcss-opacity-percentage@1.1.3(postcss@8.4.16):
+ resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==}
engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.16
dev: false
- /postcss-ordered-values/5.0.3_postcss@8.4.14:
- resolution: {integrity: sha512-T9pDS+P9bWeFvqivXd5ACzQmrCmHjv3ZP+djn8E1UZY7iK79pFSm7i3WbKw2VSmFmdbMm8sQ12OPcNpzBo3Z2w==}
+ /postcss-ordered-values@5.1.3(postcss@8.4.23):
+ resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.0.0_postcss@8.4.14
- postcss: 8.4.14
+ cssnano-utils: 3.1.0(postcss@8.4.23)
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-ordered-values/5.1.3_postcss@8.4.16:
- resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-ordered-values@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.16
- postcss: 8.4.16
+ cssnano-utils: 4.0.0(postcss@8.4.23)
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-overflow-shorthand/3.0.3_postcss@8.4.14:
- resolution: {integrity: sha512-CxZwoWup9KXzQeeIxtgOciQ00tDtnylYIlJBBODqkgS/PU2jISuWOL/mYLHmZb9ZhZiCaNKsCRiLp22dZUtNsg==}
+ /postcss-overflow-shorthand@3.0.4(postcss@8.4.16):
+ resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
+ postcss-value-parser: 4.2.0
dev: false
- /postcss-page-break/3.0.4_postcss@8.4.14:
+ /postcss-page-break@3.0.4(postcss@8.4.16):
resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
peerDependencies:
postcss: ^8
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
dev: false
- /postcss-place/7.0.4_postcss@8.4.14:
- resolution: {integrity: sha512-MrgKeiiu5OC/TETQO45kV3npRjOFxEHthsqGtkh3I1rPbZSbXGD/lZVi9j13cYh+NA8PIAPyk6sGjT9QbRyvSg==}
+ /postcss-place@7.0.5(postcss@8.4.16):
+ resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-preset-env/7.5.0_postcss@8.4.14:
- resolution: {integrity: sha512-0BJzWEfCdTtK2R3EiKKSdkE51/DI/BwnhlnicSW482Ym6/DGHud8K0wGLcdjip1epVX0HKo4c8zzTeV/SkiejQ==}
- engines: {node: ^12 || ^14 || >=16}
+ /postcss-prefixer@3.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-q5JEBO8KcJheLLK9RezOw6a26Kdvr2bmPXiK2rsU/5G4h/b6lQh2PhmhvTHvogLQnRUgTNGw76WOiIoiJh+2tw==}
+ engines: {node: ^10 || ^12 || >=14}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.0.0
dependencies:
- '@csstools/postcss-color-function': 1.1.0_postcss@8.4.14
- '@csstools/postcss-font-format-keywords': 1.0.0_postcss@8.4.14
- '@csstools/postcss-hwb-function': 1.0.0_postcss@8.4.14
- '@csstools/postcss-ic-unit': 1.0.0_postcss@8.4.14
- '@csstools/postcss-is-pseudo-class': 2.0.3_postcss@8.4.14
- '@csstools/postcss-normalize-display-values': 1.0.0_postcss@8.4.14
- '@csstools/postcss-oklab-function': 1.1.0_postcss@8.4.14
- '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14
- '@csstools/postcss-stepped-value-functions': 1.0.0_postcss@8.4.14
- '@csstools/postcss-unset-value': 1.0.1_postcss@8.4.14
- autoprefixer: 10.4.7_postcss@8.4.14
- browserslist: 4.20.3
- css-blank-pseudo: 3.0.3_postcss@8.4.14
- css-has-pseudo: 3.0.4_postcss@8.4.14
- css-prefers-color-scheme: 6.0.3_postcss@8.4.14
- cssdb: 6.6.1
- postcss: 8.4.14
- postcss-attribute-case-insensitive: 5.0.0_postcss@8.4.14
- postcss-clamp: 4.1.0_postcss@8.4.14
- postcss-color-functional-notation: 4.2.2_postcss@8.4.14
- postcss-color-hex-alpha: 8.0.3_postcss@8.4.14
- postcss-color-rebeccapurple: 7.0.2_postcss@8.4.14
- postcss-custom-media: 8.0.0_postcss@8.4.14
- postcss-custom-properties: 12.1.7_postcss@8.4.14
- postcss-custom-selectors: 6.0.0_postcss@8.4.14
- postcss-dir-pseudo-class: 6.0.4_postcss@8.4.14
- postcss-double-position-gradients: 3.1.1_postcss@8.4.14
- postcss-env-function: 4.0.6_postcss@8.4.14
- postcss-focus-visible: 6.0.4_postcss@8.4.14
- postcss-focus-within: 5.0.4_postcss@8.4.14
- postcss-font-variant: 5.0.0_postcss@8.4.14
- postcss-gap-properties: 3.0.3_postcss@8.4.14
- postcss-image-set-function: 4.0.6_postcss@8.4.14
- postcss-initial: 4.0.1_postcss@8.4.14
- postcss-lab-function: 4.2.0_postcss@8.4.14
- postcss-logical: 5.0.4_postcss@8.4.14
- postcss-media-minmax: 5.0.0_postcss@8.4.14
- postcss-nesting: 10.1.5_postcss@8.4.14
- postcss-opacity-percentage: 1.1.2
- postcss-overflow-shorthand: 3.0.3_postcss@8.4.14
- postcss-page-break: 3.0.4_postcss@8.4.14
- postcss-place: 7.0.4_postcss@8.4.14
- postcss-pseudo-class-any-link: 7.1.3_postcss@8.4.14
- postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.14
- postcss-selector-not: 5.0.0_postcss@8.4.14
+ css-selector-tokenizer: 0.7.3
+ postcss: 8.4.23
+ dev: true
+
+ /postcss-preset-env@7.8.3(postcss@8.4.16):
+ resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.16)
+ '@csstools/postcss-color-function': 1.1.1(postcss@8.4.16)
+ '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.16)
+ '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.16)
+ '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.16)
+ '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.16)
+ '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.16)
+ '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.16)
+ '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.16)
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.16)
+ '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.16)
+ '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.16)
+ '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.16)
+ '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.16)
+ autoprefixer: 10.4.14(postcss@8.4.16)
+ browserslist: 4.21.5
+ css-blank-pseudo: 3.0.3(postcss@8.4.16)
+ css-has-pseudo: 3.0.4(postcss@8.4.16)
+ css-prefers-color-scheme: 6.0.3(postcss@8.4.16)
+ cssdb: 7.6.0
+ postcss: 8.4.16
+ postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.16)
+ postcss-clamp: 4.1.0(postcss@8.4.16)
+ postcss-color-functional-notation: 4.2.4(postcss@8.4.16)
+ postcss-color-hex-alpha: 8.0.4(postcss@8.4.16)
+ postcss-color-rebeccapurple: 7.1.1(postcss@8.4.16)
+ postcss-custom-media: 8.0.2(postcss@8.4.16)
+ postcss-custom-properties: 12.1.11(postcss@8.4.16)
+ postcss-custom-selectors: 6.0.3(postcss@8.4.16)
+ postcss-dir-pseudo-class: 6.0.5(postcss@8.4.16)
+ postcss-double-position-gradients: 3.1.2(postcss@8.4.16)
+ postcss-env-function: 4.0.6(postcss@8.4.16)
+ postcss-focus-visible: 6.0.4(postcss@8.4.16)
+ postcss-focus-within: 5.0.4(postcss@8.4.16)
+ postcss-font-variant: 5.0.0(postcss@8.4.16)
+ postcss-gap-properties: 3.0.5(postcss@8.4.16)
+ postcss-image-set-function: 4.0.7(postcss@8.4.16)
+ postcss-initial: 4.0.1(postcss@8.4.16)
+ postcss-lab-function: 4.2.1(postcss@8.4.16)
+ postcss-logical: 5.0.4(postcss@8.4.16)
+ postcss-media-minmax: 5.0.0(postcss@8.4.16)
+ postcss-nesting: 10.2.0(postcss@8.4.16)
+ postcss-opacity-percentage: 1.1.3(postcss@8.4.16)
+ postcss-overflow-shorthand: 3.0.4(postcss@8.4.16)
+ postcss-page-break: 3.0.4(postcss@8.4.16)
+ postcss-place: 7.0.5(postcss@8.4.16)
+ postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.16)
+ postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.16)
+ postcss-selector-not: 6.0.1(postcss@8.4.16)
postcss-value-parser: 4.2.0
dev: false
- /postcss-pseudo-class-any-link/7.1.3_postcss@8.4.14:
- resolution: {integrity: sha512-I9Yp1VV2r8xFwg/JrnAlPCcKmutv6f6Ig6/CHFPqGJiDgYXM9C+0kgLfK4KOXbKNw+63QYl4agRUB0Wi9ftUIg==}
+ /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.16):
+ resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
- postcss: ^8.4
+ postcss: ^8.2
dependencies:
- postcss: 8.4.14
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-reduce-initial/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-v/kbAAQ+S1V5v9TJvbGkV98V2ERPdU6XvMcKMjqAlYiJ2NtsHGlKYLPjWWcXlaTKNxooId7BGxeraK8qXvzKtw==}
+ /postcss-reduce-initial@5.1.2(postcss@8.4.23):
+ resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.1
+ browserslist: 4.21.5
caniuse-api: 3.0.0
- postcss: 8.4.14
+ postcss: 8.4.23
dev: false
- /postcss-reduce-initial/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-reduce-initial@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.3
+ browserslist: 4.21.5
caniuse-api: 3.0.0
- postcss: 8.4.16
+ postcss: 8.4.23
- /postcss-reduce-transforms/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-25HeDeFsgiPSUx69jJXZn8I06tMxLQJJNF5h7i9gsUg8iP4KOOJ8EX8fj3seeoLt3SLU2YDD6UPnDYVGUO7DEA==}
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-transforms/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-reduce-transforms@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.14:
+ /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.16):
resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
peerDependencies:
postcss: ^8.0.3
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
dev: false
- /postcss-selector-not/5.0.0_postcss@8.4.14:
- resolution: {integrity: sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==}
+ /postcss-reporter@7.0.5(postcss@8.4.16):
+ resolution: {integrity: sha512-glWg7VZBilooZGOFPhN9msJ3FQs19Hie7l5a/eE6WglzYqVeH3ong3ShFcp9kDWJT1g2Y/wd59cocf9XxBtkWA==}
+ engines: {node: '>=10'}
peerDependencies:
postcss: ^8.1.0
dependencies:
- balanced-match: 1.0.2
- postcss: 8.4.14
- dev: false
-
- /postcss-selector-parser/6.0.10:
- resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
- engines: {node: '>=4'}
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
+ picocolors: 1.0.0
+ postcss: 8.4.16
+ thenby: 1.3.4
+ dev: true
- /postcss-selector-parser/6.0.8:
- resolution: {integrity: sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==}
- engines: {node: '>=4'}
+ /postcss-selector-not@6.0.1(postcss@8.4.16):
+ resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
+ postcss: 8.4.16
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-selector-parser/6.0.9:
- resolution: {integrity: sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==}
+ /postcss-selector-parser@6.0.13:
+ resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- dev: false
- /postcss-svgo/5.0.3_postcss@8.4.14:
- resolution: {integrity: sha512-41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA==}
+ /postcss-svgo@5.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
svgo: 2.8.0
dev: false
- /postcss-svgo/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-svgo@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==}
+ engines: {node: ^14 || ^16 || >= 18}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- svgo: 2.8.0
+ svgo: 3.0.2
- /postcss-unique-selectors/5.0.2_postcss@8.4.14:
- resolution: {integrity: sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==}
+ /postcss-unique-selectors@5.1.1(postcss@8.4.23):
+ resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- alphanum-sort: 1.0.2
- postcss: 8.4.14
- postcss-selector-parser: 6.0.8
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
dev: false
- /postcss-unique-selectors/5.1.1_postcss@8.4.16:
- resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /postcss-unique-selectors@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.16
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
- /postcss-value-parser/4.2.0:
+ /postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss/7.0.39:
+ /postcss@7.0.39:
resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -15942,24 +14628,23 @@ packages:
source-map: 0.6.1
dev: false
- /postcss/8.4.14:
- resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
+ /postcss@8.4.16:
+ resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.4
+ nanoid: 3.3.6
picocolors: 1.0.0
source-map-js: 1.0.2
- dev: false
- /postcss/8.4.16:
- resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==}
+ /postcss@8.4.23:
+ resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.4
+ nanoid: 3.3.6
picocolors: 1.0.0
source-map-js: 1.0.2
- /preferred-pm/3.0.3:
+ /preferred-pm@3.0.3:
resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==}
engines: {node: '>=10'}
dependencies:
@@ -15969,40 +14654,33 @@ packages:
which-pm: 2.0.0
dev: true
- /prelude-ls/1.1.2:
+ /prelude-ls@1.1.2:
resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
engines: {node: '>= 0.8.0'}
dev: false
- /prelude-ls/1.2.1:
+ /prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- /prettier/1.19.1:
- resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
-
- /prettier/2.7.1:
+ /prettier@2.7.1:
resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
- /pretty-bytes/5.6.0:
+ /pretty-bytes@5.6.0:
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
engines: {node: '>=6'}
dev: false
- /pretty-error/4.0.0:
+ /pretty-error@4.0.0:
resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
dependencies:
lodash: 4.17.21
renderkid: 3.0.0
- dev: false
- /pretty-format/27.5.1:
+ /pretty-format@27.5.1:
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -16010,17 +14688,7 @@ packages:
ansi-styles: 5.2.0
react-is: 17.0.2
- /pretty-format/28.1.0:
- resolution: {integrity: sha512-79Z4wWOYCdvQkEoEuSlBhHJqWeZ8D8YRPiPctJFCtvuaClGpiwiQYSCUOE6IEKUbbFukKOTFIUAXE8N4EQTo1Q==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@jest/schemas': 28.0.2
- ansi-regex: 5.0.1
- ansi-styles: 5.2.0
- react-is: 18.1.0
- dev: false
-
- /pretty-format/28.1.3:
+ /pretty-format@28.1.3:
resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -16029,38 +14697,37 @@ packages:
ansi-styles: 5.2.0
react-is: 18.2.0
- /prism-react-renderer/1.3.5:
+ /pretty-hrtime@1.0.3:
+ resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /prism-react-renderer@1.3.5(react@18.2.0):
resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==}
peerDependencies:
react: '>=0.14.9'
+ dependencies:
+ react: 18.2.0
dev: false
- /process-nextick-args/2.0.1:
+ /process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
dev: false
- /promise/8.1.0:
- resolution: {integrity: sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==}
+ /promise@8.3.0:
+ resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
dependencies:
asap: 2.0.6
dev: false
- /prompts/2.4.2:
+ /prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
dependencies:
kleur: 3.0.3
sisteransi: 1.0.5
- /prop-types/15.7.2:
- resolution: {integrity: sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==}
- dependencies:
- loose-envify: 1.4.0
- object-assign: 4.1.1
- react-is: 16.13.1
- dev: false
-
- /prop-types/15.8.1:
+ /prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
loose-envify: 1.4.0
@@ -16068,17 +14735,17 @@ packages:
react-is: 16.13.1
dev: false
- /property-information/5.6.0:
+ /property-information@5.6.0:
resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
dependencies:
xtend: 4.0.2
dev: false
- /property-information/6.1.1:
- resolution: {integrity: sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w==}
+ /property-information@6.2.0:
+ resolution: {integrity: sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==}
dev: false
- /proxy-addr/2.0.7:
+ /proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
dependencies:
@@ -16086,83 +14753,74 @@ packages:
ipaddr.js: 1.9.1
dev: false
- /pseudomap/1.0.2:
+ /pseudomap@1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
dev: true
- /psl/1.8.0:
- resolution: {integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==}
+ /psl@1.9.0:
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
dev: false
- /punycode/2.1.1:
- resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
+ /punycode@2.3.0:
+ resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
- /q/1.5.1:
- resolution: {integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=}
+ /q@1.5.1:
+ resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
dev: false
- /qs-lite/0.0.3:
+ /qs-lite@0.0.3:
resolution: {integrity: sha512-u8BCp4VR8/HIuuECEw77x7Jruc0DhoFZAtuXWsm/gNctzBMQaEOujdZYtJt0VJPzFEXfHH6REFVD36i0nh7H+g==}
dev: false
- /qs/6.10.3:
- resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==}
+ /qs@6.11.0:
+ resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
engines: {node: '>=0.6'}
dependencies:
side-channel: 1.0.4
dev: false
- /qs/6.7.0:
- resolution: {integrity: sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==}
+ /qs@6.11.2:
+ resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==}
engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.4
dev: true
- /qs/6.9.7:
- resolution: {integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==}
- engines: {node: '>=0.6'}
+ /querystringify@2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
dev: false
- /queue-microtask/1.2.3:
+ /queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- /quick-lru/4.0.1:
+ /quick-lru@4.0.1:
resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
engines: {node: '>=8'}
dev: true
- /quick-lru/5.1.1:
+ /quick-lru@5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
- /raf/3.4.1:
+ /raf@3.4.1:
resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==}
dependencies:
performance-now: 2.1.0
dev: false
- /randombytes/2.1.0:
+ /randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
dependencies:
safe-buffer: 5.2.1
- /range-parser/1.2.1:
+ /range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
dev: false
- /raw-body/2.4.3:
- resolution: {integrity: sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==}
- engines: {node: '>= 0.8'}
- dependencies:
- bytes: 3.1.2
- http-errors: 1.8.1
- iconv-lite: 0.4.24
- unpipe: 1.0.0
- dev: false
-
- /raw-body/2.5.1:
+ /raw-body@2.5.1:
resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
engines: {node: '>= 0.8'}
dependencies:
@@ -16172,33 +14830,39 @@ packages:
unpipe: 1.0.0
dev: false
- /re-resizable/6.9.9:
+ /re-resizable@6.9.9(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-l+MBlKZffv/SicxDySKEEh42hR6m5bAHfNu3Tvxks2c4Ah+ldnWjfnVRwxo/nxF27SsUsxDS0raAzFuJNKABXA==}
peerDependencies:
react: ^16.13.1 || ^17.0.0 || ^18.0.0
react-dom: ^16.13.1 || ^17.0.0 || ^18.0.0
+ dependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /react-app-polyfill/3.0.0:
+ /react-app-polyfill@3.0.0:
resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==}
engines: {node: '>=14'}
dependencies:
- core-js: 3.22.5
+ core-js: 3.30.2
object-assign: 4.1.1
- promise: 8.1.0
+ promise: 8.3.0
raf: 3.4.1
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
whatwg-fetch: 3.6.2
dev: false
- /react-colorful/5.5.1:
- resolution: {integrity: sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==}
+ /react-colorful@5.6.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
+ dependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /react-dev-utils/12.0.1_h7bnoe4qg5b6m7aryrp7j5hcru:
+ /react-dev-utils@12.0.1(eslint@8.43.0)(typescript@4.6.4)(webpack@5.84.0):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -16208,46 +14872,46 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/code-frame': 7.16.7
- address: 1.2.0
- browserslist: 4.20.3
+ '@babel/code-frame': 7.21.4
+ address: 1.2.2
+ browserslist: 4.21.5
chalk: 4.1.2
cross-spawn: 7.0.3
detect-port-alt: 1.1.6
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.2_h7bnoe4qg5b6m7aryrp7j5hcru
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.43.0)(typescript@4.6.4)(webpack@5.84.0)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
- immer: 9.0.14
+ immer: 9.0.21
is-root: 2.1.0
- loader-utils: 3.2.0
+ loader-utils: 3.2.1
open: 8.4.0
pkg-up: 3.1.0
prompts: 2.4.2
react-error-overlay: 6.0.11
- recursive-readdir: 2.2.2
- shell-quote: 1.7.3
+ recursive-readdir: 2.2.3
+ shell-quote: 1.8.1
strip-ansi: 6.0.1
text-table: 0.2.0
typescript: 4.6.4
- webpack: 5.73.0
+ webpack: 5.84.0
transitivePeerDependencies:
- eslint
- supports-color
- vue-template-compiler
dev: false
- /react-docgen-typescript/2.2.2_typescript@4.6.4:
+ /react-docgen-typescript@2.2.2(typescript@4.6.4):
resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==}
peerDependencies:
typescript: '>= 4.3.x'
dependencies:
typescript: 4.6.4
- /react-dom/18.2.0_react@18.2.0:
+ /react-dom@18.2.0(react@18.2.0):
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
peerDependencies:
react: ^18.2.0
@@ -16256,35 +14920,37 @@ packages:
react: 18.2.0
scheduler: 0.23.0
- /react-error-boundary/3.1.4:
+ /react-error-boundary@3.1.4(react@18.2.0):
resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==}
engines: {node: '>=10', npm: '>=6'}
peerDependencies:
react: '>=16.13.1'
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.21.5
+ react: 18.2.0
dev: false
- /react-error-overlay/6.0.11:
+ /react-error-overlay@6.0.11:
resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
dev: false
- /react-fast-compare/3.2.0:
- resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==}
+ /react-fast-compare@3.2.2:
+ resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
dev: false
- /react-helmet/6.1.0:
+ /react-helmet@6.1.0(react@18.2.0):
resolution: {integrity: sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==}
peerDependencies:
react: '>=16.3.0'
dependencies:
object-assign: 4.1.1
- prop-types: 15.7.2
- react-fast-compare: 3.2.0
- react-side-effect: 2.1.1
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-fast-compare: 3.2.2
+ react-side-effect: 2.1.2(react@18.2.0)
dev: false
- /react-highlight-words/0.18.0:
+ /react-highlight-words@0.18.0(react@18.2.0):
resolution: {integrity: sha512-5z+46eLPjB4JWgOhuQ0E+6iUPTD1U3amiy5KKjzZmeJ5zyvHr91hnzBT3UHya/KlySm5KRTKpYpba9vs67oO2A==}
peerDependencies:
react: ^0.14.0 || ^15.0.0 || ^16.0.0-0 || ^17.0.0-0 || ^18.0.0-0
@@ -16292,9 +14958,10 @@ packages:
highlight-words-core: 1.2.2
memoize-one: 4.0.3
prop-types: 15.8.1
+ react: 18.2.0
dev: false
- /react-hook-form/7.34.0_react@18.2.0:
+ /react-hook-form@7.34.0(react@18.2.0):
resolution: {integrity: sha512-s0/TJ09NVlEk2JPp3yit1WnMuPNBXFmUKEQPulgDi9pYBw/ZmmAFHe6AXWq73Y+kp8ye4OcMf0Jv+i/qLPektg==}
engines: {node: '>=12.22.0'}
peerDependencies:
@@ -16303,72 +14970,32 @@ packages:
react: 18.2.0
dev: false
- /react-is/16.13.1:
+ /react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
dev: false
- /react-is/17.0.2:
+ /react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- /react-is/18.1.0:
- resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
- dev: false
-
- /react-is/18.2.0:
+ /react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- /react-lazy-with-preload/2.2.0:
- resolution: {integrity: sha512-RTfSfVIzRB3yRTWXcxGraZ3tyI7Mls1cA4X6ekIXT1XlLIe+KLTH2iNEFHtKCHk0JSWl0NrS77Rysueqs7picw==}
- dev: false
-
- /react-query/3.39.1:
- resolution: {integrity: sha512-qYKT1bavdDiQZbngWZyPotlBVzcBjDYEJg5RQLBa++5Ix5jjfbEYJmHSZRZD+USVHUSvl/ey9Hu+QfF1QAK80A==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: '*'
- react-native: '*'
- peerDependenciesMeta:
- react-dom:
- optional: true
- react-native:
- optional: true
- dependencies:
- '@babel/runtime': 7.18.9
- broadcast-channel: 3.7.0
- match-sorter: 6.3.1
- dev: true
-
- /react-query/3.39.1_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-qYKT1bavdDiQZbngWZyPotlBVzcBjDYEJg5RQLBa++5Ix5jjfbEYJmHSZRZD+USVHUSvl/ey9Hu+QfF1QAK80A==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: '*'
- react-native: '*'
- peerDependenciesMeta:
- react-dom:
- optional: true
- react-native:
- optional: true
- dependencies:
- '@babel/runtime': 7.18.9
- broadcast-channel: 3.7.0
- match-sorter: 6.3.1
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ /react-lazy-with-preload@2.2.1:
+ resolution: {integrity: sha512-ONSb8gizLE5jFpdHAclZ6EAAKuFX2JydnFXPPPjoUImZlLjGtKzyBS8SJgJq7CpLgsGKh9QCZdugJyEEOVC16Q==}
dev: false
- /react-refresh/0.11.0:
+ /react-refresh@0.11.0:
resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==}
engines: {node: '>=0.10.0'}
dev: false
- /react-refresh/0.14.0:
+ /react-refresh@0.14.0:
resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
engines: {node: '>=0.10.0'}
dev: false
- /react-remove-scroll-bar/2.3.3:
- resolution: {integrity: sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw==}
+ /react-remove-scroll-bar@2.3.4(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -16377,12 +15004,14 @@ packages:
'@types/react':
optional: true
dependencies:
- react-style-singleton: 2.2.1
+ '@types/react': 18.0.16
+ react: 18.2.0
+ react-style-singleton: 2.2.1(@types/react@18.0.16)(react@18.2.0)
tslib: 2.4.0
dev: false
- /react-remove-scroll/2.5.4:
- resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==}
+ /react-remove-scroll@2.5.5(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -16391,91 +15020,97 @@ packages:
'@types/react':
optional: true
dependencies:
- react-remove-scroll-bar: 2.3.3
- react-style-singleton: 2.2.1
+ '@types/react': 18.0.16
+ react: 18.2.0
+ react-remove-scroll-bar: 2.3.4(@types/react@18.0.16)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.0.16)(react@18.2.0)
tslib: 2.4.0
- use-callback-ref: 1.3.0
- use-sidecar: 1.1.2
+ use-callback-ref: 1.3.0(@types/react@18.0.16)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.0.16)(react@18.2.0)
dev: false
- /react-router-dom/6.3.0:
+ /react-router-dom@6.3.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
history: 5.3.0
- react-router: 6.3.0
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-router: 6.3.0(react@18.2.0)
dev: false
- /react-router/6.3.0:
+ /react-router@6.3.0(react@18.2.0):
resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==}
peerDependencies:
react: '>=16.8'
dependencies:
history: 5.3.0
+ react: 18.2.0
dev: false
- /react-scripts/5.0.1_2bztllcmbkqwlubtmv2ap5hlc4:
+ /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.5)(eslint@8.43.0)(react@18.2.0)(sass@1.62.1)(type-fest@2.18.0)(typescript@4.6.4):
resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==}
engines: {node: '>=14.0.0'}
hasBin: true
peerDependencies:
+ eslint: '*'
react: '>= 16'
typescript: ^3.2.1 || ^4
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@babel/core': 7.18.5
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.7_4jvxdnb7sc745pzzmlwaxpqw2m
+ '@babel/core': 7.18.10
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.7(react-refresh@0.11.0)(type-fest@2.18.0)(webpack-dev-server@4.9.3)(webpack@5.84.0)
'@svgr/webpack': 5.5.0
- babel-jest: 27.5.1_@babel+core@7.18.5
- babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke
- babel-plugin-named-asset-import: 0.3.8_@babel+core@7.18.5
+ babel-jest: 27.5.1(@babel/core@7.18.10)
+ babel-loader: 8.2.5(@babel/core@7.18.10)(webpack@5.84.0)
+ babel-plugin-named-asset-import: 0.3.8(@babel/core@7.18.10)
babel-preset-react-app: 10.0.1
bfj: 7.0.2
- browserslist: 4.20.3
+ browserslist: 4.21.5
camelcase: 6.3.0
case-sensitive-paths-webpack-plugin: 2.4.0
- css-loader: 6.7.1_webpack@5.73.0
- css-minimizer-webpack-plugin: 3.4.1_webpack@5.73.0
+ css-loader: 6.7.4(webpack@5.84.0)
+ css-minimizer-webpack-plugin: 3.4.1(webpack@5.84.0)
dotenv: 10.0.0
dotenv-expand: 5.1.0
eslint: 8.43.0
- eslint-config-react-app: 7.0.1_vn3pi5swrhxnvt6h7ahlpfzyoa
- eslint-webpack-plugin: 3.1.1_xskiyb2ulvvvkw3jfu2r7gejyu
- file-loader: 6.2.0_webpack@5.73.0
+ eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.5)(eslint@8.43.0)(jest@27.5.1)(typescript@4.6.4)
+ eslint-webpack-plugin: 3.2.0(eslint@8.43.0)(webpack@5.84.0)
+ file-loader: 6.2.0(webpack@5.84.0)
fs-extra: 10.1.0
- html-webpack-plugin: 5.5.0_webpack@5.73.0
+ html-webpack-plugin: 5.5.0(webpack@5.84.0)
identity-obj-proxy: 3.0.0
jest: 27.5.1
jest-resolve: 27.5.1
- jest-watch-typeahead: 1.1.0_jest@27.5.1
- mini-css-extract-plugin: 2.6.1_webpack@5.73.0
- postcss: 8.4.14
- postcss-flexbugs-fixes: 5.0.2_postcss@8.4.14
- postcss-loader: 6.2.1_mepnsno3xmng6eyses4tepu7bu
- postcss-normalize: 10.0.1_45omf6eai42q3ceghea5lhdztm
- postcss-preset-env: 7.5.0_postcss@8.4.14
+ jest-watch-typeahead: 1.1.0(jest@27.5.1)
+ mini-css-extract-plugin: 2.7.6(webpack@5.84.0)
+ postcss: 8.4.16
+ postcss-flexbugs-fixes: 5.0.2(postcss@8.4.16)
+ postcss-loader: 6.2.1(postcss@8.4.16)(webpack@5.84.0)
+ postcss-normalize: 10.0.1(browserslist@4.21.5)(postcss@8.4.16)
+ postcss-preset-env: 7.8.3(postcss@8.4.16)
prompts: 2.4.2
react: 18.2.0
react-app-polyfill: 3.0.0
- react-dev-utils: 12.0.1_h7bnoe4qg5b6m7aryrp7j5hcru
+ react-dev-utils: 12.0.1(eslint@8.43.0)(typescript@4.6.4)(webpack@5.84.0)
react-refresh: 0.11.0
- resolve: 1.22.0
+ resolve: 1.22.2
resolve-url-loader: 4.0.0
- sass-loader: 12.6.0_sass@1.54.3+webpack@5.73.0
- semver: 7.3.7
- source-map-loader: 3.0.1_webpack@5.73.0
- style-loader: 3.3.1_webpack@5.73.0
- tailwindcss: 3.1.8
- terser-webpack-plugin: 5.3.1_webpack@5.73.0
+ sass-loader: 12.6.0(sass@1.62.1)(webpack@5.84.0)
+ semver: 7.5.1
+ source-map-loader: 3.0.2(webpack@5.84.0)
+ style-loader: 3.3.3(webpack@5.84.0)
+ tailwindcss: 3.1.8(postcss@8.4.16)
+ terser-webpack-plugin: 5.3.9(webpack@5.84.0)
typescript: 4.6.4
- webpack: 5.73.0
- webpack-dev-server: 4.9.2_webpack@5.73.0
- webpack-manifest-plugin: 4.1.1_webpack@5.73.0
- workbox-webpack-plugin: 6.5.3_webpack@5.73.0
+ webpack: 5.84.0
+ webpack-dev-server: 4.9.3(webpack@5.84.0)
+ webpack-manifest-plugin: 4.1.1(webpack@5.84.0)
+ workbox-webpack-plugin: 6.5.4(webpack@5.84.0)
optionalDependencies:
fsevents: 2.3.2
transitivePeerDependencies:
@@ -16512,20 +15147,25 @@ packages:
- webpack-plugin-serve
dev: false
- /react-side-effect/2.1.1:
- resolution: {integrity: sha512-2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ==}
+ /react-side-effect@2.1.2(react@18.2.0):
+ resolution: {integrity: sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==}
peerDependencies:
- react: ^16.3.0 || ^17.0.0
+ react: ^16.3.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ react: 18.2.0
dev: false
- /react-simple-code-editor/0.11.2:
+ /react-simple-code-editor@0.11.2(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-vLMEDj+qLrZ88zK/8bhRdqM2Mp0cQJCUbHPc/QIfxlIYHzAclaAzPX0TQ4ZI5LTYSP3hsYYOT3EciV2dCG4o0Q==}
peerDependencies:
react: '*'
react-dom: '*'
+ dependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: true
- /react-style-singleton/2.2.1:
+ /react-style-singleton@2.2.1(@types/react@18.0.16)(react@18.2.0):
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -16535,50 +15175,39 @@ packages:
'@types/react':
optional: true
dependencies:
+ '@types/react': 18.0.16
get-nonce: 1.0.1
invariant: 2.2.4
+ react: 18.2.0
tslib: 2.4.0
dev: false
- /react-textarea-autosize/8.3.4:
- resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==}
- engines: {node: '>=10'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- '@babel/runtime': 7.18.9
- use-composed-ref: 1.3.0
- use-latest: 1.2.1
- transitivePeerDependencies:
- - '@types/react'
- dev: false
-
- /react-textarea-autosize/8.3.4_react@18.2.0:
+ /react-textarea-autosize@8.3.4(@types/react@18.0.16)(react@18.2.0):
resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==}
engines: {node: '>=10'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.21.5
react: 18.2.0
- use-composed-ref: 1.3.0_react@18.2.0
- use-latest: 1.2.1_react@18.2.0
+ use-composed-ref: 1.3.0(react@18.2.0)
+ use-latest: 1.2.1(@types/react@18.0.16)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
dev: false
- /react/18.2.0:
+ /react@18.2.0:
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
- /read-cache/1.0.0:
+ /read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
dependencies:
pify: 2.3.0
- /read-pkg-up/7.0.1:
+ /read-pkg-up@7.0.1:
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
engines: {node: '>=8'}
dependencies:
@@ -16587,7 +15216,7 @@ packages:
type-fest: 0.8.1
dev: true
- /read-pkg/5.2.0:
+ /read-pkg@5.2.0:
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
engines: {node: '>=8'}
dependencies:
@@ -16597,18 +15226,18 @@ packages:
type-fest: 0.6.0
dev: true
- /read-yaml-file/1.1.0:
+ /read-yaml-file@1.1.0:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
js-yaml: 3.14.1
pify: 4.0.1
strip-bom: 3.0.0
dev: true
- /readable-stream/2.3.7:
- resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
+ /readable-stream@2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
core-util-is: 1.0.3
inherits: 2.0.4
@@ -16619,101 +15248,81 @@ packages:
util-deprecate: 1.0.2
dev: false
- /readable-stream/3.6.0:
- resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
+ /readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
- /readdirp/3.6.0:
+ /readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
- /recursive-readdir/2.2.2:
- resolution: {integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==}
- engines: {node: '>=0.10.0'}
+ /recursive-readdir@2.2.3:
+ resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==}
+ engines: {node: '>=6.0.0'}
dependencies:
- minimatch: 3.0.4
+ minimatch: 3.1.2
dev: false
- /redent/3.0.0:
+ /redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
dependencies:
indent-string: 4.0.0
strip-indent: 3.0.0
- /regenerate-unicode-properties/10.0.1:
- resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==}
+ /regenerate-unicode-properties@10.1.0:
+ resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
- /regenerate/1.4.2:
+ /regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- /regenerator-runtime/0.13.9:
- resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
+ /regenerator-runtime@0.13.11:
+ resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
- /regenerator-transform/0.15.0:
- resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
+ /regenerator-transform@0.15.1:
+ resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.21.5
- /regex-parser/2.2.11:
+ /regex-parser@2.2.11:
resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==}
dev: false
- /regexp.prototype.flags/1.4.3:
- resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
+ /regexp.prototype.flags@1.5.0:
+ resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
+ define-properties: 1.2.0
functions-have-names: 1.2.3
- /regexpp/3.2.0:
- resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
- engines: {node: '>=8'}
- dev: false
-
- /regexpu-core/5.0.1:
- resolution: {integrity: sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==}
- engines: {node: '>=4'}
- dependencies:
- regenerate: 1.4.2
- regenerate-unicode-properties: 10.0.1
- regjsgen: 0.6.0
- regjsparser: 0.8.4
- unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.0.0
- dev: false
-
- /regexpu-core/5.1.0:
- resolution: {integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==}
+ /regexpu-core@5.3.2:
+ resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
dependencies:
+ '@babel/regjsgen': 0.8.0
regenerate: 1.4.2
- regenerate-unicode-properties: 10.0.1
- regjsgen: 0.6.0
- regjsparser: 0.8.4
+ regenerate-unicode-properties: 10.1.0
+ regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.0.0
-
- /regjsgen/0.6.0:
- resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==}
+ unicode-match-property-value-ecmascript: 2.1.0
- /regjsparser/0.8.4:
- resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==}
+ /regjsparser@0.9.1:
+ resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
dependencies:
jsesc: 0.5.0
- /rehype-mdx-title/1.0.0:
+ /rehype-mdx-title@1.0.0:
resolution: {integrity: sha512-5B/53Y+KQHm4/nrE6pIIPc9Ie2fbPMCLs8WwMGYWWHr+5g3TkmEijRkr8TGYHULtc+C7bOoPR8LIF5DpGROIDg==}
engines: {node: '>=12.2.0'}
dependencies:
@@ -16722,7 +15331,7 @@ packages:
unist-util-visit: 2.0.3
dev: false
- /rehype-slug/4.0.1:
+ /rehype-slug@4.0.1:
resolution: {integrity: sha512-KIlJALf9WfHFF21icwTd2yI2IP+RQRweaxH9ChVGQwRYy36+hiomG4ZSe0yQRyCt+D/vE39LbAcOI/h4O4GPhA==}
dependencies:
github-slugger: 1.4.0
@@ -16732,19 +15341,18 @@ packages:
unist-util-visit: 2.0.3
dev: false
- /relateurl/0.2.7:
- resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=}
+ /relateurl@0.2.7:
+ resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
- dev: false
- /remark-frontmatter/3.0.0:
+ /remark-frontmatter@3.0.0:
resolution: {integrity: sha512-mSuDd3svCHs+2PyO29h7iijIZx4plX0fheacJcAoYAASfgzgVIcXGYSq9GFyYocFLftQs8IOmmkgtOovs6d4oA==}
dependencies:
mdast-util-frontmatter: 0.2.0
micromark-extension-frontmatter: 0.2.2
dev: false
- /remark-gfm/1.0.0:
+ /remark-gfm@1.0.0:
resolution: {integrity: sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==}
dependencies:
mdast-util-gfm: 0.1.2
@@ -16753,7 +15361,7 @@ packages:
- supports-color
dev: false
- /remark-mdx-frontmatter/1.1.1:
+ /remark-mdx-frontmatter@1.1.1:
resolution: {integrity: sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==}
engines: {node: '>=12.2.0'}
dependencies:
@@ -16763,17 +15371,17 @@ packages:
toml: 3.0.0
dev: false
- /remark-parse/10.0.1:
- resolution: {integrity: sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==}
+ /remark-parse@10.0.2:
+ resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
dependencies:
'@types/mdast': 3.0.10
- mdast-util-from-markdown: 1.2.0
+ mdast-util-from-markdown: 1.3.0
unified: 10.1.2
transitivePeerDependencies:
- supports-color
dev: false
- /remark-parse/9.0.0:
+ /remark-parse@9.0.0:
resolution: {integrity: sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==}
dependencies:
mdast-util-from-markdown: 0.8.5
@@ -16781,73 +15389,73 @@ packages:
- supports-color
dev: false
- /remark-rehype/10.1.0:
+ /remark-rehype@10.1.0:
resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
dependencies:
'@types/hast': 2.3.4
'@types/mdast': 3.0.10
- mdast-util-to-hast: 12.1.1
+ mdast-util-to-hast: 12.3.0
unified: 10.1.2
dev: false
- /remark-stringify/9.0.1:
+ /remark-stringify@9.0.1:
resolution: {integrity: sha512-mWmNg3ZtESvZS8fv5PTvaPckdL4iNlCHTt8/e/8oN08nArHRHjNZMKzA/YW3+p7/lYqIw4nx1XsjCBo/AxNChg==}
dependencies:
mdast-util-to-markdown: 0.6.5
dev: false
- /remove-accents/0.4.2:
+ /remove-accents@0.4.2:
resolution: {integrity: sha1-CkPTqq4egNuRngeuJUsoXZ4ce7U=}
+ dev: false
- /renderkid/3.0.0:
+ /renderkid@3.0.0:
resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
dependencies:
- css-select: 4.2.0
+ css-select: 4.3.0
dom-converter: 0.2.0
htmlparser2: 6.1.0
lodash: 4.17.21
strip-ansi: 6.0.1
- dev: false
- /repeat-string/1.6.1:
- resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=}
+ /repeat-string@1.6.1:
+ resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
dev: false
- /require-directory/2.1.1:
+ /require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
- /require-from-string/2.0.2:
+ /require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
- /require-like/0.1.2:
+ /require-like@0.1.2:
resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==}
dev: true
- /require-main-filename/2.0.0:
+ /require-main-filename@2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
dev: true
- /requires-port/1.0.0:
- resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=}
+ /requires-port@1.0.0:
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
- /resolve-cwd/3.0.0:
+ /resolve-cwd@3.0.0:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
engines: {node: '>=8'}
dependencies:
resolve-from: 5.0.0
- /resolve-from/4.0.0:
+ /resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- /resolve-from/5.0.0:
+ /resolve-from@5.0.0:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
- /resolve-url-loader/4.0.0:
+ /resolve-url-loader@4.0.0:
resolution: {integrity: sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==}
engines: {node: '>=8.9'}
peerDependencies:
@@ -16860,162 +15468,150 @@ packages:
optional: true
dependencies:
adjust-sourcemap-loader: 4.0.0
- convert-source-map: 1.8.0
- loader-utils: 2.0.2
+ convert-source-map: 1.9.0
+ loader-utils: 2.0.4
postcss: 7.0.39
source-map: 0.6.1
dev: false
- /resolve.exports/1.1.0:
- resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==}
- engines: {node: '>=10'}
-
- /resolve/1.20.0:
- resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==}
- dependencies:
- is-core-module: 2.8.1
- path-parse: 1.0.7
- dev: true
-
- /resolve/1.22.0:
- resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}
- hasBin: true
- dependencies:
- is-core-module: 2.8.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- dev: false
+ /resolve.exports@1.1.1:
+ resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==}
+ engines: {node: '>=10'}
- /resolve/1.22.1:
- resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
+ /resolve@1.22.2:
+ resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
hasBin: true
dependencies:
- is-core-module: 2.9.0
+ is-core-module: 2.12.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /resolve/2.0.0-next.3:
- resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==}
+ /resolve@2.0.0-next.4:
+ resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
+ hasBin: true
dependencies:
- is-core-module: 2.9.0
+ is-core-module: 2.12.1
path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
dev: false
- /restore-cursor/3.1.0:
+ /restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
- /retry/0.13.1:
+ /retry@0.13.1:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
dev: false
- /reusify/1.0.4:
+ /reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /rifm/0.12.1:
+ /rifm@0.12.1(react@18.2.0):
resolution: {integrity: sha512-OGA1Bitg/dSJtI/c4dh90svzaUPt228kzFsUkJbtA2c964IqEAwWXeL9ZJi86xWv3j5SMqRvGULl7bA6cK0Bvg==}
peerDependencies:
react: '>=16.8'
+ dependencies:
+ react: 18.2.0
dev: false
- /rimraf/2.6.3:
+ /rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
hasBin: true
dependencies:
glob: 7.2.3
dev: false
- /rimraf/3.0.2:
+ /rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
glob: 7.2.3
- /rollup-plugin-terser/7.0.2_rollup@2.75.7:
- resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
- peerDependencies:
- rollup: ^2.0.0
- dependencies:
- '@babel/code-frame': 7.18.6
- jest-worker: 26.6.2
- rollup: 2.75.7
- serialize-javascript: 4.0.0
- terser: 5.13.1
- dev: false
-
- /rollup-plugin-terser/7.0.2_rollup@2.77.2:
+ /rollup-plugin-terser@7.0.2(rollup@2.79.1):
resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
+ deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
peerDependencies:
rollup: ^2.0.0
dependencies:
- '@babel/code-frame': 7.18.6
+ '@babel/code-frame': 7.21.4
jest-worker: 26.6.2
- rollup: 2.77.2
+ rollup: 2.79.1
serialize-javascript: 4.0.0
- terser: 5.13.1
+ terser: 5.17.6
dev: false
- /rollup/2.75.7:
- resolution: {integrity: sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ==}
+ /rollup@2.79.1:
+ resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
engines: {node: '>=10.0.0'}
hasBin: true
optionalDependencies:
fsevents: 2.3.2
dev: false
- /rollup/2.77.2:
- resolution: {integrity: sha512-m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g==}
- engines: {node: '>=10.0.0'}
+ /rollup@3.25.1:
+ resolution: {integrity: sha512-tywOR+rwIt5m2ZAWSe5AIJcTat8vGlnPFAv15ycCrw33t6iFsXZ6mzHVFh2psSjxQPmI+xgzMZZizUAukBI4aQ==}
+ engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
fsevents: 2.3.2
- /run-async/2.4.1:
+ /run-async@2.4.1:
resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
engines: {node: '>=0.12.0'}
- /run-parallel/1.2.0:
+ /run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- /rxjs/7.5.5:
- resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==}
- dependencies:
- tslib: 2.4.0
-
- /rxjs/7.5.6:
- resolution: {integrity: sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==}
+ /rxjs@7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
dependencies:
tslib: 2.4.0
- dev: true
- /sade/1.8.1:
+ /sade@1.8.1:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
dependencies:
mri: 1.2.0
dev: false
- /safe-buffer/5.1.2:
+ /safe-array-concat@1.0.0:
+ resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==}
+ engines: {node: '>=0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.2.1
+ has-symbols: 1.0.3
+ isarray: 2.0.5
+ dev: false
+
+ /safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- /safe-buffer/5.2.1:
+ /safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- /safer-buffer/2.1.2:
+ /safe-regex-test@1.0.0:
+ resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.2.1
+ is-regex: 1.1.4
+
+ /safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- /sanitize.css/13.0.0:
+ /sanitize.css@13.0.0:
resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==}
dev: false
- /sass-loader/12.6.0_sass@1.54.3+webpack@5.73.0:
+ /sass-loader@12.6.0(sass@1.62.1)(webpack@5.84.0):
resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -17034,18 +15630,18 @@ packages:
sass-embedded:
optional: true
dependencies:
- klona: 2.0.5
+ klona: 2.0.6
neo-async: 2.6.2
- sass: 1.54.3
- webpack: 5.73.0
+ sass: 1.62.1
+ webpack: 5.84.0
dev: false
- /sass-loader/13.0.2_webpack@5.74.0:
- resolution: {integrity: sha512-BbiqbVmbfJaWVeOOAu2o7DhYWtcNmTfvroVgFXa6k2hHheMxNAeDHLNoDy/Q5aoaVlz0LH+MbMktKwm9vN/j8Q==}
+ /sass-loader@13.3.0(sass@1.54.3)(webpack@5.84.0):
+ resolution: {integrity: sha512-LeWNswSEujsZnwdn9AuA+Q5wZEAFlU+eORQsDKp35OtGAfFxYxpfk/Ylon+TGGkazSqxi2EHDTqdr3di8r7nCg==}
engines: {node: '>= 14.15.0'}
peerDependencies:
fibers: '>= 3.1.0'
- node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
sass: ^1.3.0
sass-embedded: '*'
webpack: ^5.0.0
@@ -17059,133 +15655,120 @@ packages:
sass-embedded:
optional: true
dependencies:
- klona: 2.0.5
+ klona: 2.0.6
neo-async: 2.6.2
- webpack: 5.74.0_esbuild@0.14.53
+ sass: 1.54.3
+ webpack: 5.84.0(esbuild@0.17.19)
dev: false
- /sass/1.54.3:
+ /sass@1.54.3:
resolution: {integrity: sha512-fLodey5Qd41Pxp/Tk7Al97sViYwF/TazRc5t6E65O7JOk4XF8pzwIW7CvCxYVOfJFFI/1x5+elDyBIixrp+zrw==}
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
chokidar: 3.5.3
- immutable: 4.1.0
+ immutable: 4.3.0
+ source-map-js: 1.0.2
+ dev: false
+
+ /sass@1.62.1:
+ resolution: {integrity: sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+ dependencies:
+ chokidar: 3.5.3
+ immutable: 4.3.0
source-map-js: 1.0.2
- /sax/1.2.4:
+ /sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
dev: false
- /saxes/5.0.1:
+ /saxes@5.0.1:
resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
engines: {node: '>=10'}
dependencies:
xmlchars: 2.2.0
dev: false
- /scheduler/0.23.0:
+ /scheduler@0.23.0:
resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
dependencies:
loose-envify: 1.4.0
- /schema-utils/2.7.0:
+ /schema-utils@2.7.0:
resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
engines: {node: '>= 8.9.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
dev: false
- /schema-utils/2.7.1:
+ /schema-utils@2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
engines: {node: '>= 8.9.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
+ dev: false
- /schema-utils/3.1.1:
- resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
+ /schema-utils@3.1.2:
+ resolution: {integrity: sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
- /schema-utils/4.0.0:
- resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
+ /schema-utils@4.0.1:
+ resolution: {integrity: sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==}
engines: {node: '>= 12.13.0'}
dependencies:
'@types/json-schema': 7.0.11
- ajv: 8.11.0
- ajv-formats: 2.1.1
- ajv-keywords: 5.1.0_ajv@8.11.0
+ ajv: 8.12.0
+ ajv-formats: 2.1.1(ajv@8.12.0)
+ ajv-keywords: 5.1.0(ajv@8.12.0)
- /scroll-into-view-if-needed/2.2.29:
- resolution: {integrity: sha512-hxpAR6AN+Gh53AdAimHM6C8oTN1ppwVZITihix+WqalywBeFcQ6LdQP5ABNl26nX8GTEL7VT+b8lKpdqq65wXg==}
+ /scroll-into-view-if-needed@3.0.10:
+ resolution: {integrity: sha512-t44QCeDKAPf1mtQH3fYpWz8IM/DyvHLjs8wUvvwMYxk5moOqCzrMSxK6HQVD0QVmVjXFavoFIPRVrMuJPKAvtg==}
dependencies:
- compute-scroll-into-view: 1.0.17
+ compute-scroll-into-view: 3.0.3
dev: false
- /secure-compare/3.0.1:
+ /secure-compare@3.0.1:
resolution: {integrity: sha1-8aAymzCLIh+uN7mXTz1XjQypmeM=}
dev: true
- /select-hose/2.0.0:
+ /select-hose@2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
dev: false
- /selfsigned/2.0.1:
- resolution: {integrity: sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==}
+ /selfsigned@2.1.1:
+ resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==}
engines: {node: '>=10'}
dependencies:
node-forge: 1.3.1
dev: false
- /semver/5.7.1:
+ /semver@5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
dev: true
- /semver/6.3.0:
+ /semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
- /semver/7.0.0:
- resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
- hasBin: true
-
- /semver/7.3.7:
- resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
+ /semver@7.5.1:
+ resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
- /send/0.17.2:
- resolution: {integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- debug: 2.6.9
- depd: 1.1.2
- destroy: 1.0.4
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 0.5.2
- http-errors: 1.8.1
- mime: 1.6.0
- ms: 2.1.3
- on-finished: 2.3.0
- range-parser: 1.2.1
- statuses: 1.5.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /send/0.18.0:
+ /send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -17206,18 +15789,18 @@ packages:
- supports-color
dev: false
- /serialize-javascript/4.0.0:
+ /serialize-javascript@4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
dependencies:
randombytes: 2.1.0
dev: false
- /serialize-javascript/6.0.0:
- resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
+ /serialize-javascript@6.0.1:
+ resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
dependencies:
randombytes: 2.1.0
- /serve-index/1.9.1:
+ /serve-index@1.9.1:
resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -17232,19 +15815,7 @@ packages:
- supports-color
dev: false
- /serve-static/1.14.2:
- resolution: {integrity: sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- encodeurl: 1.0.2
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 0.17.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /serve-static/1.15.0:
+ /serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -17256,90 +15827,94 @@ packages:
- supports-color
dev: false
- /set-blocking/2.0.0:
+ /set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
dev: true
- /set-cookie-parser/2.5.0:
- resolution: {integrity: sha512-cHMAtSXilfyBePduZEBVPTCftTQWz6ehWJD5YNUg4mqvRosrrjKbo4WS8JkB0/RxonMoohHm7cOGH60mDkRQ9w==}
+ /set-cookie-parser@2.6.0:
+ resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==}
- /setprototypeof/1.1.0:
+ /setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
dev: false
- /setprototypeof/1.2.0:
+ /setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
dev: false
- /shallow-clone/3.0.1:
+ /shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
dev: false
- /shebang-command/1.2.0:
+ /shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
dependencies:
shebang-regex: 1.0.0
dev: true
- /shebang-command/2.0.0:
+ /shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
- /shebang-regex/1.0.0:
+ /shebang-regex@1.0.0:
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
engines: {node: '>=0.10.0'}
dev: true
- /shebang-regex/3.0.0:
+ /shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /shell-quote/1.7.3:
- resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==}
+ /shell-quote@1.8.1:
+ resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
- /side-channel/1.0.4:
+ /side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.1.1
- object-inspect: 1.12.0
+ get-intrinsic: 1.2.1
+ object-inspect: 1.12.3
- /siginfo/2.0.0:
+ /siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
dev: true
- /signal-exit/3.0.7:
+ /signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- /sisteransi/1.0.5:
+ /sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
- /slash/3.0.0:
+ /slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- /slash/4.0.0:
+ /slash@4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
- dev: false
- /slugify/1.6.5:
+ /slash@5.1.0:
+ resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
+ engines: {node: '>=14.16'}
+ dev: true
+
+ /slugify@1.6.5:
resolution: {integrity: sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==}
engines: {node: '>=8.0.0'}
dev: false
- /smartwrap/2.0.2:
+ /smartwrap@2.0.2:
resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==}
engines: {node: '>=6'}
hasBin: true
dependencies:
- array.prototype.flat: 1.3.0
+ array.prototype.flat: 1.3.1
breakword: 1.0.5
grapheme-splitter: 1.0.4
strip-ansi: 6.0.1
@@ -17347,11 +15922,11 @@ packages:
yargs: 15.4.1
dev: true
- /snarkdown/2.0.0:
+ /snarkdown@2.0.0:
resolution: {integrity: sha512-MgL/7k/AZdXCTJiNgrO7chgDqaB9FGM/1Tvlcenenb7div6obaDATzs16JhFyHHBGodHT3B7RzRc5qk8pFhg3A==}
dev: false
- /sockjs/0.3.24:
+ /sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
dependencies:
faye-websocket: 0.11.4
@@ -17359,16 +15934,16 @@ packages:
websocket-driver: 0.7.4
dev: false
- /source-list-map/2.0.1:
+ /source-list-map@2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
dev: false
- /source-map-js/1.0.2:
+ /source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
- /source-map-loader/3.0.1_webpack@5.73.0:
- resolution: {integrity: sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==}
+ /source-map-loader@3.0.2(webpack@5.84.0):
+ resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
@@ -17376,95 +15951,97 @@ packages:
abab: 2.0.6
iconv-lite: 0.6.3
source-map-js: 1.0.2
- webpack: 5.73.0
+ webpack: 5.84.0
dev: false
- /source-map-support/0.5.13:
+ /source-map-support@0.5.13:
resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
dev: true
- /source-map-support/0.5.21:
+ /source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- /source-map/0.6.1:
+ /source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- /source-map/0.7.3:
- resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==}
+ /source-map@0.7.4:
+ resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
dev: false
- /source-map/0.8.0-beta.0:
+ /source-map@0.8.0-beta.0:
resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
engines: {node: '>= 8'}
dependencies:
whatwg-url: 7.1.0
- /sourcemap-codec/1.4.8:
+ /sourcemap-codec@1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
+ deprecated: Please use @jridgewell/sourcemap-codec instead
+ dev: false
- /space-separated-tokens/1.1.5:
+ /space-separated-tokens@1.1.5:
resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
dev: false
- /space-separated-tokens/2.0.1:
- resolution: {integrity: sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw==}
+ /space-separated-tokens@2.0.2:
+ resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
dev: false
- /spawn-command/0.0.2-1:
+ /spawn-command@0.0.2-1:
resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==}
dev: true
- /spawndamnit/2.0.0:
+ /spawndamnit@2.0.0:
resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==}
dependencies:
cross-spawn: 5.1.0
signal-exit: 3.0.7
dev: true
- /spdx-correct/3.1.1:
- resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
+ /spdx-correct@3.2.0:
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.11
+ spdx-license-ids: 3.0.13
dev: true
- /spdx-exceptions/2.3.0:
+ /spdx-exceptions@2.3.0:
resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
dev: true
- /spdx-expression-parse/3.0.1:
+ /spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.11
+ spdx-license-ids: 3.0.13
dev: true
- /spdx-license-ids/3.0.11:
- resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==}
+ /spdx-license-ids@3.0.13:
+ resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==}
dev: true
- /spdy-transport/3.0.0:
+ /spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
dependencies:
debug: 4.3.4
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
wbuf: 1.7.3
transitivePeerDependencies:
- supports-color
dev: false
- /spdy/4.0.2:
+ /spdy@4.0.2:
resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -17477,68 +16054,76 @@ packages:
- supports-color
dev: false
- /speed-measure-webpack-plugin/1.5.0_webpack@5.74.0:
+ /speed-measure-webpack-plugin@1.5.0(webpack@5.84.0):
resolution: {integrity: sha512-Re0wX5CtM6gW7bZA64ONOfEPEhwbiSF/vz6e2GvadjuaPrQcHTQdRGsD8+BE7iUOysXH8tIenkPCQBEcspXsNg==}
engines: {node: '>=6.0.0'}
peerDependencies:
webpack: ^1 || ^2 || ^3 || ^4 || ^5
dependencies:
chalk: 4.1.2
- webpack: 5.74.0_esbuild@0.14.53
+ webpack: 5.84.0(esbuild@0.17.19)
dev: false
- /sprintf-js/1.0.3:
- resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=}
+ /sprintf-js@1.0.3:
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- /stable/0.1.8:
+ /stable@0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
+ deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
+ dev: false
- /stack-utils/2.0.5:
- resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==}
+ /stack-utils@2.0.6:
+ resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
dependencies:
escape-string-regexp: 2.0.0
- /stackback/0.0.2:
+ /stackback@0.0.2:
resolution: {integrity: sha1-Gsig2Ug4SNFpXkGLbQMaPDzmjjs=}
dev: true
- /stackframe/1.2.0:
- resolution: {integrity: sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==}
+ /stackframe@1.3.4:
+ resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
dev: false
- /state-local/1.0.7:
+ /state-local@1.0.7:
resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==}
dev: false
- /statuses/1.5.0:
- resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=}
+ /statuses@1.5.0:
+ resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
dev: false
- /statuses/2.0.1:
+ /statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- /stream-transform/2.1.3:
+ /stop-iteration-iterator@1.0.0:
+ resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ internal-slot: 1.0.5
+
+ /stream-transform@2.1.3:
resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==}
dependencies:
- mixme: 0.5.4
+ mixme: 0.5.9
dev: true
- /strict-event-emitter/0.2.4:
- resolution: {integrity: sha512-xIqTLS5azUH1djSUsLH9DbP6UnM/nI18vu8d43JigCQEoVsnY+mrlE+qv6kYqs6/1OkMnMIiL6ffedQSZStuoQ==}
+ /strict-event-emitter@0.2.8:
+ resolution: {integrity: sha512-KDf/ujU8Zud3YaLtMCcTI4xkZlZVIYxTLr+XIULexP+77EEVWixeXroLUXQXiVtH4XH2W7jr/3PT1v3zBuvc3A==}
dependencies:
events: 3.3.0
- /string-length/4.0.2:
+ /string-length@4.0.2:
resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
engines: {node: '>=10'}
dependencies:
char-regex: 1.0.2
strip-ansi: 6.0.1
- /string-length/5.0.1:
+ /string-length@5.0.1:
resolution: {integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==}
engines: {node: '>=12.20'}
dependencies:
@@ -17546,15 +16131,16 @@ packages:
strip-ansi: 7.0.1
dev: false
- /string-natural-compare/3.0.1:
+ /string-natural-compare@3.0.1:
resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==}
dev: false
- /string-similarity/4.0.4:
+ /string-similarity@4.0.4:
resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
dev: false
- /string-width/4.2.3:
+ /string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
dependencies:
@@ -17562,45 +16148,53 @@ packages:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- /string.prototype.matchall/4.0.7:
- resolution: {integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==}
+ /string.prototype.matchall@4.0.8:
+ resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
- get-intrinsic: 1.1.1
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
+ get-intrinsic: 1.2.1
has-symbols: 1.0.3
- internal-slot: 1.0.3
- regexp.prototype.flags: 1.4.3
+ internal-slot: 1.0.5
+ regexp.prototype.flags: 1.5.0
side-channel: 1.0.4
dev: false
- /string.prototype.trimend/1.0.5:
- resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==}
+ /string.prototype.trim@1.2.7:
+ resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
+
+ /string.prototype.trimend@1.0.6:
+ resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
- /string.prototype.trimstart/1.0.5:
- resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==}
+ /string.prototype.trimstart@1.0.6:
+ resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
- /string_decoder/1.1.1:
+ /string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
safe-buffer: 5.1.2
dev: false
- /string_decoder/1.3.0:
+ /string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
safe-buffer: 5.2.1
- /stringify-entities/3.1.0:
+ /stringify-entities@3.1.0:
resolution: {integrity: sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg==}
dependencies:
character-entities-html4: 1.1.4
@@ -17608,14 +16202,14 @@ packages:
xtend: 4.0.2
dev: false
- /stringify-entities/4.0.2:
- resolution: {integrity: sha512-MTxTVcEkorNtBbNpoFJPEh0kKdM6+QbMjLbaxmvaPMmayOXdr/AIVIIJX7FReUVweRBFJfZepK4A4AKgwuFpMQ==}
+ /stringify-entities@4.0.3:
+ resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==}
dependencies:
character-entities-html4: 2.1.0
character-entities-legacy: 3.0.0
dev: false
- /stringify-object/3.3.0:
+ /stringify-object@3.3.0:
resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
engines: {node: '>=4'}
dependencies:
@@ -17624,7 +16218,7 @@ packages:
is-regexp: 1.0.0
dev: false
- /stringify-object/4.0.1:
+ /stringify-object@4.0.1:
resolution: {integrity: sha512-qpV1FBpN0R1gDAhCHIU71SYGZb35Te+gOQbQ6lYRmVJT7pF1NB8mkHeEJvyYNiHXw+fB4KIbeIjQl1rgiIijiA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -17633,102 +16227,87 @@ packages:
is-regexp: 3.1.0
dev: false
- /strip-ansi/6.0.1:
+ /strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
- /strip-ansi/7.0.1:
+ /strip-ansi@7.0.1:
resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
dev: false
- /strip-bom/3.0.0:
- resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
+ /strip-bom@3.0.0:
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
- /strip-bom/4.0.0:
+ /strip-bom@4.0.0:
resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
engines: {node: '>=8'}
- /strip-comments/2.0.1:
+ /strip-comments@2.0.1:
resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==}
engines: {node: '>=10'}
dev: false
- /strip-final-newline/2.0.0:
+ /strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- /strip-indent/3.0.0:
+ /strip-indent@3.0.0:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
dependencies:
min-indent: 1.0.1
- /strip-json-comments/3.1.1:
+ /strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- /style-loader/3.3.1:
- resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dev: true
-
- /style-loader/3.3.1_webpack@5.73.0:
- resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- webpack: 5.73.0
- dev: false
-
- /style-loader/3.3.1_webpack@5.74.0:
- resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
+ /style-loader@3.3.3(webpack@5.84.0):
+ resolution: {integrity: sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- webpack: 5.74.0
+ webpack: 5.84.0
- /style-to-object/0.3.0:
- resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
+ /style-to-object@0.4.1:
+ resolution: {integrity: sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==}
dependencies:
inline-style-parser: 0.1.1
dev: false
- /stylehacks/5.0.1_postcss@8.4.14:
- resolution: {integrity: sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==}
+ /stylehacks@5.1.1(postcss@8.4.23):
+ resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.3
- postcss: 8.4.14
- postcss-selector-parser: 6.0.9
+ browserslist: 4.21.5
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
dev: false
- /stylehacks/5.1.0_postcss@8.4.16:
- resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==}
- engines: {node: ^10 || ^12 || >=14.0}
+ /stylehacks@6.0.0(postcss@8.4.23):
+ resolution: {integrity: sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.3
- postcss: 8.4.16
- postcss-selector-parser: 6.0.10
+ browserslist: 4.21.5
+ postcss: 8.4.23
+ postcss-selector-parser: 6.0.13
- /sucrase/3.25.0:
- resolution: {integrity: sha512-WxTtwEYXSmZArPGStGBicyRsg5TBEFhT5b7N+tF+zauImP0Acy+CoUK0/byJ8JNPK/5lbpWIVuFagI4+0l85QQ==}
+ /sucrase@3.32.0:
+ resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==}
engines: {node: '>=8'}
hasBin: true
dependencies:
+ '@jridgewell/gen-mapping': 0.3.3
commander: 4.1.1
glob: 7.1.6
lines-and-columns: 1.2.4
@@ -17736,40 +16315,40 @@ packages:
pirates: 4.0.5
ts-interface-checker: 0.1.13
- /supports-color/5.5.0:
+ /supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
- /supports-color/7.2.0:
+ /supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
- /supports-color/8.1.1:
+ /supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
- /supports-hyperlinks/2.2.0:
- resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==}
+ /supports-hyperlinks@2.3.0:
+ resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
- /supports-preserve-symlinks-flag/1.0.0:
+ /supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svg-parser/2.0.4:
+ /svg-parser@2.0.4:
resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
dev: false
- /svgo/1.3.2:
+ /svgo@1.3.2:
resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==}
engines: {node: '>=4.0.0'}
deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x.
@@ -17783,34 +16362,49 @@ packages:
csso: 4.2.0
js-yaml: 3.14.1
mkdirp: 0.5.6
- object.values: 1.1.5
+ object.values: 1.1.6
sax: 1.2.4
stable: 0.1.8
unquote: 1.1.1
util.promisify: 1.0.1
dev: false
- /svgo/2.8.0:
+ /svgo@2.8.0:
resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
engines: {node: '>=10.13.0'}
hasBin: true
dependencies:
'@trysound/sax': 0.2.0
commander: 7.2.0
- css-select: 4.2.1
+ css-select: 4.3.0
css-tree: 1.1.3
csso: 4.2.0
picocolors: 1.0.0
stable: 0.1.8
+ dev: false
+
+ /svgo@3.0.2:
+ resolution: {integrity: sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+ dependencies:
+ '@trysound/sax': 0.2.0
+ commander: 7.2.0
+ css-select: 5.1.0
+ css-tree: 2.3.1
+ csso: 5.0.5
+ picocolors: 1.0.0
- /symbol-tree/3.2.4:
+ /symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: false
- /tailwindcss/3.1.8:
+ /tailwindcss@3.1.8(postcss@8.4.16):
resolution: {integrity: sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g==}
engines: {node: '>=12.13.0'}
hasBin: true
+ peerDependencies:
+ postcss: ^8.0.9
dependencies:
arg: 5.0.2
chokidar: 3.5.3
@@ -17818,48 +16412,113 @@ packages:
detective: 5.2.1
didyoumean: 1.2.2
dlv: 1.1.3
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
glob-parent: 6.0.2
is-glob: 4.0.3
- lilconfig: 2.0.6
+ lilconfig: 2.1.0
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
postcss: 8.4.16
- postcss-import: 14.1.0_postcss@8.4.16
- postcss-js: 4.0.0_postcss@8.4.16
- postcss-load-config: 3.1.4_postcss@8.4.16
- postcss-nested: 5.0.6_postcss@8.4.16
- postcss-selector-parser: 6.0.10
+ postcss-import: 14.1.0(postcss@8.4.16)
+ postcss-js: 4.0.1(postcss@8.4.16)
+ postcss-load-config: 3.1.4(postcss@8.4.16)
+ postcss-nested: 5.0.6(postcss@8.4.16)
+ postcss-selector-parser: 6.0.13
+ postcss-value-parser: 4.2.0
+ quick-lru: 5.1.1
+ resolve: 1.22.2
+ transitivePeerDependencies:
+ - ts-node
+
+ /tailwindcss@3.1.8(postcss@8.4.23):
+ resolution: {integrity: sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g==}
+ engines: {node: '>=12.13.0'}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.0.9
+ dependencies:
+ arg: 5.0.2
+ chokidar: 3.5.3
+ color-name: 1.1.4
+ detective: 5.2.1
+ didyoumean: 1.2.2
+ dlv: 1.1.3
+ fast-glob: 3.2.12
+ glob-parent: 6.0.2
+ is-glob: 4.0.3
+ lilconfig: 2.1.0
+ normalize-path: 3.0.0
+ object-hash: 3.0.0
+ picocolors: 1.0.0
+ postcss: 8.4.23
+ postcss-import: 14.1.0(postcss@8.4.23)
+ postcss-js: 4.0.1(postcss@8.4.23)
+ postcss-load-config: 3.1.4(postcss@8.4.23)
+ postcss-nested: 5.0.6(postcss@8.4.23)
+ postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
- resolve: 1.22.1
+ resolve: 1.22.2
+ transitivePeerDependencies:
+ - ts-node
+ dev: true
+
+ /tailwindcss@3.3.2:
+ resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+ dependencies:
+ '@alloc/quick-lru': 5.2.0
+ arg: 5.0.2
+ chokidar: 3.5.3
+ didyoumean: 1.2.2
+ dlv: 1.1.3
+ fast-glob: 3.2.12
+ glob-parent: 6.0.2
+ is-glob: 4.0.3
+ jiti: 1.18.2
+ lilconfig: 2.1.0
+ micromatch: 4.0.5
+ normalize-path: 3.0.0
+ object-hash: 3.0.0
+ picocolors: 1.0.0
+ postcss: 8.4.23
+ postcss-import: 15.1.0(postcss@8.4.23)
+ postcss-js: 4.0.1(postcss@8.4.23)
+ postcss-load-config: 4.0.1(postcss@8.4.23)
+ postcss-nested: 6.0.1(postcss@8.4.23)
+ postcss-selector-parser: 6.0.13
+ postcss-value-parser: 4.2.0
+ resolve: 1.22.2
+ sucrase: 3.32.0
transitivePeerDependencies:
- ts-node
+ dev: true
- /tapable/1.1.3:
+ /tapable@1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
engines: {node: '>=6'}
dev: false
- /tapable/2.2.1:
+ /tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- /temp-dir/2.0.0:
+ /temp-dir@2.0.0:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
engines: {node: '>=8'}
dev: false
- /temp/0.9.4:
+ /temp@0.9.4:
resolution: {integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==}
engines: {node: '>=6.0.0'}
dependencies:
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
rimraf: 2.6.3
dev: false
- /tempy/0.6.0:
+ /tempy@0.6.0:
resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==}
engines: {node: '>=10'}
dependencies:
@@ -17869,44 +16528,20 @@ packages:
unique-string: 2.0.0
dev: false
- /term-size/2.2.1:
+ /term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
dev: true
- /terminal-link/2.1.1:
+ /terminal-link@2.1.1:
resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
engines: {node: '>=8'}
dependencies:
ansi-escapes: 4.3.2
- supports-hyperlinks: 2.2.0
-
- /terser-webpack-plugin/5.3.1_webpack@5.73.0:
- resolution: {integrity: sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==}
- 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:
- jest-worker: 27.5.1
- schema-utils: 3.1.1
- serialize-javascript: 6.0.0
- source-map: 0.6.1
- terser: 5.12.0
- webpack: 5.73.0
- dev: false
+ supports-hyperlinks: 2.3.0
- /terser-webpack-plugin/5.3.3_5gr7ozscerpk45yowhskzxp43q:
- resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==}
+ /terser-webpack-plugin@5.3.9(esbuild@0.17.19)(webpack@5.84.0):
+ resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -17921,16 +16556,16 @@ packages:
uglify-js:
optional: true
dependencies:
- '@jridgewell/trace-mapping': 0.3.14
- esbuild: 0.14.53
+ '@jridgewell/trace-mapping': 0.3.18
+ esbuild: 0.17.19
jest-worker: 27.5.1
- schema-utils: 3.1.1
- serialize-javascript: 6.0.0
- terser: 5.14.2
- webpack: 5.74.0_esbuild@0.14.53
+ schema-utils: 3.1.2
+ serialize-javascript: 6.0.1
+ terser: 5.17.6
+ webpack: 5.84.0(esbuild@0.17.19)
- /terser-webpack-plugin/5.3.3_webpack@5.74.0:
- resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==}
+ /terser-webpack-plugin@5.3.9(webpack@5.84.0):
+ resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -17945,60 +16580,24 @@ packages:
uglify-js:
optional: true
dependencies:
- '@jridgewell/trace-mapping': 0.3.14
+ '@jridgewell/trace-mapping': 0.3.18
jest-worker: 27.5.1
- schema-utils: 3.1.1
- serialize-javascript: 6.0.0
- terser: 5.14.2
- webpack: 5.74.0
-
- /terser/5.10.0:
- resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==}
- engines: {node: '>=10'}
- hasBin: true
- peerDependenciesMeta:
- acorn:
- optional: true
- dependencies:
- acorn: 8.8.0
- commander: 2.20.3
- source-map: 0.7.3
- source-map-support: 0.5.21
- dev: false
-
- /terser/5.12.0:
- resolution: {integrity: sha512-R3AUhNBGWiFc77HXag+1fXpAxTAFRQTJemlJKjAgD9r8xXTpjNKqIXwHM/o7Rh+O0kUJtS3WQVdBeMKFk5sw9A==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- acorn: 8.8.0
- commander: 2.20.3
- source-map: 0.7.3
- source-map-support: 0.5.21
- dev: false
-
- /terser/5.13.1:
- resolution: {integrity: sha512-hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- acorn: 8.8.0
- commander: 2.20.3
- source-map: 0.8.0-beta.0
- source-map-support: 0.5.21
- dev: false
+ schema-utils: 3.1.2
+ serialize-javascript: 6.0.1
+ terser: 5.17.6
+ webpack: 5.84.0
- /terser/5.14.2:
- resolution: {integrity: sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==}
+ /terser@5.17.6:
+ resolution: {integrity: sha512-V8QHcs8YuyLkLHsJO5ucyff1ykrLVsR4dNnS//L5Y3NiSXpbK1J+WMVUs67eI0KTxs9JtHhgEQpXQVHlHI92DQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- '@jridgewell/source-map': 0.3.2
- acorn: 8.8.0
+ '@jridgewell/source-map': 0.3.3
+ acorn: 8.8.2
commander: 2.20.3
source-map-support: 0.5.21
- /test-exclude/6.0.0:
+ /test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
dependencies:
@@ -18006,112 +16605,117 @@ packages:
glob: 7.2.3
minimatch: 3.1.2
- /text-table/0.2.0:
+ /text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- /thenify-all/1.6.0:
+ /thenby@1.3.4:
+ resolution: {integrity: sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==}
+ dev: true
+
+ /thenify-all@1.6.0:
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
engines: {node: '>=0.8'}
dependencies:
thenify: 3.3.1
- /thenify/3.3.1:
+ /thenify@3.3.1:
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
dependencies:
any-promise: 1.3.0
- /throat/6.0.1:
- resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==}
+ /throat@6.0.2:
+ resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==}
dev: false
- /through/2.3.8:
+ /through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- /thunky/1.1.0:
+ /thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
dev: false
- /timsort/0.3.0:
- resolution: {integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=}
- dev: false
-
- /tmp/0.0.33:
+ /tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
dependencies:
os-tmpdir: 1.0.2
- /tmpl/1.0.5:
+ /tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- /to-fast-properties/2.0.0:
+ /to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
- /to-regex-range/5.0.1:
+ /to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
- /toidentifier/1.0.1:
+ /toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
dev: false
- /toml/3.0.0:
+ /toml@3.0.0:
resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==}
dev: false
- /tough-cookie/4.0.0:
- resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==}
+ /tough-cookie@4.1.2:
+ resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==}
engines: {node: '>=6'}
dependencies:
- psl: 1.8.0
- punycode: 2.1.1
- universalify: 0.1.2
+ psl: 1.9.0
+ punycode: 2.3.0
+ universalify: 0.2.0
+ url-parse: 1.5.10
dev: false
- /tr46/0.0.3:
+ /tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- /tr46/1.0.1:
+ /tr46@1.0.1:
resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.0
- /tr46/2.1.0:
+ /tr46@2.1.0:
resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==}
engines: {node: '>=8'}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.0
dev: false
- /tree-kill/1.2.2:
+ /tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
- /trim-newlines/3.0.1:
+ /trim-lines@3.0.1:
+ resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
+ dev: false
+
+ /trim-newlines@3.0.1:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
dev: true
- /trough/1.0.5:
+ /trough@1.0.5:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
dev: false
- /trough/2.1.0:
+ /trough@2.1.0:
resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
dev: false
- /tryer/1.0.1:
+ /tryer@1.0.1:
resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==}
dev: false
- /ts-interface-checker/0.1.13:
+ /ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- /ts-jest/28.0.7_jest@28.1.3:
+ /ts-jest@28.0.7(@babel/core@7.21.8)(jest@28.1.3)(typescript@4.6.4):
resolution: {integrity: sha512-wWXCSmTwBVmdvWrOpYhal79bDpioDy4rTT+0vyUnE3ZzM7LOAAGG9NXwzkEL/a516rQEgnMmS/WKP9jBPCVJyA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
hasBin: true
@@ -18132,41 +16736,43 @@ packages:
esbuild:
optional: true
dependencies:
+ '@babel/core': 7.21.8
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
jest: 28.1.3
jest-util: 28.1.3
- json5: 2.2.1
+ json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
- semver: 7.3.7
+ semver: 7.5.1
+ typescript: 4.6.4
yargs-parser: 21.1.1
dev: true
- /tsconfig-paths/3.14.1:
- resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==}
+ /tsconfig-paths@3.14.2:
+ resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
dependencies:
'@types/json5': 0.0.29
- json5: 1.0.1
- minimist: 1.2.6
+ json5: 1.0.2
+ minimist: 1.2.8
strip-bom: 3.0.0
dev: false
- /tslib/1.14.1:
+ /tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: false
- /tslib/2.4.0:
+ /tslib@2.4.0:
resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
- /tsup/6.2.1_o3ynno4hhxtssdpqxbpaxspdrq:
- resolution: {integrity: sha512-KhBhCqVA3bHrIWhkcqTUA7R69H05IcBlHEtCVLEu42XDGUzz+bDqCcfu5PwpkKJ8DqK5tpdgM/qmyk4DdUbkZw==}
- engines: {node: '>=14'}
+ /tsup@6.7.0(postcss@8.4.16)(typescript@4.6.4):
+ resolution: {integrity: sha512-L3o8hGkaHnu5TdJns+mCqFsDBo83bJ44rlK7e6VdanIvpea4ArPcU3swWGsLVbXak1PqQx/V+SSmFPujBK+zEQ==}
+ engines: {node: '>=14.18'}
hasBin: true
peerDependencies:
'@swc/core': ^1
postcss: ^8.4.12
- typescript: ^4.1.0
+ typescript: '>=4.1.0'
peerDependenciesMeta:
'@swc/core':
optional: true
@@ -18175,34 +16781,34 @@ packages:
typescript:
optional: true
dependencies:
- bundle-require: 3.0.4_esbuild@0.14.53
- cac: 6.7.12
+ bundle-require: 4.0.1(esbuild@0.17.19)
+ cac: 6.7.14
chokidar: 3.5.3
debug: 4.3.4
- esbuild: 0.14.53
+ esbuild: 0.17.19
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
postcss: 8.4.16
- postcss-load-config: 3.1.4_postcss@8.4.16
+ postcss-load-config: 3.1.4(postcss@8.4.16)
resolve-from: 5.0.0
- rollup: 2.77.2
+ rollup: 3.25.1
source-map: 0.8.0-beta.0
- sucrase: 3.25.0
+ sucrase: 3.32.0
tree-kill: 1.2.2
typescript: 4.6.4
transitivePeerDependencies:
- supports-color
- ts-node
- /tsup/6.2.1_typescript@4.6.4:
- resolution: {integrity: sha512-KhBhCqVA3bHrIWhkcqTUA7R69H05IcBlHEtCVLEu42XDGUzz+bDqCcfu5PwpkKJ8DqK5tpdgM/qmyk4DdUbkZw==}
- engines: {node: '>=14'}
+ /tsup@6.7.0(postcss@8.4.23)(typescript@4.6.4):
+ resolution: {integrity: sha512-L3o8hGkaHnu5TdJns+mCqFsDBo83bJ44rlK7e6VdanIvpea4ArPcU3swWGsLVbXak1PqQx/V+SSmFPujBK+zEQ==}
+ engines: {node: '>=14.18'}
hasBin: true
peerDependencies:
'@swc/core': ^1
postcss: ^8.4.12
- typescript: ^4.1.0
+ typescript: '>=4.1.0'
peerDependenciesMeta:
'@swc/core':
optional: true
@@ -18211,19 +16817,20 @@ packages:
typescript:
optional: true
dependencies:
- bundle-require: 3.0.4_esbuild@0.14.53
- cac: 6.7.12
+ bundle-require: 4.0.1(esbuild@0.17.19)
+ cac: 6.7.14
chokidar: 3.5.3
debug: 4.3.4
- esbuild: 0.14.53
+ esbuild: 0.17.19
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss-load-config: 3.1.4
+ postcss: 8.4.23
+ postcss-load-config: 3.1.4(postcss@8.4.23)
resolve-from: 5.0.0
- rollup: 2.77.2
+ rollup: 3.25.1
source-map: 0.8.0-beta.0
- sucrase: 3.25.0
+ sucrase: 3.32.0
tree-kill: 1.2.2
typescript: 4.6.4
transitivePeerDependencies:
@@ -18231,7 +16838,7 @@ packages:
- ts-node
dev: true
- /tsutils/3.21.0_typescript@4.6.4:
+ /tsutils@3.21.0(typescript@4.6.4):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
@@ -18241,8 +16848,8 @@ packages:
typescript: 4.6.4
dev: false
- /tty-table/4.1.6:
- resolution: {integrity: sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw==}
+ /tty-table@4.2.1:
+ resolution: {integrity: sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g==}
engines: {node: '>=8.0.0'}
hasBin: true
dependencies:
@@ -18252,197 +16859,124 @@ packages:
smartwrap: 2.0.2
strip-ansi: 6.0.1
wcwidth: 1.0.1
- yargs: 17.5.1
- dev: true
-
- /turbo-android-arm64/1.4.2:
- resolution: {integrity: sha512-h6PorJ+muKDQE3wETwrkx3NpqypAxjIFLP3b8RQaAoNvxYa1JTSC71VMtYxMbwuDk58A1KGbXLDteR4by8Lqew==}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
+ yargs: 17.7.2
dev: true
- optional: true
- /turbo-darwin-64/1.4.2:
- resolution: {integrity: sha512-HrXRwx+5FuKeR4r2ea2mWO5dImzxG7z987t4xZWytEWJ0gEujln1z1cjwotYU1l2pq8slJS8W3q9Qv3JRMrSkQ==}
+ /turbo-darwin-64@1.9.9:
+ resolution: {integrity: sha512-UDGM9E21eCDzF5t1F4rzrjwWutcup33e7ZjNJcW/mJDPorazZzqXGKEPIy9kXwKhamUUXfC7668r6ZuA1WXF2Q==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-darwin-arm64/1.4.2:
- resolution: {integrity: sha512-/qkMqq1hdbM/I0gchx08/ZZucgnQVp6gd03tHHYnyG20z8a39f38MbX7+I5aLRpa3pQzBk8RgNx0o7G1T+KvzA==}
+ /turbo-darwin-arm64@1.9.9:
+ resolution: {integrity: sha512-VyfkXzTJpYLTAQ9krq2myyEq7RPObilpS04lgJ4OO1piq76RNmSpX9F/t9JCaY9Pj/4TL7i0d8PM7NGhwEA5Ag==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-freebsd-64/1.4.2:
- resolution: {integrity: sha512-bZcjR7GxpuE/0qz/aKg4gWDa+6eiuoV0cRnqCJ/rae14/iSmBt0MsMa+lUH5gZUFj581Dj8fQRoBeE+EOau5CA==}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-freebsd-arm64/1.4.2:
- resolution: {integrity: sha512-dDx++7AELGAHuaMQjzNiKjSPu/xdDelUtRjWOzJWmwXzrgJlwNgQ93p+LYEA7LBWVZ8a32fpBE/VDait0alIJw==}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-linux-32/1.4.2:
- resolution: {integrity: sha512-AAxsEYhgv6x4UXwCoiRe+iL2pd+ArsJQDMgJGsJn+Tb09ca6+i1rTgdOTgcCSyvRwbXt0LYzqXN9zp6FwG6VHQ==}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-linux-64/1.4.2:
- resolution: {integrity: sha512-t7gGxp1ILmGwzymcf72Lw4Ca916Bi9j2C4xPnJ2CAqxMWQOJKCRvyOuUHC/uy1kFDjR2yszxMb+ZJL6P3nccfA==}
+ /turbo-linux-64@1.9.9:
+ resolution: {integrity: sha512-Fu1MY29Odg8dHOqXcpIIGC3T63XLOGgnGfbobXMKdrC7JQDvtJv8TUCYciRsyknZYjyyKK1z6zKuYIiDjf3KeQ==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-arm/1.4.2:
- resolution: {integrity: sha512-6Rri//bX3wPMa8D0sSie05Xuze+6jTUDt4qsKp+JoQVanUKkKmRaVDpyV4WuFfjDbC5iP4ocN20FeaXenMFxTA==}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-linux-arm64/1.4.2:
- resolution: {integrity: sha512-V7eBFUOrIvLvjrc81UE8C+NfqBRKADyKrrbKD9hMG5beE/piZZNGoHUwuEgLgsykCSfHjn1sQCidocVztuTMAw==}
+ /turbo-linux-arm64@1.9.9:
+ resolution: {integrity: sha512-50LI8NafPuJxdnMCBeDdzgyt1cgjQG7FwkyY336v4e95WJPUVjrHdrKH6jYXhOUyrv9+jCJxwX1Yrg02t5yJ1g==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-mips64le/1.4.2:
- resolution: {integrity: sha512-C0JpzpwyvhW5ChWr6S7ulUd8a+1SBLe2mLBepTWaXTh/5+sFDU/AMwPNkhpfV5o0gEtz03UPm7Y4G6dqU3UCAQ==}
- cpu: [mipsel]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-linux-ppc64le/1.4.2:
- resolution: {integrity: sha512-ipxyQCj3NXq/2V6a4lKoNDt8CjcufICgHAvOhAUmoAxz4kIEKRvA/75xsPpt2Ih/a4fWGxsbWFK6oA+ac0l3jQ==}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-windows-32/1.4.2:
- resolution: {integrity: sha512-pCvsh8mPSw6ZFABQqeJzfercnsOwCj1LpbWTPW1QftDij6zw1OWU4jWU529Ub1f+GMBej+xm/ufJhT+8A3NhwA==}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-windows-64/1.4.2:
- resolution: {integrity: sha512-GnvM8uGOA6idUloDDxiEgUpIx5o5ZJL0ARL7f+6r/vfwA+qlSe/F+4hDCmT3+Xkg7/7zDZix5ViKVoTDMBP/Ig==}
+ /turbo-windows-64@1.9.9:
+ resolution: {integrity: sha512-9IsTReoLmQl1IRsy3WExe2j2RKWXQyXujfJ4fXF+jp08KxjVF4/tYP2CIRJx/A7UP/7keBta27bZqzAjsmbSTA==}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo-windows-arm64/1.4.2:
- resolution: {integrity: sha512-2mCPiDnMLY924+M07mMo464cjOr0EITuIkK67IBm3EeEwSlunOmQk+LRc/Jq/Zx6Zuzp5XPZ2fZVvmmSFfogpQ==}
+ /turbo-windows-arm64@1.9.9:
+ resolution: {integrity: sha512-CUu4hpeQo68JjDr0V0ygTQRLbS+/sNfdqEVV+Xz9136vpKn2WMQLAuUBVZV0Sp0S/7i+zGnplskT0fED+W46wQ==}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo/1.4.2:
- resolution: {integrity: sha512-ry1vUs5oHCIM+Sef8HED2XsbL28YAeclCrOtDp9zbZZMUX1r5s01COqOJjFJZfDiv2zSlUge9IIQXprM8BfrtA==}
+ /turbo@1.9.9:
+ resolution: {integrity: sha512-+ZS66LOT7ahKHxh6XrIdcmf2Yk9mNpAbPEj4iF2cs0cAeaDU3xLVPZFF0HbSho89Uxwhx7b5HBgPbdcjQTwQkg==}
hasBin: true
requiresBuild: true
optionalDependencies:
- turbo-android-arm64: 1.4.2
- turbo-darwin-64: 1.4.2
- turbo-darwin-arm64: 1.4.2
- turbo-freebsd-64: 1.4.2
- turbo-freebsd-arm64: 1.4.2
- turbo-linux-32: 1.4.2
- turbo-linux-64: 1.4.2
- turbo-linux-arm: 1.4.2
- turbo-linux-arm64: 1.4.2
- turbo-linux-mips64le: 1.4.2
- turbo-linux-ppc64le: 1.4.2
- turbo-windows-32: 1.4.2
- turbo-windows-64: 1.4.2
- turbo-windows-arm64: 1.4.2
- dev: true
-
- /type-check/0.3.2:
+ turbo-darwin-64: 1.9.9
+ turbo-darwin-arm64: 1.9.9
+ turbo-linux-64: 1.9.9
+ turbo-linux-arm64: 1.9.9
+ turbo-windows-64: 1.9.9
+ turbo-windows-arm64: 1.9.9
+ dev: true
+
+ /type-check@0.3.2:
resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.1.2
dev: false
- /type-check/0.4.0:
+ /type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
- /type-detect/4.0.8:
+ /type-detect@4.0.8:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
- /type-fest/0.13.1:
+ /type-fest@0.13.1:
resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
engines: {node: '>=10'}
dev: true
- /type-fest/0.16.0:
+ /type-fest@0.16.0:
resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==}
engines: {node: '>=10'}
dev: false
- /type-fest/0.20.2:
+ /type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
- /type-fest/0.21.3:
+ /type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
- /type-fest/0.6.0:
+ /type-fest@0.6.0:
resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
engines: {node: '>=8'}
dev: true
- /type-fest/0.8.1:
+ /type-fest@0.8.1:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
dev: true
- /type-fest/1.4.0:
+ /type-fest@1.4.0:
resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
engines: {node: '>=10'}
- /type-fest/2.18.0:
+ /type-fest@2.18.0:
resolution: {integrity: sha512-pRS+/yrW5TjPPHNOvxhbNZexr2bS63WjrMU8a+VzEBhUi9Tz1pZeD+vQz3ut0svZ46P+SRqMEPnJmk2XnvNzTw==}
engines: {node: '>=12.20'}
- dev: true
- /type-is/1.6.18:
+ /type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
dependencies:
@@ -18450,18 +16984,29 @@ packages:
mime-types: 2.1.35
dev: false
- /typedarray-to-buffer/3.1.5:
+ /typed-array-length@1.0.4:
+ resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
+ dependencies:
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ is-typed-array: 1.1.10
+
+ /typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
dependencies:
is-typedarray: 1.0.0
dev: false
- /typescript/4.6.4:
+ /typescript@4.6.4:
resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==}
engines: {node: '>=4.2.0'}
hasBin: true
- /unbox-primitive/1.0.2:
+ /ufo@1.1.2:
+ resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==}
+ dev: true
+
+ /unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
call-bind: 1.0.2
@@ -18469,38 +17014,38 @@ packages:
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
- /unicode-canonical-property-names-ecmascript/2.0.0:
+ /unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
- /unicode-match-property-ecmascript/2.0.0:
+ /unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.0
- unicode-property-aliases-ecmascript: 2.0.0
+ unicode-property-aliases-ecmascript: 2.1.0
- /unicode-match-property-value-ecmascript/2.0.0:
- resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==}
+ /unicode-match-property-value-ecmascript@2.1.0:
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
- /unicode-property-aliases-ecmascript/2.0.0:
- resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==}
+ /unicode-property-aliases-ecmascript@2.1.0:
+ resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
- /unified/10.1.2:
+ /unified@10.1.2:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
dependencies:
'@types/unist': 2.0.6
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
- is-plain-obj: 4.0.0
+ is-plain-obj: 4.1.0
trough: 2.1.0
- vfile: 5.3.2
+ vfile: 5.3.7
dev: false
- /unified/9.2.2:
+ /unified@9.2.2:
resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==}
dependencies:
'@types/unist': 2.0.6
@@ -18512,112 +17057,103 @@ packages:
vfile: 4.2.1
dev: false
- /union/0.5.0:
+ /union@0.5.0:
resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==}
engines: {node: '>= 0.8.0'}
dependencies:
- qs: 6.7.0
+ qs: 6.11.2
dev: true
- /unique-string/2.0.0:
+ /unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
- engines: {node: '>=8'}
- dependencies:
- crypto-random-string: 2.0.0
- dev: false
-
- /unist-builder/3.0.0:
- resolution: {integrity: sha512-GFxmfEAa0vi9i5sd0R2kcrI9ks0r82NasRq5QHh2ysGngrc6GiqD5CDf1FjPenY4vApmFASBIIlk/jj5J5YbmQ==}
+ engines: {node: '>=8'}
dependencies:
- '@types/unist': 2.0.6
+ crypto-random-string: 2.0.0
dev: false
- /unist-util-find/1.0.2:
+ /unist-util-find@1.0.2:
resolution: {integrity: sha512-ft06UDYzqi9o9RmGP0sZWI/zvLLQiBW2/MD+rW6mDqbOWDcmknGX9orQPspfuGRYWr8eSJAmfsBcvOpfGRJseA==}
dependencies:
lodash.iteratee: 4.7.0
unist-util-visit: 1.4.1
dev: false
- /unist-util-generated/2.0.0:
- resolution: {integrity: sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw==}
+ /unist-util-generated@2.0.1:
+ resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==}
dev: false
- /unist-util-is/3.0.0:
+ /unist-util-is@3.0.0:
resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==}
dev: false
- /unist-util-is/4.1.0:
+ /unist-util-is@4.1.0:
resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==}
dev: false
- /unist-util-is/5.1.1:
- resolution: {integrity: sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==}
+ /unist-util-is@5.2.1:
+ resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
+ dependencies:
+ '@types/unist': 2.0.6
dev: false
- /unist-util-position-from-estree/1.1.1:
- resolution: {integrity: sha512-xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw==}
+ /unist-util-position-from-estree@1.1.2:
+ resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /unist-util-position/4.0.1:
- resolution: {integrity: sha512-mgy/zI9fQ2HlbOtTdr2w9lhVaiFUHWQnZrFF2EUoVOqtAUdzqMtNiD99qA5a1IcjWVR8O6aVYE9u7Z2z1v0SQA==}
+ /unist-util-position@4.0.4:
+ resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
+ dependencies:
+ '@types/unist': 2.0.6
dev: false
- /unist-util-remove-position/4.0.1:
- resolution: {integrity: sha512-0yDkppiIhDlPrfHELgB+NLQD5mfjup3a8UYclHruTJWmY74je8g+CIFr79x5f6AkmzSwlvKLbs63hC0meOMowQ==}
+ /unist-util-remove-position@4.0.2:
+ resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==}
dependencies:
'@types/unist': 2.0.6
- unist-util-visit: 4.1.0
+ unist-util-visit: 4.1.2
dev: false
- /unist-util-stringify-position/2.0.3:
+ /unist-util-stringify-position@2.0.3:
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /unist-util-stringify-position/3.0.2:
- resolution: {integrity: sha512-7A6eiDCs9UtjcwZOcCpM4aPII3bAAGv13E96IkawkOAW0OhH+yRxtY0lzo8KiHpzEMfH7Q+FizUmwp8Iqy5EWg==}
+ /unist-util-stringify-position@3.0.3:
+ resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /unist-util-visit-parents/2.1.2:
+ /unist-util-visit-parents@2.1.2:
resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==}
dependencies:
unist-util-is: 3.0.0
dev: false
- /unist-util-visit-parents/3.1.1:
+ /unist-util-visit-parents@3.1.1:
resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
dependencies:
'@types/unist': 2.0.6
unist-util-is: 4.1.0
dev: false
- /unist-util-visit-parents/4.1.1:
- resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==}
- dependencies:
- '@types/unist': 2.0.6
- unist-util-is: 5.1.1
- dev: false
-
- /unist-util-visit-parents/5.1.0:
- resolution: {integrity: sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==}
+ /unist-util-visit-parents@5.1.3:
+ resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
dependencies:
'@types/unist': 2.0.6
- unist-util-is: 5.1.1
+ unist-util-is: 5.2.1
dev: false
- /unist-util-visit/1.4.1:
+ /unist-util-visit@1.4.1:
resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==}
dependencies:
unist-util-visit-parents: 2.1.2
dev: false
- /unist-util-visit/2.0.3:
+ /unist-util-visit@2.0.3:
resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==}
dependencies:
'@types/unist': 2.0.6
@@ -18625,93 +17161,69 @@ packages:
unist-util-visit-parents: 3.1.1
dev: false
- /unist-util-visit/3.1.0:
- resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==}
- dependencies:
- '@types/unist': 2.0.6
- unist-util-is: 5.1.1
- unist-util-visit-parents: 4.1.1
- dev: false
-
- /unist-util-visit/4.1.0:
- resolution: {integrity: sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==}
+ /unist-util-visit@4.1.2:
+ resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
dependencies:
'@types/unist': 2.0.6
- unist-util-is: 5.1.1
- unist-util-visit-parents: 5.1.0
+ unist-util-is: 5.2.1
+ unist-util-visit-parents: 5.1.3
dev: false
- /universalify/0.1.2:
+ /universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
+ dev: true
+
+ /universalify@0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
+ dev: false
- /universalify/2.0.0:
+ /universalify@2.0.0:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
- dev: false
-
- /unload/2.2.0:
- resolution: {integrity: sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==}
- dependencies:
- '@babel/runtime': 7.18.9
- detect-node: 2.1.0
- /unpipe/1.0.0:
- resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=}
+ /unpipe@1.0.0:
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
dev: false
- /unquote/1.1.1:
- resolution: {integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=}
+ /unquote@1.1.1:
+ resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==}
dev: false
- /upath/1.2.0:
+ /upath@1.2.0:
resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
engines: {node: '>=4'}
dev: false
- /update-browserslist-db/1.0.3_browserslist@4.21.0:
- resolution: {integrity: sha512-ufSazemeh9Gty0qiWtoRpJ9F5Q5W3xdIPm1UZQqYQv/q0Nyb9EMHUB2lu+O9x1re9WsorpMAUu4Y6Lxcs5n+XQ==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.21.0
- escalade: 3.1.1
- picocolors: 1.0.0
- dev: false
-
- /update-browserslist-db/1.0.4_browserslist@4.21.1:
- resolution: {integrity: sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==}
+ /update-browserslist-db@1.0.11(browserslist@4.21.5):
+ resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.21.1
- escalade: 3.1.1
- picocolors: 1.0.0
- dev: false
-
- /update-browserslist-db/1.0.5_browserslist@4.21.3:
- resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.21.3
+ browserslist: 4.21.5
escalade: 3.1.1
picocolors: 1.0.0
- /uri-js/4.4.1:
+ /uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.0
- /url-join/4.0.1:
+ /url-join@4.0.1:
resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
dev: true
- /use-callback-ref/1.3.0:
+ /url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+ dependencies:
+ querystringify: 2.2.0
+ requires-port: 1.0.0
+ dev: false
+
+ /use-callback-ref@1.3.0(@types/react@18.0.16)(react@18.2.0):
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
engines: {node: '>=10'}
peerDependencies:
@@ -18721,16 +17233,12 @@ packages:
'@types/react':
optional: true
dependencies:
+ '@types/react': 18.0.16
+ react: 18.2.0
tslib: 2.4.0
dev: false
- /use-composed-ref/1.3.0:
- resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- dev: false
-
- /use-composed-ref/1.3.0_react@18.2.0:
+ /use-composed-ref@1.3.0(react@18.2.0):
resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -18738,36 +17246,16 @@ packages:
react: 18.2.0
dev: false
- /use-constant/1.1.1:
+ /use-constant@1.1.1(react@18.2.0):
resolution: {integrity: sha512-sy2ttlE4kuAnNbp2P6a5aTZiGYwsZojkqaGZ31yDDjIurteUS8GOcYiPGmJ3y/LHOHkdazDdVRBZPzH3RZHffA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
- dev: false
-
- /use-isomorphic-layout-effect/1.1.2:
- resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dev: false
-
- /use-isomorphic-layout-effect/1.1.2_react@18.2.0:
- resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
dependencies:
react: 18.2.0
dev: false
- /use-latest/1.2.1:
- resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
+ /use-isomorphic-layout-effect@1.1.2(@types/react@18.0.16)(react@18.2.0):
+ resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -18775,10 +17263,11 @@ packages:
'@types/react':
optional: true
dependencies:
- use-isomorphic-layout-effect: 1.1.2
+ '@types/react': 18.0.16
+ react: 18.2.0
dev: false
- /use-latest/1.2.1_react@18.2.0:
+ /use-latest@1.2.1(@types/react@18.0.16)(react@18.2.0):
resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
peerDependencies:
'@types/react': '*'
@@ -18787,11 +17276,12 @@ packages:
'@types/react':
optional: true
dependencies:
+ '@types/react': 18.0.16
react: 18.2.0
- use-isomorphic-layout-effect: 1.1.2_react@18.2.0
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.0.16)(react@18.2.0)
dev: false
- /use-sidecar/1.1.2:
+ /use-sidecar@1.1.2(@types/react@18.0.16)(react@18.2.0):
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
@@ -18801,92 +17291,100 @@ packages:
'@types/react':
optional: true
dependencies:
+ '@types/react': 18.0.16
detect-node-es: 1.1.0
+ react: 18.2.0
tslib: 2.4.0
dev: false
- /util-deprecate/1.0.2:
- resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
+ /use-sync-external-store@1.2.0(react@18.2.0):
+ resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ react: 18.2.0
+
+ /util-deprecate@1.0.2:
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- /util.promisify/1.0.1:
+ /util.promisify@1.0.1:
resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==}
dependencies:
- define-properties: 1.1.4
- es-abstract: 1.20.0
+ define-properties: 1.2.0
+ es-abstract: 1.21.2
has-symbols: 1.0.3
- object.getownpropertydescriptors: 2.1.3
+ object.getownpropertydescriptors: 2.1.6
dev: false
- /utila/0.4.0:
- resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=}
- dev: false
+ /utila@0.4.0:
+ resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
- /utils-merge/1.0.1:
- resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=}
+ /utils-merge@1.0.1:
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
dev: false
- /uuid/8.3.2:
+ /uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
dev: false
- /uvu/0.5.3:
- resolution: {integrity: sha512-brFwqA3FXzilmtnIyJ+CxdkInkY/i4ErvP7uV0DnUVxQcQ55reuHphorpF+tZoVHK2MniZ/VJzI7zJQoc9T9Yw==}
+ /uvu@0.5.6:
+ resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
engines: {node: '>=8'}
hasBin: true
dependencies:
- dequal: 2.0.2
- diff: 5.0.0
- kleur: 4.1.4
+ dequal: 2.0.3
+ diff: 5.1.0
+ kleur: 4.1.5
sade: 1.8.1
dev: false
- /v8-to-istanbul/8.1.1:
+ /v8-to-istanbul@8.1.1:
resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==}
engines: {node: '>=10.12.0'}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
- convert-source-map: 1.8.0
- source-map: 0.7.3
+ convert-source-map: 1.9.0
+ source-map: 0.7.4
dev: false
- /v8-to-istanbul/9.0.1:
- resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==}
+ /v8-to-istanbul@9.1.0:
+ resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==}
engines: {node: '>=10.12.0'}
dependencies:
- '@jridgewell/trace-mapping': 0.3.14
+ '@jridgewell/trace-mapping': 0.3.18
'@types/istanbul-lib-coverage': 2.0.4
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
dev: true
- /validate-npm-package-license/3.0.4:
+ /validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
- spdx-correct: 3.1.1
+ spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
dev: true
- /vary/1.1.2:
- resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=}
+ /vary@1.1.2:
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
dev: false
- /vfile-message/2.0.4:
+ /vfile-message@2.0.4:
resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
dependencies:
'@types/unist': 2.0.6
unist-util-stringify-position: 2.0.3
dev: false
- /vfile-message/3.1.2:
- resolution: {integrity: sha512-QjSNP6Yxzyycd4SVOtmKKyTsSvClqBPJcd00Z0zuPj3hOIjg0rUPG6DbFGPvUKRgYyaIWLPKpuEclcuvb3H8qA==}
+ /vfile-message@3.1.4:
+ resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
dependencies:
'@types/unist': 2.0.6
- unist-util-stringify-position: 3.0.2
+ unist-util-stringify-position: 3.0.3
dev: false
- /vfile/4.2.1:
+ /vfile@4.2.1:
resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
dependencies:
'@types/unist': 2.0.6
@@ -18895,153 +17393,190 @@ packages:
vfile-message: 2.0.4
dev: false
- /vfile/5.3.2:
- resolution: {integrity: sha512-w0PLIugRY3Crkgw89TeMvHCzqCs/zpreR31hl4D92y6SOE07+bfJe+dK5Q2akwS+i/c801kzjoOr9gMcTe6IAA==}
+ /vfile@5.3.7:
+ resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
dependencies:
'@types/unist': 2.0.6
is-buffer: 2.0.5
- unist-util-stringify-position: 3.0.2
- vfile-message: 3.1.2
+ unist-util-stringify-position: 3.0.3
+ vfile-message: 3.1.4
dev: false
- /w3c-hr-time/1.0.2:
+ /vite-node@0.28.5:
+ resolution: {integrity: sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA==}
+ engines: {node: '>=v14.16.0'}
+ hasBin: true
+ dependencies:
+ cac: 6.7.14
+ debug: 4.3.4
+ mlly: 1.3.0
+ pathe: 1.1.0
+ picocolors: 1.0.0
+ source-map: 0.6.1
+ source-map-support: 0.5.21
+ vite: 4.3.8
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: true
+
+ /vite@4.3.8:
+ resolution: {integrity: sha512-uYB8PwN7hbMrf4j1xzGDk/lqjsZvCDbt/JC5dyfxc19Pg8kRm14LinK/uq+HSLNswZEoKmweGdtpbnxRtrAXiQ==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': '>= 14'
+ less: '*'
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ esbuild: 0.17.19
+ postcss: 8.4.23
+ rollup: 3.25.1
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
+ /w3c-hr-time@1.0.2:
resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
+ deprecated: Use your platform's native performance.now() and performance.timeOrigin.
dependencies:
browser-process-hrtime: 1.0.0
dev: false
- /w3c-xmlserializer/2.0.0:
+ /w3c-xmlserializer@2.0.0:
resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==}
engines: {node: '>=10'}
dependencies:
xml-name-validator: 3.0.0
dev: false
- /walker/1.0.8:
+ /walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
dependencies:
makeerror: 1.0.12
- /watchpack/2.3.1:
- resolution: {integrity: sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==}
- engines: {node: '>=10.13.0'}
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.10
- dev: false
-
- /watchpack/2.4.0:
+ /watchpack@2.4.0:
resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
engines: {node: '>=10.13.0'}
dependencies:
glob-to-regexp: 0.4.1
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
- /wbuf/1.7.3:
+ /wbuf@1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
dependencies:
minimalistic-assert: 1.0.1
dev: false
- /wcwidth/1.0.1:
+ /wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
dependencies:
- defaults: 1.0.3
+ defaults: 1.0.4
- /web-streams-polyfill/3.2.0:
- resolution: {integrity: sha512-EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA==}
+ /web-streams-polyfill@3.2.1:
+ resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
engines: {node: '>= 8'}
dev: false
- /web-vitals/2.1.4:
+ /web-vitals@2.1.4:
resolution: {integrity: sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==}
dev: false
- /webidl-conversions/3.0.1:
+ /webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- /webidl-conversions/4.0.2:
+ /webidl-conversions@4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
- /webidl-conversions/5.0.0:
+ /webidl-conversions@5.0.0:
resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==}
engines: {node: '>=8'}
dev: false
- /webidl-conversions/6.1.0:
+ /webidl-conversions@6.1.0:
resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==}
engines: {node: '>=10.4'}
dev: false
- /webpack-dev-middleware/5.3.1_webpack@5.73.0:
- resolution: {integrity: sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- colorette: 2.0.16
- memfs: 3.4.1
- mime-types: 2.1.35
- range-parser: 1.2.1
- schema-utils: 4.0.0
- webpack: 5.73.0
- dev: false
-
- /webpack-dev-middleware/5.3.3_webpack@5.74.0:
+ /webpack-dev-middleware@5.3.3(webpack@5.84.0):
resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
- colorette: 2.0.19
- memfs: 3.4.7
+ colorette: 2.0.20
+ memfs: 3.5.1
mime-types: 2.1.35
range-parser: 1.2.1
- schema-utils: 4.0.0
- webpack: 5.74.0_esbuild@0.14.53
+ schema-utils: 4.0.1
+ webpack: 5.84.0(esbuild@0.17.19)
dev: false
- /webpack-dev-server/4.9.2_webpack@5.73.0:
- resolution: {integrity: sha512-H95Ns95dP24ZsEzO6G9iT+PNw4Q7ltll1GfJHV4fKphuHWgKFzGHWi4alTlTnpk1SPPk41X+l2RB7rLfIhnB9Q==}
+ /webpack-dev-server@4.15.0(webpack@5.84.0):
+ resolution: {integrity: sha512-HmNB5QeSl1KpulTBQ8UT4FPrByYyaLxpJoQ0+s7EvUrMc16m0ZS1sgb1XGqzmgCPk0c9y+aaXxn11tbLzuM7NQ==}
engines: {node: '>= 12.13.0'}
hasBin: true
peerDependencies:
webpack: ^4.37.0 || ^5.0.0
webpack-cli: '*'
peerDependenciesMeta:
+ webpack:
+ optional: true
webpack-cli:
optional: true
dependencies:
'@types/bonjour': 3.5.10
- '@types/connect-history-api-fallback': 1.3.5
- '@types/express': 4.17.13
+ '@types/connect-history-api-fallback': 1.5.0
+ '@types/express': 4.17.17
'@types/serve-index': 1.9.1
- '@types/serve-static': 1.13.10
+ '@types/serve-static': 1.15.1
'@types/sockjs': 0.3.33
- '@types/ws': 8.5.3
+ '@types/ws': 8.5.4
ansi-html-community: 0.0.8
- bonjour-service: 1.0.12
+ bonjour-service: 1.1.1
chokidar: 3.5.3
- colorette: 2.0.16
+ colorette: 2.0.20
compression: 1.7.4
- connect-history-api-fallback: 1.6.0
+ connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.17.3
- graceful-fs: 4.2.9
- html-entities: 2.3.2
- http-proxy-middleware: 2.0.3_@types+express@4.17.13
+ express: 4.18.2
+ graceful-fs: 4.2.11
+ html-entities: 2.3.3
+ http-proxy-middleware: 2.0.6(@types/express@4.17.17)
ipaddr.js: 2.0.1
+ launch-editor: 2.6.0
open: 8.4.0
- p-retry: 4.6.1
+ p-retry: 4.6.2
rimraf: 3.0.2
- schema-utils: 4.0.0
- selfsigned: 2.0.1
+ schema-utils: 4.0.1
+ selfsigned: 2.1.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack: 5.73.0
- webpack-dev-middleware: 5.3.1_webpack@5.73.0
- ws: 8.5.0
+ webpack: 5.84.0(esbuild@0.17.19)
+ webpack-dev-middleware: 5.3.3(webpack@5.84.0)
+ ws: 8.13.0
transitivePeerDependencies:
- bufferutil
- debug
@@ -19049,7 +17584,7 @@ packages:
- utf-8-validate
dev: false
- /webpack-dev-server/4.9.3_webpack@5.74.0:
+ /webpack-dev-server@4.9.3(webpack@5.84.0):
resolution: {integrity: sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==}
engines: {node: '>= 12.13.0'}
hasBin: true
@@ -19061,35 +17596,35 @@ packages:
optional: true
dependencies:
'@types/bonjour': 3.5.10
- '@types/connect-history-api-fallback': 1.3.5
- '@types/express': 4.17.13
+ '@types/connect-history-api-fallback': 1.5.0
+ '@types/express': 4.17.17
'@types/serve-index': 1.9.1
- '@types/serve-static': 1.13.10
+ '@types/serve-static': 1.15.1
'@types/sockjs': 0.3.33
- '@types/ws': 8.5.3
+ '@types/ws': 8.5.4
ansi-html-community: 0.0.8
- bonjour-service: 1.0.13
+ bonjour-service: 1.1.1
chokidar: 3.5.3
- colorette: 2.0.19
+ colorette: 2.0.20
compression: 1.7.4
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.18.1
- graceful-fs: 4.2.10
+ express: 4.18.2
+ graceful-fs: 4.2.11
html-entities: 2.3.3
- http-proxy-middleware: 2.0.6_@types+express@4.17.13
+ http-proxy-middleware: 2.0.6(@types/express@4.17.17)
ipaddr.js: 2.0.1
open: 8.4.0
p-retry: 4.6.2
rimraf: 3.0.2
- schema-utils: 4.0.0
- selfsigned: 2.0.1
+ schema-utils: 4.0.1
+ selfsigned: 2.1.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack: 5.74.0_esbuild@0.14.53
- webpack-dev-middleware: 5.3.3_webpack@5.74.0
- ws: 8.8.0
+ webpack: 5.84.0
+ webpack-dev-middleware: 5.3.3(webpack@5.84.0)
+ ws: 8.13.0
transitivePeerDependencies:
- bufferutil
- debug
@@ -19097,33 +17632,33 @@ packages:
- utf-8-validate
dev: false
- /webpack-format-messages/2.0.6:
+ /webpack-format-messages@2.0.6:
resolution: {integrity: sha512-JOUviZSCupGTf6uJjrxKMEyOawWws566e3phwSyuWBsQxuBU6Gm4QV5wdU8UfkPIhWyhAqSGKeq8fNE9Q4rs9Q==}
engines: {node: '>=6'}
dependencies:
kleur: 3.0.3
dev: false
- /webpack-manifest-plugin/4.1.1_webpack@5.73.0:
+ /webpack-manifest-plugin@4.1.1(webpack@5.84.0):
resolution: {integrity: sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==}
engines: {node: '>=12.22.0'}
peerDependencies:
webpack: ^4.44.2 || ^5.47.0
dependencies:
tapable: 2.2.1
- webpack: 5.73.0
+ webpack: 5.84.0
webpack-sources: 2.3.1
dev: false
- /webpack-merge/5.8.0:
- resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
+ /webpack-merge@5.9.0:
+ resolution: {integrity: sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==}
engines: {node: '>=10.0.0'}
dependencies:
clone-deep: 4.0.1
- wildcard: 2.0.0
+ wildcard: 2.0.1
dev: false
- /webpack-messages/2.0.4:
+ /webpack-messages@2.0.4:
resolution: {integrity: sha512-flG9VZRIKJd+ibJdtG55cp8+CglmEvGQ6uyLLwAxKudO2ws5czl0Giy8wltRCNIx+qNF76hh9UEQNZzkUHnDKw==}
engines: {node: '>=6'}
dependencies:
@@ -19132,14 +17667,14 @@ packages:
webpack-format-messages: 2.0.6
dev: false
- /webpack-sources/1.4.3:
+ /webpack-sources@1.4.3:
resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
dependencies:
source-list-map: 2.0.1
source-map: 0.6.1
dev: false
- /webpack-sources/2.3.1:
+ /webpack-sources@2.3.1:
resolution: {integrity: sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==}
engines: {node: '>=10.13.0'}
dependencies:
@@ -19147,56 +17682,16 @@ packages:
source-map: 0.6.1
dev: false
- /webpack-sources/3.2.3:
+ /webpack-sources@3.2.3:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- /webpack-virtual-modules/0.4.4:
- resolution: {integrity: sha512-h9atBP/bsZohWpHnr+2sic8Iecb60GxftXsWNLLLSqewgIsGzByd2gcIID4nXcG+3tNe4GQG3dLcff3kXupdRA==}
+ /webpack-virtual-modules@0.5.0:
+ resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
dev: false
- /webpack/5.73.0:
- resolution: {integrity: sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- dependencies:
- '@types/eslint-scope': 3.7.3
- '@types/estree': 0.0.51
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.7.1
- acorn-import-assertions: 1.8.0_acorn@8.7.1
- browserslist: 4.20.0
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.9.3
- es-module-lexer: 0.9.3
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.9
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.2.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.1.1
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.1_webpack@5.73.0
- watchpack: 2.3.1
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
- dev: false
-
- /webpack/5.74.0:
- resolution: {integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==}
+ /webpack@5.84.0:
+ resolution: {integrity: sha512-XezNK3kwJq6IyeoZmZ1uEqQs+42nTqIi4jYM/YjLwaJedUC1N3bwnCC0+UcnHJPfqWX0kGrQnMIvZZyWYaIZrA==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -19206,27 +17701,27 @@ packages:
optional: true
dependencies:
'@types/eslint-scope': 3.7.4
- '@types/estree': 0.0.51
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.8.0
- acorn-import-assertions: 1.8.0_acorn@8.8.0
- browserslist: 4.21.3
+ '@types/estree': 1.0.1
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/wasm-edit': 1.11.6
+ '@webassemblyjs/wasm-parser': 1.11.6
+ acorn: 8.8.2
+ acorn-import-assertions: 1.9.0(acorn@8.8.2)
+ browserslist: 4.21.5
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.10.0
- es-module-lexer: 0.9.3
+ enhanced-resolve: 5.14.1
+ es-module-lexer: 1.2.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
- graceful-fs: 4.2.10
+ 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.1.1
+ schema-utils: 3.1.2
tapable: 2.2.1
- terser-webpack-plugin: 5.3.3_webpack@5.74.0
+ terser-webpack-plugin: 5.3.9(webpack@5.84.0)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -19234,8 +17729,8 @@ packages:
- esbuild
- uglify-js
- /webpack/5.74.0_esbuild@0.14.53:
- resolution: {integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==}
+ /webpack@5.84.0(esbuild@0.17.19):
+ resolution: {integrity: sha512-XezNK3kwJq6IyeoZmZ1uEqQs+42nTqIi4jYM/YjLwaJedUC1N3bwnCC0+UcnHJPfqWX0kGrQnMIvZZyWYaIZrA==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -19245,27 +17740,27 @@ packages:
optional: true
dependencies:
'@types/eslint-scope': 3.7.4
- '@types/estree': 0.0.51
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.8.0
- acorn-import-assertions: 1.8.0_acorn@8.8.0
- browserslist: 4.21.3
+ '@types/estree': 1.0.1
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/wasm-edit': 1.11.6
+ '@webassemblyjs/wasm-parser': 1.11.6
+ acorn: 8.8.2
+ acorn-import-assertions: 1.9.0(acorn@8.8.2)
+ browserslist: 4.21.5
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.10.0
- es-module-lexer: 0.9.3
+ enhanced-resolve: 5.14.1
+ es-module-lexer: 1.2.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
- graceful-fs: 4.2.10
+ 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.1.1
+ schema-utils: 3.1.2
tapable: 2.2.1
- terser-webpack-plugin: 5.3.3_5gr7ozscerpk45yowhskzxp43q
+ terser-webpack-plugin: 5.3.9(esbuild@0.17.19)(webpack@5.84.0)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -19273,7 +17768,7 @@ packages:
- esbuild
- uglify-js
- /websocket-driver/0.7.4:
+ /websocket-driver@0.7.4:
resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
engines: {node: '>=0.8.0'}
dependencies:
@@ -19282,46 +17777,46 @@ packages:
websocket-extensions: 0.1.4
dev: false
- /websocket-extensions/0.1.4:
+ /websocket-extensions@0.1.4:
resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
engines: {node: '>=0.8.0'}
dev: false
- /whatwg-encoding/1.0.5:
+ /whatwg-encoding@1.0.5:
resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==}
dependencies:
iconv-lite: 0.4.24
dev: false
- /whatwg-encoding/2.0.0:
+ /whatwg-encoding@2.0.0:
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
engines: {node: '>=12'}
dependencies:
iconv-lite: 0.6.3
dev: true
- /whatwg-fetch/3.6.2:
+ /whatwg-fetch@3.6.2:
resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==}
dev: false
- /whatwg-mimetype/2.3.0:
+ /whatwg-mimetype@2.3.0:
resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==}
dev: false
- /whatwg-url/5.0.0:
+ /whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- /whatwg-url/7.1.0:
+ /whatwg-url@7.1.0:
resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
dependencies:
lodash.sortby: 4.7.0
tr46: 1.0.1
webidl-conversions: 4.0.2
- /whatwg-url/8.7.0:
+ /whatwg-url@8.7.0:
resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==}
engines: {node: '>=10'}
dependencies:
@@ -19330,20 +17825,28 @@ packages:
webidl-conversions: 6.1.0
dev: false
- /which-boxed-primitive/1.0.2:
+ /which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies:
is-bigint: 1.0.4
is-boolean-object: 1.1.2
- is-number-object: 1.0.6
+ is-number-object: 1.0.7
is-string: 1.0.7
is-symbol: 1.0.4
- /which-module/2.0.0:
- resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==}
+ /which-collection@1.0.1:
+ resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
+ dependencies:
+ is-map: 2.0.2
+ is-set: 2.0.2
+ is-weakmap: 2.0.1
+ is-weakset: 2.0.2
+
+ /which-module@2.0.1:
+ resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
dev: true
- /which-pm/2.0.0:
+ /which-pm@2.0.0:
resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==}
engines: {node: '>=8.15'}
dependencies:
@@ -19351,20 +17854,31 @@ packages:
path-exists: 4.0.0
dev: true
- /which/1.3.1:
+ /which-typed-array@1.1.9:
+ resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.0
+ is-typed-array: 1.1.10
+
+ /which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
dependencies:
isexe: 2.0.0
- /which/2.0.2:
+ /which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
hasBin: true
dependencies:
isexe: 2.0.0
- /why-is-node-running/2.2.2:
+ /why-is-node-running@2.2.2:
resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
engines: {node: '>=8'}
hasBin: true
@@ -19373,107 +17887,48 @@ packages:
stackback: 0.0.2
dev: true
- /wildcard/2.0.0:
- resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
+ /wildcard@2.0.1:
+ resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
dev: false
- /word-wrap/1.2.3:
+ /word-wrap@1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
- /workbox-background-sync/6.5.3:
- resolution: {integrity: sha512-0DD/V05FAcek6tWv9XYj2w5T/plxhDSpclIcAGjA/b7t/6PdaRkQ7ZgtAX6Q/L7kV7wZ8uYRJUoH11VjNipMZw==}
- dependencies:
- idb: 6.1.5
- workbox-core: 6.5.3
- dev: false
-
- /workbox-background-sync/6.5.4:
+ /workbox-background-sync@6.5.4:
resolution: {integrity: sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==}
dependencies:
- idb: 7.0.2
+ idb: 7.1.1
workbox-core: 6.5.4
dev: false
- /workbox-broadcast-update/6.5.3:
- resolution: {integrity: sha512-4AwCIA5DiDrYhlN+Miv/fp5T3/whNmSL+KqhTwRBTZIL6pvTgE4lVuRzAt1JltmqyMcQ3SEfCdfxczuI4kwFQg==}
- dependencies:
- workbox-core: 6.5.3
- dev: false
-
- /workbox-broadcast-update/6.5.4:
+ /workbox-broadcast-update@6.5.4:
resolution: {integrity: sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==}
dependencies:
workbox-core: 6.5.4
dev: false
- /workbox-build/6.5.3:
- resolution: {integrity: sha512-8JNHHS7u13nhwIYCDea9MNXBNPHXCs5KDZPKI/ZNTr3f4sMGoD7hgFGecbyjX1gw4z6e9bMpMsOEJNyH5htA/w==}
- engines: {node: '>=10.0.0'}
- dependencies:
- '@apideck/better-ajv-errors': 0.3.3_ajv@8.11.0
- '@babel/core': 7.18.6
- '@babel/preset-env': 7.18.6_@babel+core@7.18.6
- '@babel/runtime': 7.18.6
- '@rollup/plugin-babel': 5.3.1_fb3qe53zzddvqjqqltveoanfhe
- '@rollup/plugin-node-resolve': 11.2.1_rollup@2.75.7
- '@rollup/plugin-replace': 2.4.2_rollup@2.75.7
- '@surma/rollup-plugin-off-main-thread': 2.2.3
- ajv: 8.11.0
- common-tags: 1.8.2
- fast-json-stable-stringify: 2.1.0
- fs-extra: 9.1.0
- glob: 7.2.3
- lodash: 4.17.21
- pretty-bytes: 5.6.0
- rollup: 2.75.7
- rollup-plugin-terser: 7.0.2_rollup@2.75.7
- source-map: 0.8.0-beta.0
- stringify-object: 3.3.0
- strip-comments: 2.0.1
- tempy: 0.6.0
- upath: 1.2.0
- workbox-background-sync: 6.5.3
- workbox-broadcast-update: 6.5.3
- workbox-cacheable-response: 6.5.3
- workbox-core: 6.5.3
- workbox-expiration: 6.5.3
- workbox-google-analytics: 6.5.3
- workbox-navigation-preload: 6.5.3
- workbox-precaching: 6.5.3
- workbox-range-requests: 6.5.3
- workbox-recipes: 6.5.3
- workbox-routing: 6.5.3
- workbox-strategies: 6.5.3
- workbox-streams: 6.5.3
- workbox-sw: 6.5.3
- workbox-window: 6.5.3
- transitivePeerDependencies:
- - '@types/babel__core'
- - supports-color
- dev: false
-
- /workbox-build/6.5.4:
+ /workbox-build@6.5.4:
resolution: {integrity: sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==}
engines: {node: '>=10.0.0'}
dependencies:
- '@apideck/better-ajv-errors': 0.3.6_ajv@8.11.0
- '@babel/core': 7.18.10
- '@babel/preset-env': 7.18.10_@babel+core@7.18.10
- '@babel/runtime': 7.18.9
- '@rollup/plugin-babel': 5.3.1_tui6liyexu3zy4m5r2rytc7ixu
- '@rollup/plugin-node-resolve': 11.2.1_rollup@2.77.2
- '@rollup/plugin-replace': 2.4.2_rollup@2.77.2
+ '@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0)
+ '@babel/core': 7.21.8
+ '@babel/preset-env': 7.21.5(@babel/core@7.21.8)
+ '@babel/runtime': 7.21.5
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.21.8)(rollup@2.79.1)
+ '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1)
+ '@rollup/plugin-replace': 2.4.2(rollup@2.79.1)
'@surma/rollup-plugin-off-main-thread': 2.2.3
- ajv: 8.11.0
+ ajv: 8.12.0
common-tags: 1.8.2
fast-json-stable-stringify: 2.1.0
fs-extra: 9.1.0
glob: 7.2.3
lodash: 4.17.21
pretty-bytes: 5.6.0
- rollup: 2.77.2
- rollup-plugin-terser: 7.0.2_rollup@2.77.2
+ rollup: 2.79.1
+ rollup-plugin-terser: 7.0.2(rollup@2.79.1)
source-map: 0.8.0-beta.0
stringify-object: 3.3.0
strip-comments: 2.0.1
@@ -19499,50 +17954,24 @@ packages:
- supports-color
dev: false
- /workbox-cacheable-response/6.5.3:
- resolution: {integrity: sha512-6JE/Zm05hNasHzzAGKDkqqgYtZZL2H06ic2GxuRLStA4S/rHUfm2mnLFFXuHAaGR1XuuYyVCEey1M6H3PdZ7SQ==}
- dependencies:
- workbox-core: 6.5.3
- dev: false
-
- /workbox-cacheable-response/6.5.4:
+ /workbox-cacheable-response@6.5.4:
resolution: {integrity: sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==}
dependencies:
workbox-core: 6.5.4
dev: false
- /workbox-core/6.5.3:
- resolution: {integrity: sha512-Bb9ey5n/M9x+l3fBTlLpHt9ASTzgSGj6vxni7pY72ilB/Pb3XtN+cZ9yueboVhD5+9cNQrC9n/E1fSrqWsUz7Q==}
- dev: false
-
- /workbox-core/6.5.4:
+ /workbox-core@6.5.4:
resolution: {integrity: sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==}
dev: false
- /workbox-expiration/6.5.3:
- resolution: {integrity: sha512-jzYopYR1zD04ZMdlbn/R2Ik6ixiXbi15c9iX5H8CTi6RPDz7uhvMLZPKEndZTpfgmUk8mdmT9Vx/AhbuCl5Sqw==}
- dependencies:
- idb: 6.1.5
- workbox-core: 6.5.3
- dev: false
-
- /workbox-expiration/6.5.4:
+ /workbox-expiration@6.5.4:
resolution: {integrity: sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==}
dependencies:
- idb: 7.0.2
+ idb: 7.1.1
workbox-core: 6.5.4
dev: false
- /workbox-google-analytics/6.5.3:
- resolution: {integrity: sha512-3GLCHotz5umoRSb4aNQeTbILETcrTVEozSfLhHSBaegHs1PnqCmN0zbIy2TjTpph2AGXiNwDrWGF0AN+UgDNTw==}
- dependencies:
- workbox-background-sync: 6.5.3
- workbox-core: 6.5.3
- workbox-routing: 6.5.3
- workbox-strategies: 6.5.3
- dev: false
-
- /workbox-google-analytics/6.5.4:
+ /workbox-google-analytics@6.5.4:
resolution: {integrity: sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==}
dependencies:
workbox-background-sync: 6.5.4
@@ -19551,27 +17980,13 @@ packages:
workbox-strategies: 6.5.4
dev: false
- /workbox-navigation-preload/6.5.3:
- resolution: {integrity: sha512-bK1gDFTc5iu6lH3UQ07QVo+0ovErhRNGvJJO/1ngknT0UQ702nmOUhoN9qE5mhuQSrnK+cqu7O7xeaJ+Rd9Tmg==}
- dependencies:
- workbox-core: 6.5.3
- dev: false
-
- /workbox-navigation-preload/6.5.4:
+ /workbox-navigation-preload@6.5.4:
resolution: {integrity: sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==}
dependencies:
workbox-core: 6.5.4
dev: false
- /workbox-precaching/6.5.3:
- resolution: {integrity: sha512-sjNfgNLSsRX5zcc63H/ar/hCf+T19fRtTqvWh795gdpghWb5xsfEkecXEvZ8biEi1QD7X/ljtHphdaPvXDygMQ==}
- dependencies:
- workbox-core: 6.5.3
- workbox-routing: 6.5.3
- workbox-strategies: 6.5.3
- dev: false
-
- /workbox-precaching/6.5.4:
+ /workbox-precaching@6.5.4:
resolution: {integrity: sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==}
dependencies:
workbox-core: 6.5.4
@@ -19579,30 +17994,13 @@ packages:
workbox-strategies: 6.5.4
dev: false
- /workbox-range-requests/6.5.3:
- resolution: {integrity: sha512-pGCP80Bpn/0Q0MQsfETSfmtXsQcu3M2QCJwSFuJ6cDp8s2XmbUXkzbuQhCUzKR86ZH2Vex/VUjb2UaZBGamijA==}
- dependencies:
- workbox-core: 6.5.3
- dev: false
-
- /workbox-range-requests/6.5.4:
+ /workbox-range-requests@6.5.4:
resolution: {integrity: sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==}
dependencies:
workbox-core: 6.5.4
dev: false
- /workbox-recipes/6.5.3:
- resolution: {integrity: sha512-IcgiKYmbGiDvvf3PMSEtmwqxwfQ5zwI7OZPio3GWu4PfehA8jI8JHI3KZj+PCfRiUPZhjQHJ3v1HbNs+SiSkig==}
- dependencies:
- workbox-cacheable-response: 6.5.3
- workbox-core: 6.5.3
- workbox-expiration: 6.5.3
- workbox-precaching: 6.5.3
- workbox-routing: 6.5.3
- workbox-strategies: 6.5.3
- dev: false
-
- /workbox-recipes/6.5.4:
+ /workbox-recipes@6.5.4:
resolution: {integrity: sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==}
dependencies:
workbox-cacheable-response: 6.5.4
@@ -19613,70 +18011,30 @@ packages:
workbox-strategies: 6.5.4
dev: false
- /workbox-routing/6.5.3:
- resolution: {integrity: sha512-DFjxcuRAJjjt4T34RbMm3MCn+xnd36UT/2RfPRfa8VWJGItGJIn7tG+GwVTdHmvE54i/QmVTJepyAGWtoLPTmg==}
- dependencies:
- workbox-core: 6.5.3
- dev: false
-
- /workbox-routing/6.5.4:
+ /workbox-routing@6.5.4:
resolution: {integrity: sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==}
dependencies:
workbox-core: 6.5.4
dev: false
- /workbox-strategies/6.5.3:
- resolution: {integrity: sha512-MgmGRrDVXs7rtSCcetZgkSZyMpRGw8HqL2aguszOc3nUmzGZsT238z/NN9ZouCxSzDu3PQ3ZSKmovAacaIhu1w==}
- dependencies:
- workbox-core: 6.5.3
- dev: false
-
- /workbox-strategies/6.5.4:
+ /workbox-strategies@6.5.4:
resolution: {integrity: sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==}
dependencies:
workbox-core: 6.5.4
dev: false
- /workbox-streams/6.5.3:
- resolution: {integrity: sha512-vN4Qi8o+b7zj1FDVNZ+PlmAcy1sBoV7SC956uhqYvZ9Sg1fViSbOpydULOssVJ4tOyKRifH/eoi6h99d+sJ33w==}
- dependencies:
- workbox-core: 6.5.3
- workbox-routing: 6.5.3
- dev: false
-
- /workbox-streams/6.5.4:
+ /workbox-streams@6.5.4:
resolution: {integrity: sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==}
dependencies:
workbox-core: 6.5.4
workbox-routing: 6.5.4
dev: false
- /workbox-sw/6.5.3:
- resolution: {integrity: sha512-BQBzm092w+NqdIEF2yhl32dERt9j9MDGUTa2Eaa+o3YKL4Qqw55W9yQC6f44FdAHdAJrJvp0t+HVrfh8AiGj8A==}
- dev: false
-
- /workbox-sw/6.5.4:
+ /workbox-sw@6.5.4:
resolution: {integrity: sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==}
dev: false
- /workbox-webpack-plugin/6.5.3_webpack@5.73.0:
- resolution: {integrity: sha512-Es8Xr02Gi6Kc3zaUwR691ZLy61hz3vhhs5GztcklQ7kl5k2qAusPh0s6LF3wEtlpfs9ZDErnmy5SErwoll7jBA==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- webpack: ^4.4.0 || ^5.9.0
- dependencies:
- fast-json-stable-stringify: 2.1.0
- pretty-bytes: 5.6.0
- upath: 1.2.0
- webpack: 5.73.0
- webpack-sources: 1.4.3
- workbox-build: 6.5.3
- transitivePeerDependencies:
- - '@types/babel__core'
- - supports-color
- dev: false
-
- /workbox-webpack-plugin/6.5.4_webpack@5.74.0:
+ /workbox-webpack-plugin@6.5.4(webpack@5.84.0):
resolution: {integrity: sha512-LmWm/zoaahe0EGmMTrSLUi+BjyR3cdGEfU3fS6PN1zKFYbqAKuQ+Oy/27e4VSXsyIwAw8+QDfk1XHNGtZu9nQg==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -19685,7 +18043,7 @@ packages:
fast-json-stable-stringify: 2.1.0
pretty-bytes: 5.6.0
upath: 1.2.0
- webpack: 5.74.0_esbuild@0.14.53
+ webpack: 5.84.0(esbuild@0.17.19)
webpack-sources: 1.4.3
workbox-build: 6.5.4
transitivePeerDependencies:
@@ -19693,21 +18051,14 @@ packages:
- supports-color
dev: false
- /workbox-window/6.5.3:
- resolution: {integrity: sha512-GnJbx1kcKXDtoJBVZs/P7ddP0Yt52NNy4nocjBpYPiRhMqTpJCNrSL+fGHZ/i/oP6p/vhE8II0sA6AZGKGnssw==}
- dependencies:
- '@types/trusted-types': 2.0.2
- workbox-core: 6.5.3
- dev: false
-
- /workbox-window/6.5.4:
+ /workbox-window@6.5.4:
resolution: {integrity: sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==}
dependencies:
- '@types/trusted-types': 2.0.2
+ '@types/trusted-types': 2.0.3
workbox-core: 6.5.4
dev: false
- /wrap-ansi/6.2.0:
+ /wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
dependencies:
@@ -19716,7 +18067,7 @@ packages:
strip-ansi: 6.0.1
dev: true
- /wrap-ansi/7.0.0:
+ /wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
dependencies:
@@ -19724,10 +18075,10 @@ packages:
string-width: 4.2.3
strip-ansi: 6.0.1
- /wrappy/1.0.2:
+ /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- /write-file-atomic/3.0.3:
+ /write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
dependencies:
imurmurhash: 0.1.4
@@ -19736,16 +18087,16 @@ packages:
typedarray-to-buffer: 3.1.5
dev: false
- /write-file-atomic/4.0.1:
- resolution: {integrity: sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16}
+ /write-file-atomic@4.0.2:
+ resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
dependencies:
imurmurhash: 0.1.4
signal-exit: 3.0.7
dev: true
- /ws/7.5.7:
- resolution: {integrity: sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==}
+ /ws@7.5.9:
+ resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -19757,25 +18108,12 @@ packages:
optional: true
dev: false
- /ws/8.5.0:
- resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: false
-
- /ws/8.8.0:
- resolution: {integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==}
+ /ws@8.13.0:
+ resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
+ utf-8-validate: '>=5.0.2'
peerDependenciesMeta:
bufferutil:
optional: true
@@ -19783,68 +18121,76 @@ packages:
optional: true
dev: false
- /xdm/3.4.0:
+ /xdm@3.4.0:
resolution: {integrity: sha512-jZceaPGSInEHL1EzllhBLtYPX9zhU8omUK3AqUgltYinUmfPJ4OWtRC70L1g0rdsyVbgAZrsTRuq58ACWlnWAQ==}
dependencies:
- '@rollup/pluginutils': 4.2.0
+ '@rollup/pluginutils': 4.2.1
'@types/estree-jsx': 0.0.1
- '@types/mdx': 2.0.1
- astring: 1.8.1
- estree-util-build-jsx: 2.0.0
- estree-util-is-identifier-name: 2.0.0
- estree-walker: 3.0.1
- hast-util-to-estree: 2.0.2
+ '@types/mdx': 2.0.5
+ astring: 1.8.5
+ estree-util-build-jsx: 2.2.2
+ estree-util-is-identifier-name: 2.1.0
+ estree-walker: 3.0.3
+ hast-util-to-estree: 2.3.3
markdown-extensions: 1.1.1
- mdast-util-mdx: 2.0.0
- micromark-extension-mdxjs: 1.0.0
- node-fetch: 3.2.3
- periscopic: 3.0.4
- remark-parse: 10.0.1
+ mdast-util-mdx: 2.0.1
+ micromark-extension-mdxjs: 1.0.1
+ node-fetch: 3.3.1
+ periscopic: 3.1.0
+ remark-parse: 10.0.2
remark-rehype: 10.1.0
- source-map: 0.7.3
+ source-map: 0.7.4
unified: 10.1.2
- unist-util-position-from-estree: 1.1.1
- unist-util-stringify-position: 3.0.2
- unist-util-visit: 4.1.0
- vfile: 5.3.2
+ unist-util-position-from-estree: 1.1.2
+ unist-util-stringify-position: 3.0.3
+ unist-util-visit: 4.1.2
+ vfile: 5.3.7
optionalDependencies:
- deasync: 0.1.27
+ deasync: 0.1.28
transitivePeerDependencies:
- supports-color
dev: false
- /xml-name-validator/3.0.0:
+ /xml-name-validator@3.0.0:
resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==}
dev: false
- /xmlchars/2.2.0:
+ /xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
dev: false
- /xtend/4.0.2:
+ /xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
- /y18n/4.0.3:
+ /y18n@4.0.3:
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
dev: true
- /y18n/5.0.8:
+ /y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
- /yallist/2.1.2:
+ /yallist@2.1.2:
resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
dev: true
- /yallist/4.0.0:
+ /yallist@3.1.1:
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
+
+ /yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- /yaml/1.10.2:
+ /yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- /yargs-parser/18.1.3:
+ /yaml@2.3.1:
+ resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
+ engines: {node: '>= 14'}
+ dev: true
+
+ /yargs-parser@18.1.3:
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
engines: {node: '>=6'}
dependencies:
@@ -19852,21 +18198,16 @@ packages:
decamelize: 1.2.0
dev: true
- /yargs-parser/20.2.9:
+ /yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
dev: false
- /yargs-parser/21.0.1:
- resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==}
- engines: {node: '>=12'}
-
- /yargs-parser/21.1.1:
+ /yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
- dev: true
- /yargs/15.4.1:
+ /yargs@15.4.1:
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
engines: {node: '>=8'}
dependencies:
@@ -19878,12 +18219,12 @@ packages:
require-main-filename: 2.0.0
set-blocking: 2.0.0
string-width: 4.2.3
- which-module: 2.0.0
+ which-module: 2.0.1
y18n: 4.0.3
yargs-parser: 18.1.3
dev: true
- /yargs/16.2.0:
+ /yargs@16.2.0:
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
engines: {node: '>=10'}
dependencies:
@@ -19896,26 +18237,26 @@ packages:
yargs-parser: 20.2.9
dev: false
- /yargs/17.5.1:
- resolution: {integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==}
+ /yargs@17.7.2:
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
dependencies:
- cliui: 7.0.4
+ cliui: 8.0.1
escalade: 3.1.1
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
y18n: 5.0.8
- yargs-parser: 21.0.1
+ yargs-parser: 21.1.1
- /yocto-queue/0.1.0:
+ /yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- /zwitch/1.0.5:
+ /zwitch@1.0.5:
resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
dev: false
- /zwitch/2.0.2:
- resolution: {integrity: sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==}
+ /zwitch@2.0.4:
+ resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
dev: false
From 9e51d136a207df0846c4742f4ed8c9b8bc6aa06d Mon Sep 17 00:00:00 2001
From: Malcolm Kee
Date: Thu, 29 Jun 2023 00:38:19 +1000
Subject: [PATCH 2/4] migrate loading components
---
.../client/components/page-fallback.tsx | 148 +++++-------------
.../client/components/props-editor-panel.tsx | 107 ++++---------
2 files changed, 71 insertions(+), 184 deletions(-)
diff --git a/packages/react-showroom/client/components/page-fallback.tsx b/packages/react-showroom/client/components/page-fallback.tsx
index 0835cfc7..33c5e341 100644
--- a/packages/react-showroom/client/components/page-fallback.tsx
+++ b/packages/react-showroom/client/components/page-fallback.tsx
@@ -1,6 +1,5 @@
-import { css, pulse, styled } from '@showroomjs/ui';
+import { tw } from '@showroomjs/ui';
import { Article } from './article';
-import { Div as Base } from './base';
import { DetailsPageContainer } from './details-page-container';
import { mdxComponents } from './mdx-components';
@@ -9,122 +8,49 @@ const { h1: Heading, p: P, h2: Subheading } = mdxComponents;
export const PageFallback = (props: { title?: string }) => {
return (
-
-
- {props.title || (
-
- )}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ {props.title || }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
);
};
-const pulseCs = css({
- animation: `${pulse} 2s cubic-bezier(0.4, 0, 0.6, 1) infinite`,
-});
+const Div = (props: { className?: string }) => (
+
+);
-const Div = styled('div', {
- backgroundColor: '$gray-200',
-});
-
-const Text = styled(P, {
- height: '1rem',
- backgroundColor: '$gray-200',
- animation: `${pulse} 2s cubic-bezier(0.4, 0, 0.6, 1) infinite`,
-});
+const Text = (props: { className?: string }) => (
+
+);
const CodeBlockSkeleton = () => {
return (
-
-
-
-
-
-
-
-
+
);
};
diff --git a/packages/react-showroom/client/components/props-editor-panel.tsx b/packages/react-showroom/client/components/props-editor-panel.tsx
index e6b28494..472c7cb6 100644
--- a/packages/react-showroom/client/components/props-editor-panel.tsx
+++ b/packages/react-showroom/client/components/props-editor-panel.tsx
@@ -1,4 +1,4 @@
-import { pulse, styled } from '@showroomjs/ui';
+import { tw } from '@showroomjs/ui';
import { usePropsEditorContext } from '../lib/use-props-editor';
import { PropsEditor } from './props-editor';
@@ -6,87 +6,48 @@ export const PropsEditorPanel = (props: { className?: string }) => {
const editor = usePropsEditorContext();
return (
-
+
{editor ? (
) : (
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
)}
-
+
);
};
-const Panel = styled('div', {
- px: '$2',
- py: '$4',
- variants: {
- loading: {
- true: {
- animation: `${pulse} 2s cubic-bezier(0.4, 0, 0.6, 1) infinite`,
- },
- },
- },
-});
-
-const LoadingRoot = styled('div', {
- display: 'grid',
- alignItems: 'center',
- py: '$1',
- gridTemplateColumns: 'max-content 1fr',
- columnGap: '$2',
- '@sm': {
- gap: '$2',
- },
-});
-
-const LoadingLabel = styled('div', {
- backgroundColor: '$gray-300',
- height: '1.5rem',
- width: '105px',
-});
-
-const LoadingControl = styled('div', {
- backgroundColor: '$gray-100',
- height: '2rem',
- width: '100%',
- maxWidth: '36rem',
- border: '1px solid $gray-300',
- borderRadius: '$base',
-});
-
-const ControlWrapper = styled('div', {
- '@sm': {
- px: '$2',
- py: '$1',
- },
-});
+const LoadingLabel = (props: { className?: string }) => (
+
+);
-const Control = styled(function Control(props: { className?: string }) {
+function Control(props: { className?: string }) {
return (
-
-
-
+
);
-});
+}
From af698113139609ed9e77bf91a35f718404cdddc9 Mon Sep 17 00:00:00 2001
From: Malcolm Kee
Date: Thu, 29 Jun 2023 16:46:16 +1000
Subject: [PATCH 3/4] migrate more
---
.../client/components/sidebar.tsx | 50 +++++-------------
...alone-code-live-editor-comment-popover.tsx | 18 ++-----
.../standalone-code-live-editor-comment.tsx | 28 +++++-----
.../standalone-code-live-editor.tsx | 15 ++----
packages/ui/src/components/icon-button.tsx | 52 ++++++++++++-------
packages/ui/src/components/number-input.tsx | 11 ++--
6 files changed, 72 insertions(+), 102 deletions(-)
diff --git a/packages/react-showroom/client/components/sidebar.tsx b/packages/react-showroom/client/components/sidebar.tsx
index 22b750b9..654f9c17 100644
--- a/packages/react-showroom/client/components/sidebar.tsx
+++ b/packages/react-showroom/client/components/sidebar.tsx
@@ -16,7 +16,6 @@ import { isExternalLink } from '../lib/is-external-link';
import { NavLink, useNavigate } from '../lib/routing';
import { THEME, colorTheme } from '../theme';
import { AudienceDropdownGroup, AudienceToggle } from './audience-toggle';
-import { Div } from './base';
const toggle = audienceDefault ? (
@@ -50,26 +49,12 @@ export const Sidebar = (props: { sections: Array
}) => {
return (
<>
-
{props.sections.map((section, i) => (
@@ -77,7 +62,7 @@ export const Sidebar = (props: { sections: Array }) => {
))}
{toggle}
-
+
{isClient && }
>
);
@@ -97,29 +82,18 @@ const MobileSidebar = (props: { sections: Array }) => (
{props.children}
ev.stopPropagation()}
>
-
+
@@ -58,7 +48,7 @@ export const StandaloneCodeLiveEditorCommentPopover = React.forwardRef<
>
Post
-
+
diff --git a/packages/react-showroom/client/components/standalone-code-live-editor-comment.tsx b/packages/react-showroom/client/components/standalone-code-live-editor-comment.tsx
index 1cb5fd48..4a34a1ca 100644
--- a/packages/react-showroom/client/components/standalone-code-live-editor-comment.tsx
+++ b/packages/react-showroom/client/components/standalone-code-live-editor-comment.tsx
@@ -1,4 +1,4 @@
-import { styled } from '@showroomjs/ui';
+import { styled, tw } from '@showroomjs/ui';
import * as React from 'react';
import { XMarkIcon } from '@heroicons/react/20/solid';
@@ -16,26 +16,22 @@ interface CommentItemProps extends React.ComponentPropsWithoutRef<'li'> {
function CommentItemImpl({ children, onDismiss, ...props }: CommentItemProps) {
return (
-
-
-
-
+
{children}
);
}
-const DismissIcon = styled(XMarkIcon, {
- width: 20,
- height: 20,
- color: '$gray-400',
-});
-
-const DismissButton = styled('button', {
- position: 'absolute',
- top: '$1',
- right: '$1',
-});
-
const CommentItem = styled(CommentItemImpl, {
px: '$6',
py: '$3',
diff --git a/packages/react-showroom/client/components/standalone-code-live-editor.tsx b/packages/react-showroom/client/components/standalone-code-live-editor.tsx
index 67f1dba8..85d7edac 100644
--- a/packages/react-showroom/client/components/standalone-code-live-editor.tsx
+++ b/packages/react-showroom/client/components/standalone-code-live-editor.tsx
@@ -786,12 +786,8 @@ export const StandaloneCodeLiveEditor = ({
editorPosition === 'bottom' ? 'right' : 'bottom'
)
}
- css={{
- display: 'none',
- '@md': {
- display: 'inline-flex',
- },
- }}
+ className={tw(['!hidden md:!inline-flex'])}
+ flat
>
{isDockToRight ? (
@@ -807,6 +803,7 @@ export const StandaloneCodeLiveEditor = ({
onPressedChange={(show) =>
setShowEditor(show, show ? undefined : 'true')
}
+ className={tw(['rounded-full'])}
css={
showEditor
? {
@@ -977,10 +974,8 @@ const Toolbar = styled('div', {
px: '$3',
backgroundColor: 'White',
borderBottom: '1px solid $gray-200',
- '@lg': {
- position: 'sticky',
- zIndex: 10,
- },
+ position: 'sticky',
+ zIndex: 1,
});
const CommentIcon = styled(ChatIcon, {
diff --git a/packages/ui/src/components/icon-button.tsx b/packages/ui/src/components/icon-button.tsx
index e6207f0d..c9f2847b 100644
--- a/packages/ui/src/components/icon-button.tsx
+++ b/packages/ui/src/components/icon-button.tsx
@@ -1,19 +1,35 @@
-import { styled } from '../stitches.config';
+import * as React from 'react';
+import { tw } from '../lib/tw';
-export const IconButton = styled('button', {
- cursor: 'pointer',
- all: 'unset',
- fontFamily: 'inherit',
- borderRadius: '100%',
- height: 35,
- width: 35,
- display: 'inline-flex',
- alignItems: 'center',
- justifyContent: 'center',
- color: '$gray-400',
- backgroundColor: 'white',
- boxShadow: `0 2px 10px $gray-400`,
- '&:hover': { backgroundColor: '$gray-100' },
- '&:disabled': { cursor: 'default' },
- outlineRing: '',
-});
+export type IconButtonProps = React.ComponentPropsWithoutRef<'button'> & {
+ sizeClass?: string;
+ colorClass?: string;
+ flat?: boolean;
+};
+
+export const IconButton = React.forwardRef(
+ function IconButton(
+ {
+ sizeClass = tw(['w-9 h-9']),
+ colorClass = tw(['text-zinc-400 bg-white hover:bg-zinc-100']),
+ flat,
+ ...props
+ },
+ forwardedRef
+ ) {
+ return (
+
+ );
+ }
+);
diff --git a/packages/ui/src/components/number-input.tsx b/packages/ui/src/components/number-input.tsx
index 90a001fe..0ea4ee52 100644
--- a/packages/ui/src/components/number-input.tsx
+++ b/packages/ui/src/components/number-input.tsx
@@ -2,6 +2,7 @@ import { MinusIcon, PlusIcon } from '@heroicons/react/20/solid';
import { callAll, isDefined, isNumber, noop } from '@showroomjs/core';
import { useRifm } from 'rifm';
import { formatMoney } from '../lib/number';
+import { tw } from '../lib/tw';
import { styled } from '../stitches.config';
import { IconButton } from './icon-button';
import { TextInput, TextInputProps } from './text-input';
@@ -92,11 +93,8 @@ const NumberInputImpl = styled(function NumberInput({
}
type="button"
aria-label="decrement"
- css={{
- flexShrink: 0,
- width: 34,
- height: 34,
- }}
+ className={tw(['flex-shrink-0'])}
+ sizeClass={tw(['w-[34px] h-[34px]'])}
disabled={inputProps.disabled}
>
@@ -124,7 +122,8 @@ const NumberInputImpl = styled(function NumberInput({
}
type="button"
aria-label="increment"
- css={{ flexShrink: 0, width: 34, height: 34 }}
+ className={tw(['flex-shrink-0'])}
+ sizeClass={tw(['w-[34px] h-[34px]'])}
disabled={inputProps.disabled}
>
From affa8194ee0822d601e18d8864505d4ddc11f46e Mon Sep 17 00:00:00 2001
From: Malcolm Kee
Date: Fri, 30 Jun 2023 00:12:38 +1000
Subject: [PATCH 4/4] migrate more
---
.../a11y-result-panel-for-frames.tsx | 4 +-
.../client/components/radio-dropdown.tsx | 10 +-
.../standalone-code-live-editor-comment.tsx | 63 +++---
.../standalone-code-live-editor-preview.tsx | 162 +++++---------
.../standalone-code-live-editor.tsx | 207 ++++++------------
5 files changed, 160 insertions(+), 286 deletions(-)
diff --git a/packages/react-showroom/client/components/a11y-result-panel-for-frames.tsx b/packages/react-showroom/client/components/a11y-result-panel-for-frames.tsx
index 7f7fc166..9051894a 100644
--- a/packages/react-showroom/client/components/a11y-result-panel-for-frames.tsx
+++ b/packages/react-showroom/client/components/a11y-result-panel-for-frames.tsx
@@ -16,7 +16,7 @@ export interface A11yResultPanelForFramesProps {
selectors: Array;
color: string;
}) => void;
- resetHiglights: () => void;
+ resetHighlights: () => void;
scrollToFrameWhenSelect?: boolean;
}
@@ -77,7 +77,7 @@ export const A11yResultPanelForFrames = (
}
}
: undefined,
- props.resetHiglights
+ props.resetHighlights
)}
>
diff --git a/packages/react-showroom/client/components/radio-dropdown.tsx b/packages/react-showroom/client/components/radio-dropdown.tsx
index a67f9b35..65316167 100644
--- a/packages/react-showroom/client/components/radio-dropdown.tsx
+++ b/packages/react-showroom/client/components/radio-dropdown.tsx
@@ -1,5 +1,5 @@
import { CheckIcon } from '@heroicons/react/20/solid';
-import { DropdownMenu, DropdownMenuContentProps } from '@showroomjs/ui';
+import { DropdownMenu, DropdownMenuContentProps, tw } from '@showroomjs/ui';
export interface RadioDropdownProps
extends DropdownMenuContentProps {
@@ -27,13 +27,7 @@ export const RadioDropdown = ({
{options.map((option, i) => (
diff --git a/packages/react-showroom/client/components/standalone-code-live-editor-comment.tsx b/packages/react-showroom/client/components/standalone-code-live-editor-comment.tsx
index 4a34a1ca..c474d763 100644
--- a/packages/react-showroom/client/components/standalone-code-live-editor-comment.tsx
+++ b/packages/react-showroom/client/components/standalone-code-live-editor-comment.tsx
@@ -1,21 +1,47 @@
-import { styled, tw } from '@showroomjs/ui';
-import * as React from 'react';
import { XMarkIcon } from '@heroicons/react/20/solid';
+import { tw } from '@showroomjs/ui';
+import * as React from 'react';
-const CommentListImpl = styled('ul', {
- display: 'grid',
- gap: '$3',
- padding: '$3',
- gridTemplateColumns: 'repeat(auto-fill, minmax(300px, 1fr))',
+const CommentListImpl = React.forwardRef<
+ HTMLUListElement,
+ React.ComponentPropsWithoutRef<'ul'>
+>(function CommentList(props, forwardedRef) {
+ return (
+
+ );
});
interface CommentItemProps extends React.ComponentPropsWithoutRef<'li'> {
onDismiss: () => void;
+ active?: boolean;
}
-function CommentItemImpl({ children, onDismiss, ...props }: CommentItemProps) {
+function CommentItem({
+ children,
+ onDismiss,
+ className,
+ active,
+ ...props
+}: CommentItemProps) {
return (
- -
+
-
+
);
});
const rootProps = {
- className: resizeStyle({
- isCommenting: props.isCommenting,
- }),
+ className: tw([
+ 'relative pt-3 pb-6 px-3 bg-zinc-200 overflow-x-auto overflow-y-hidden',
+ props.isCommenting && 'text-zinc-300',
+ screenListSize ? 'flex-none' : 'flex-1',
+ ]),
+ style: {
+ ...(props.isCommenting
+ ? {
+ cursor: `url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z' /%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z' /%3E%3C/svg%3E"), auto`,
+ }
+ : {}),
+ ...(screenListSize
+ ? {
+ height: screenListSize.height + 36,
+ }
+ : {}),
+ },
onClick: props.isCommenting
? (ev: React.MouseEvent) => {
props.onClickCommentPoint({
@@ -298,20 +323,9 @@ export const StandaloneCodeLiveEditorPreviewList = React.forwardRef<
};
return props.fitHeight ? (
-
+
{props.children}
-
+
) : (
& { wrap?: boolean }
+>(function ScreenList({ wrap, className, ...props }, forwardedRef) {
+ return (
+
+ );
});
const serializeStateMaps = (stateMaps: StateMaps): string => {
diff --git a/packages/react-showroom/client/components/standalone-code-live-editor.tsx b/packages/react-showroom/client/components/standalone-code-live-editor.tsx
index 85d7edac..635935ec 100644
--- a/packages/react-showroom/client/components/standalone-code-live-editor.tsx
+++ b/packages/react-showroom/client/components/standalone-code-live-editor.tsx
@@ -266,7 +266,7 @@ export const StandaloneCodeLiveEditor = ({
frameDimensions.length > 0 ? frameDimensions[0].name : ''
);
- const [higlightedEls, setHighlightedEls] = React.useState<
+ const [highlightedEls, setHighlightedEls] = React.useState<
{ frameName: string; selectors: string[]; color: string } | undefined
>(undefined);
const resetHighlights = () =>
@@ -284,26 +284,18 @@ export const StandaloneCodeLiveEditor = ({
return (
-
+
-
-
+
- {isCommenting ? : }
+ {isCommenting ? (
+
+ ) : (
+
+ )}
{showMultipleScreens && (
@@ -319,7 +315,11 @@ export const StandaloneCodeLiveEditor = ({
-
+
@@ -407,7 +407,11 @@ export const StandaloneCodeLiveEditor = ({
{zoomLevel}%{' '}
-
+
>
)}
-
+
{!isCommenting && (
-
)}
-
-
+
+
{
if (window) {
@@ -463,7 +460,7 @@ export const StandaloneCodeLiveEditor = ({
return '';
}}
/>
-
+
{isCommenting && targetCoord ? (
@@ -586,7 +583,7 @@ export const StandaloneCodeLiveEditor = ({
open={isActive}
label={comment.text}
side="top"
- className={commentPopover()}
+ className={tw(['whitespace-pre-wrap'])}
>
{isCommenting && (
{commentState.items.length > 0 ? (
@@ -767,14 +748,10 @@ export const StandaloneCodeLiveEditor = ({
)}
)}
-
setShowEditor(show, show ? undefined : 'true')
}
- className={tw(['rounded-full'])}
- css={
+ className={tw([
+ 'rounded-full',
showEditor
- ? {
- color: '$gray-600',
- backgroundColor: '$gray-100',
- shadow: 'inner',
- }
- : {
- color: '$gray-400',
- }
- }
+ ? 'text-zinc-600 bg-zinc-100 shadow-inner'
+ : 'text-zinc-400',
+ ])}
data-testid="editor-toggle"
>
@@ -848,11 +819,11 @@ export const StandaloneCodeLiveEditor = ({
)}
-
+
-
+
);
@@ -978,43 +949,6 @@ const Toolbar = styled('div', {
zIndex: 1,
});
-const CommentIcon = styled(ChatIcon, {
- width: 20,
- height: 20,
- color: '$gray-400',
-});
-
-const CommentOnIcon = styled(FilledChatIcon, {
- width: 20,
- height: 20,
- color: 'White',
-});
-
-const MeasureIcon = styled(RectangleGroupIcon, {
- width: 20,
- height: 20,
- color: '$gray-400',
- variants: {
- active: {
- true: {
- color: 'White',
- },
- },
- },
-});
-
-const ZoomIcon = styled(MagnifyingGlassPlusIcon, {
- width: 20,
- height: 20,
- color: '$gray-400',
-});
-
-const ScreensIcon = styled(AdjustmentsVerticalIcon, {
- width: 20,
- height: 20,
- color: '$gray-400',
-});
-
const MenuButton = styled('button', {
display: 'inline-flex',
alignItems: 'center',
@@ -1027,19 +961,6 @@ const MenuButton = styled('button', {
outlineRing: '$primary-200',
});
-const editorWrapper = css({
- flex: 1,
- overflow: 'auto',
-});
-
-const editor = css({
- borderRadius: '$base',
-});
-
-const commentPopover = css({
- whiteSpace: 'pre-wrap',
-});
-
const iconClass = css({
transform: 'scale(1)',
transition: 'transform 150ms ease-in-out',