diff --git a/packages/synapse-react-client/.storybook/main.mts b/packages/synapse-react-client/.storybook/main.mts
index 5eaa47e9d4..eb51495a4c 100644
--- a/packages/synapse-react-client/.storybook/main.mts
+++ b/packages/synapse-react-client/.storybook/main.mts
@@ -1,5 +1,5 @@
-import { mergeConfig, defineConfig } from 'vite'
import { StorybookConfig } from '@storybook/react-vite'
+import { defineConfig, mergeConfig } from 'vite'
const config: StorybookConfig = {
stories: ['../**/*.stories.mdx', '../**/*.stories.@(js|jsx|ts|tsx)'],
@@ -26,18 +26,17 @@ const config: StorybookConfig = {
},
typescript: {
- // These options are from https://storybook.js.org/blog/material-ui-in-storybook/
- check: false,
- checkOptions: {},
+ // These options are from https://storybook.js.org/recipes/@mui/material
reactDocgen: 'react-docgen-typescript',
reactDocgenTypescriptOptions: {
- // @ts-expect-error - speeds up storybook build time
- allowSyntheticDefaultImports: false,
- // speeds up storybook build time
- esModuleInterop: false,
- // makes union prop types like variant and size appear as select controls
+ // Speeds up Storybook build time
+ compilerOptions: {
+ allowSyntheticDefaultImports: false,
+ esModuleInterop: false,
+ },
+ // Makes union prop types like variant and size appear as select controls
shouldExtractLiteralValuesFromEnum: true,
- // makes string and boolean types that can be undefined appear as inputs and switches
+ // Makes string and boolean types that can be undefined appear as inputs and switches
shouldRemoveUndefinedFromOptional: true,
// Filter out third-party props from node_modules except @mui packages
propFilter: prop =>
@@ -49,7 +48,7 @@ const config: StorybookConfig = {
staticDirs: ['../public'],
- viteFinal(config, { configType }) {
+ async viteFinal(config, { configType }) {
let base,
plugins = undefined
// Fix deployment to github pages
diff --git a/packages/synapse-react-client/.storybook/preview.tsx b/packages/synapse-react-client/.storybook/preview.tsx
index 1166d1c31e..e58ffa1bb0 100644
--- a/packages/synapse-react-client/.storybook/preview.tsx
+++ b/packages/synapse-react-client/.storybook/preview.tsx
@@ -1,15 +1,17 @@
-import * as React from 'react'
-import '../stories/DemoStyle.scss'
+import { faker } from '@faker-js/faker'
+import { ThemeProvider } from '@mui/material'
+import { createTheme } from '@mui/material/styles'
+import { withThemeFromJSXProvider } from '@storybook/addon-themes'
+import { Preview } from '@storybook/react'
import whyDidYouRender from '@welldone-software/why-did-you-render'
import { Buffer } from 'buffer'
-import { StorybookComponentWrapper } from '../src/components/StorybookComponentWrapper'
+import isChromatic from 'chromatic/isChromatic'
import { initialize, mswLoader } from 'msw-storybook-addon'
+import '../stories/DemoStyle.scss'
+import * as React from 'react'
+import { StorybookComponentWrapper } from '../src/components/StorybookComponentWrapper'
import { getHandlers } from '../src/mocks/msw/handlers'
-import { MOCK_REPO_ORIGIN } from '../src/utils/functions/getEndpoint'
-import isChromatic from 'chromatic/isChromatic'
-import { faker } from '@faker-js/faker'
-import { ThemeProvider } from '@mui/material'
-import { withThemeFromJSXProvider } from '@storybook/addon-themes'
+import defaultMuiThemeOptions from '../src/theme/DefaultTheme'
import {
adKnowledgePortalPalette,
arkPortalPalette,
@@ -18,15 +20,13 @@ import {
crcResearcherPortalPalette,
digitalHealthPortalPalette,
elPortalPalette,
+ geniePalette,
mtbPalette,
nfPortalPalette,
sageBionetworksPalette,
stopAdPortalPalette,
- geniePalette,
} from '../src/theme/palette/Palettes'
-import { createTheme } from '@mui/material/styles'
-import defaultMuiThemeOptions from '../src/theme/DefaultTheme'
-import { Decorator } from '@storybook/react'
+import { MOCK_REPO_ORIGIN } from '../src/utils/functions/getEndpoint'
// KaTeX CSS is not included in the SRC style bundle since it includes many large font files.
import 'katex/dist/katex.css'
@@ -51,57 +51,6 @@ if (process.env.NODE_ENV === 'development') {
})
}
-export const parameters = {
- actions: { argTypesRegex: '^on[A-Z].*' },
- controls: {
- expanded: true,
- matchers: {
- color: /(background|color)$/i,
- date: /Date$/,
- },
- },
- msw: {
- handlers: [
- // Only return mocked data when making requests to our mock stack
- ...getHandlers(MOCK_REPO_ORIGIN),
- ],
- },
-}
-
-export const globalTypes = {
- showReactQueryDevtools: {
- name: 'React Query Devtools',
- defaultValue: false,
- toolbar: {
- icon: 'wrench',
- showName: true,
- items: [
- { value: false, title: 'Hide React Query Devtools' },
- { value: true, title: 'Show React Query Devtools' },
- ],
- },
- },
- stack: {
- name: 'Stack',
- title: 'Stack Changer',
- description:
- 'Choose the stack that Synapse should point to. You may need to re-authenticate after changing stacks.',
- defaultValue: null,
- toolbar: {
- icon: 'database',
- dynamicTitle: true,
- showName: true,
- items: [
- { value: null, title: 'default (usually production)' },
- { value: 'production', title: 'Production' },
- { value: 'staging', title: 'Staging' },
- { value: 'development', title: 'Development' },
- { value: 'mock', title: 'Mocked Data' },
- ],
- },
- },
-}
-
// Initialize MSW
initialize({
onUnhandledRequest: 'bypass',
@@ -122,61 +71,111 @@ if (isChromatic() && document.fonts) {
loaders.push(fontLoader)
}
-export const decorators: Decorator[] = [
- (Story, context) => {
- return (
-
-
-
- )
+const preview: Preview = {
+ parameters: {
+ actions: { argTypesRegex: '^on[A-Z].*' },
+ controls: {
+ expanded: true,
+ matchers: {
+ color: /(background|color)$/i,
+ date: /Date$/,
+ },
+ },
+ msw: {
+ handlers: [
+ // Only return mocked data when making requests to our mock stack
+ ...getHandlers(MOCK_REPO_ORIGIN),
+ ],
+ },
},
- // Adds global styles and theme switching support.
- withThemeFromJSXProvider({
- Provider: ThemeProvider,
- themes: {
- ['Synapse']: createTheme(defaultMuiThemeOptions),
- ['Sage Bionetworks']: createTheme(defaultMuiThemeOptions, {
- palette: sageBionetworksPalette,
- }),
- ['MTB']: createTheme(defaultMuiThemeOptions, { palette: mtbPalette }),
- ['ARK Portal']: createTheme(defaultMuiThemeOptions, {
- palette: arkPortalPalette,
- }),
- ['NF Portal']: createTheme(defaultMuiThemeOptions, {
- palette: nfPortalPalette,
- }),
- ['BSMN Portal']: createTheme(defaultMuiThemeOptions, {
- palette: bsmnPortalPalette,
- }),
- ['STOP AD Portal']: createTheme(defaultMuiThemeOptions, {
- palette: stopAdPortalPalette,
- }),
- ['dhealth Portal']: createTheme(defaultMuiThemeOptions, {
- palette: digitalHealthPortalPalette,
- }),
- ['CRC Researcher Portal']: createTheme(defaultMuiThemeOptions, {
- palette: crcResearcherPortalPalette,
- }),
- ['Cancer Complexity Portal']: createTheme(defaultMuiThemeOptions, {
- palette: cancerComplexityPortalPalette,
- }),
-
- ['AD Knowledge Portal']: createTheme(defaultMuiThemeOptions, {
- palette: adKnowledgePortalPalette,
- }),
- ['EL Portal']: createTheme(defaultMuiThemeOptions, {
- palette: elPortalPalette,
- }),
- ['GENIE Portal']: createTheme(defaultMuiThemeOptions, {
- palette: geniePalette,
- }),
+ decorators: [
+ (Story, context) => {
+ return (
+
+
+
+ )
},
- defaultTheme: 'Synapse',
- }),
-]
+ // Adds global styles and theme switching support.
+ withThemeFromJSXProvider({
+ Provider: ThemeProvider,
+ themes: {
+ ['Synapse']: createTheme(defaultMuiThemeOptions),
+ ['Sage Bionetworks']: createTheme(defaultMuiThemeOptions, {
+ palette: sageBionetworksPalette,
+ }),
+ ['MTB']: createTheme(defaultMuiThemeOptions, { palette: mtbPalette }),
+ ['ARK Portal']: createTheme(defaultMuiThemeOptions, {
+ palette: arkPortalPalette,
+ }),
+ ['NF Portal']: createTheme(defaultMuiThemeOptions, {
+ palette: nfPortalPalette,
+ }),
+ ['BSMN Portal']: createTheme(defaultMuiThemeOptions, {
+ palette: bsmnPortalPalette,
+ }),
+ ['STOP AD Portal']: createTheme(defaultMuiThemeOptions, {
+ palette: stopAdPortalPalette,
+ }),
+ ['dhealth Portal']: createTheme(defaultMuiThemeOptions, {
+ palette: digitalHealthPortalPalette,
+ }),
+ ['CRC Researcher Portal']: createTheme(defaultMuiThemeOptions, {
+ palette: crcResearcherPortalPalette,
+ }),
+ ['Cancer Complexity Portal']: createTheme(defaultMuiThemeOptions, {
+ palette: cancerComplexityPortalPalette,
+ }),
-export default {
- parameters,
- decorators,
+ ['AD Knowledge Portal']: createTheme(defaultMuiThemeOptions, {
+ palette: adKnowledgePortalPalette,
+ }),
+ ['EL Portal']: createTheme(defaultMuiThemeOptions, {
+ palette: elPortalPalette,
+ }),
+ ['GENIE Portal']: createTheme(defaultMuiThemeOptions, {
+ palette: geniePalette,
+ }),
+ },
+ defaultTheme: 'Synapse',
+ }),
+ ],
loaders,
+ globalTypes: {
+ showReactQueryDevtools: {
+ name: 'React Query Devtools',
+ toolbar: {
+ icon: 'wrench',
+ showName: true,
+ items: [
+ { value: false, title: 'Hide React Query Devtools' },
+ { value: true, title: 'Show React Query Devtools' },
+ ],
+ },
+ },
+ stack: {
+ name: 'Stack',
+ title: 'Stack Changer',
+ description:
+ 'Choose the stack that Synapse should point to. You may need to re-authenticate after changing stacks.',
+ toolbar: {
+ icon: 'database',
+ dynamicTitle: true,
+ showName: true,
+ items: [
+ { value: null, title: 'default (usually production)' },
+ { value: 'production', title: 'Production' },
+ { value: 'staging', title: 'Staging' },
+ { value: 'development', title: 'Development' },
+ { value: 'mock', title: 'Mocked Data' },
+ ],
+ },
+ },
+ },
+ initialGlobals: {
+ showReactQueryDevtools: false,
+ stack: null,
+ },
}
+
+export default preview
diff --git a/packages/synapse-react-client/package.json b/packages/synapse-react-client/package.json
index a553c66bd8..f7cc543d81 100644
--- a/packages/synapse-react-client/package.json
+++ b/packages/synapse-react-client/package.json
@@ -148,18 +148,17 @@
"@jest/reporters": "^29.7.0",
"@juggle/resize-observer": "^3.4.0",
"@open-draft/deferred-promise": "^2.2.0",
- "@storybook/addon-actions": "^8.2.4",
- "@storybook/addon-designs": "^8.0.3",
- "@storybook/addon-essentials": "^8.2.4",
- "@storybook/addon-interactions": "^8.2.4",
- "@storybook/addon-links": "^8.2.4",
- "@storybook/addon-themes": "^8.2.4",
- "@storybook/manager-api": "^8.2.4",
- "@storybook/react": "^8.2.4",
- "@storybook/react-vite": "^8.2.4",
- "@storybook/test": "^8.2.4",
- "@storybook/testing-library": "^0.2.2",
- "@storybook/theming": "^8.2.4",
+ "@storybook/addon-actions": "^8.4.7",
+ "@storybook/addon-designs": "^8.0.4",
+ "@storybook/addon-essentials": "^8.4.7",
+ "@storybook/addon-interactions": "^8.4.7",
+ "@storybook/addon-links": "^8.4.7",
+ "@storybook/addon-themes": "^8.4.7",
+ "@storybook/manager-api": "^8.4.7",
+ "@storybook/react": "^8.4.7",
+ "@storybook/react-vite": "^8.4.7",
+ "@storybook/test": "^8.4.7",
+ "@storybook/theming": "^8.4.7",
"@svgr/plugin-jsx": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
@@ -226,7 +225,7 @@
"react-dom": "^18.2.0",
"react-select-event": "^5.5.1",
"react-test-renderer": "^18.2.0",
- "storybook": "^8.2.4",
+ "storybook": "^8.4.7",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"timers-browserify": "^2.0.12",
diff --git a/packages/synapse-react-client/src/components/ChallengeTeamWizard/ChallengeTeamWizard.stories.tsx b/packages/synapse-react-client/src/components/ChallengeTeamWizard/ChallengeTeamWizard.stories.tsx
index e08925023d..e8f4b791ac 100644
--- a/packages/synapse-react-client/src/components/ChallengeTeamWizard/ChallengeTeamWizard.stories.tsx
+++ b/packages/synapse-react-client/src/components/ChallengeTeamWizard/ChallengeTeamWizard.stories.tsx
@@ -1,9 +1,11 @@
import { Meta, StoryObj } from '@storybook/react'
-import ChallengeTeamWizard from './ChallengeTeamWizard'
-import mockProject from '../../mocks/entity/mockProject'
import { fn } from '@storybook/test'
+import mockProject from '../../mocks/entity/mockProject'
+import ChallengeTeamWizard, {
+ ChallengeTeamWizardProps,
+} from './ChallengeTeamWizard'
-const meta = {
+const meta: Meta = {
title: 'Synapse/Challenge/ChallengeTeamWizard',
component: ChallengeTeamWizard,
argTypes: {
diff --git a/packages/synapse-react-client/src/components/EntityFinder/EntityFinderModal.stories.ts b/packages/synapse-react-client/src/components/EntityFinder/EntityFinderModal.stories.ts
index 7ee3ebbeb7..a407986c35 100644
--- a/packages/synapse-react-client/src/components/EntityFinder/EntityFinderModal.stories.ts
+++ b/packages/synapse-react-client/src/components/EntityFinder/EntityFinderModal.stories.ts
@@ -1,26 +1,18 @@
import { Meta, StoryObj } from '@storybook/react'
-import { EntityFinderModal } from './EntityFinderModal'
+import { fn } from '@storybook/test'
import {
- SinglePane as EntityFinderSinglePane,
DualPane as EntityFinderDualPane,
+ SinglePane as EntityFinderSinglePane,
} from './EntityFinder.stories'
-import { fn } from '@storybook/test'
+import { EntityFinderModal } from './EntityFinderModal'
-const meta = {
+const meta: Meta = {
title: 'Synapse/EntityFinderModal',
component: EntityFinderModal,
args: {
onConfirm: fn(),
onCancel: fn(),
},
- argTypes: {
- versionSelection: {
- options: ['REQUIRED', 'DISABLED', 'TRACKED', 'UNTRACKED'],
- control: {
- type: 'select',
- },
- },
- },
} satisfies Meta
export default meta
type Story = StoryObj
diff --git a/packages/synapse-react-client/src/components/EntityUpload/EntityUploadModal.stories.ts b/packages/synapse-react-client/src/components/EntityUpload/EntityUploadModal.stories.ts
index 4f886a782f..0aacaba680 100644
--- a/packages/synapse-react-client/src/components/EntityUpload/EntityUploadModal.stories.ts
+++ b/packages/synapse-react-client/src/components/EntityUpload/EntityUploadModal.stories.ts
@@ -1,9 +1,9 @@
import { Meta, StoryObj } from '@storybook/react'
import { fn } from '@storybook/test'
import mockProjectEntityData from '../../mocks/entity/mockProject'
-import { EntityUploadModal } from './EntityUploadModal'
+import { EntityUploadModal, EntityUploadModalProps } from './EntityUploadModal'
-const meta = {
+const meta: Meta = {
title: 'Synapse/Upload/EntityUploadModal',
component: EntityUploadModal,
args: {
diff --git a/packages/synapse-react-client/src/components/EntityUpload/EntityUploadModal.tsx b/packages/synapse-react-client/src/components/EntityUpload/EntityUploadModal.tsx
index aee540e561..9e53d0a275 100644
--- a/packages/synapse-react-client/src/components/EntityUpload/EntityUploadModal.tsx
+++ b/packages/synapse-react-client/src/components/EntityUpload/EntityUploadModal.tsx
@@ -2,9 +2,9 @@ import { Box, Button, Tab, Tabs } from '@mui/material'
import {
ForwardedRef,
forwardRef,
+ KeyboardEvent,
useRef,
useState,
- KeyboardEvent,
} from 'react'
import { UploaderState } from '../../utils/hooks/useUploadFileEntity/useUploadFileEntities'
import { DialogBase } from '../DialogBase'
@@ -12,7 +12,7 @@ import { displayToast } from '../ToastMessage/ToastMessage'
import { EntityUpload, EntityUploadHandle } from './EntityUpload'
import { LinkToURL, LinkToURLHandle } from './LinkToURL'
-type EntityUploadModalProps = {
+export type EntityUploadModalProps = {
entityId: string
open: boolean
onClose: () => void
diff --git a/packages/synapse-react-client/src/components/EntityUpload/FileUploadProgress.stories.ts b/packages/synapse-react-client/src/components/EntityUpload/FileUploadProgress.stories.ts
index eb216bcde5..8549fdbcf1 100644
--- a/packages/synapse-react-client/src/components/EntityUpload/FileUploadProgress.stories.ts
+++ b/packages/synapse-react-client/src/components/EntityUpload/FileUploadProgress.stories.ts
@@ -1,8 +1,11 @@
import { Meta, StoryObj } from '@storybook/react'
import { fn } from '@storybook/test'
-import { FileUploadProgress } from './FileUploadProgress'
+import {
+ FileUploadProgress,
+ FileUploadProgressProps,
+} from './FileUploadProgress'
-const meta = {
+const meta: Meta = {
title: 'Synapse/Upload/FileUploadProgress',
component: FileUploadProgress,
args: {
diff --git a/packages/synapse-react-client/src/components/Evaluation/EvaluationEditorPage.stories.ts b/packages/synapse-react-client/src/components/Evaluation/EvaluationEditorPage.stories.ts
index ee5f61edff..7854384e6a 100644
--- a/packages/synapse-react-client/src/components/Evaluation/EvaluationEditorPage.stories.ts
+++ b/packages/synapse-react-client/src/components/Evaluation/EvaluationEditorPage.stories.ts
@@ -1,13 +1,16 @@
import { Meta, StoryObj } from '@storybook/react'
-import { EvaluationEditorPage } from './EvaluationEditorPage'
-import { MOCK_REPO_ORIGIN } from '../../utils/functions/getEndpoint'
+import { fn } from '@storybook/test'
+import dayjs from 'dayjs'
import { rest } from 'msw'
import { getUserProfileHandlers } from '../../mocks/msw/handlers/userProfileHandlers'
import { MOCK_USER_ID } from '../../mocks/user/mock_user_profile'
-import dayjs from 'dayjs'
-import { fn } from '@storybook/test'
+import { MOCK_REPO_ORIGIN } from '../../utils/functions/getEndpoint'
+import {
+ EvaluationEditorPage,
+ EvaluationEditorPageProps,
+} from './EvaluationEditorPage'
-const meta = {
+const meta: Meta = {
title: 'Synapse/Challenge/EvaluationEditorPage',
component: EvaluationEditorPage,
args: {
diff --git a/packages/synapse-react-client/src/components/Markdown/MarkdownPopover.stories.tsx b/packages/synapse-react-client/src/components/Markdown/MarkdownPopover.stories.tsx
index 30d29ca2df..833a4409d3 100644
--- a/packages/synapse-react-client/src/components/Markdown/MarkdownPopover.stories.tsx
+++ b/packages/synapse-react-client/src/components/Markdown/MarkdownPopover.stories.tsx
@@ -1,6 +1,6 @@
import { Meta, StoryObj } from '@storybook/react'
import { MarkdownPopover, MarkdownPopoverProps } from './MarkdownPopover'
-import { userEvent, within } from '@storybook/testing-library'
+import { userEvent, within } from '@storybook/test'
import { InfoTwoTone } from '@mui/icons-material'
const meta: Meta = {
diff --git a/packages/synapse-react-client/src/components/SynapseForm/WarningDialog.stories.tsx b/packages/synapse-react-client/src/components/SynapseForm/WarningDialog.stories.tsx
index 9c94d1d043..c809786df8 100644
--- a/packages/synapse-react-client/src/components/SynapseForm/WarningDialog.stories.tsx
+++ b/packages/synapse-react-client/src/components/SynapseForm/WarningDialog.stories.tsx
@@ -1,8 +1,8 @@
import { Meta, StoryObj } from '@storybook/react'
-import { WarningDialog, WarningDialogProps } from './WarningDialog'
import { fn } from '@storybook/test'
+import { WarningDialog, WarningDialogProps } from './WarningDialog'
-const meta = {
+const meta: Meta = {
title: 'UI/WarningDialog',
component: WarningDialog,
render: args => {
diff --git a/packages/synapse-react-client/src/components/TanStackTable/ColumnHeaderEnumFilter.test.tsx b/packages/synapse-react-client/src/components/TanStackTable/ColumnHeaderEnumFilter.test.tsx
index cac12591e7..06f25280f2 100644
--- a/packages/synapse-react-client/src/components/TanStackTable/ColumnHeaderEnumFilter.test.tsx
+++ b/packages/synapse-react-client/src/components/TanStackTable/ColumnHeaderEnumFilter.test.tsx
@@ -9,7 +9,7 @@ import {
getFacetedUniqueValues as defaultGetFacetedUniqueValues,
} from '@tanstack/react-table'
import { ColumnHeaderEnumFilter } from './ColumnHeaderEnumFilter'
-import { userEvent } from '@storybook/testing-library'
+import { userEvent } from '@testing-library/user-event'
type TestTableRow = {
multiSelect: string
@@ -139,7 +139,7 @@ function ColumnHeaderEnumFilterTestComponent(props: { columnId: string }) {
return
}
-function renderComponent(columnId: string) {
+function renderComponent(columnId: string) {
const user = userEvent.setup()
render(, {
wrapper: createWrapper(),
diff --git a/packages/synapse-react-client/src/components/error/ErrorPage.stories.ts b/packages/synapse-react-client/src/components/error/ErrorPage.stories.ts
index 89b76f17af..6c968161b5 100644
--- a/packages/synapse-react-client/src/components/error/ErrorPage.stories.ts
+++ b/packages/synapse-react-client/src/components/error/ErrorPage.stories.ts
@@ -1,8 +1,8 @@
import { Meta, StoryObj } from '@storybook/react'
-import ErrorPage, { SynapseErrorType } from './ErrorPage'
import { fn } from '@storybook/test'
+import ErrorPage, { ErrorPageProps, SynapseErrorType } from './ErrorPage'
-const meta = {
+const meta: Meta = {
title: 'Synapse/ErrorPage',
args: {
gotoPlace: fn(),
diff --git a/packages/synapse-react-client/stories/stubs/Tooltip/MuiTooltip.stories.tsx b/packages/synapse-react-client/stories/stubs/Tooltip/MuiTooltip.stories.tsx
index e84ee35b31..ef94121521 100644
--- a/packages/synapse-react-client/stories/stubs/Tooltip/MuiTooltip.stories.tsx
+++ b/packages/synapse-react-client/stories/stubs/Tooltip/MuiTooltip.stories.tsx
@@ -2,7 +2,7 @@ import { Meta, StoryObj } from '@storybook/react'
import { Link } from '@mui/material'
import { InfoTwoTone } from '@mui/icons-material'
import { Tooltip } from './MuiTooltip'
-import { userEvent, within } from '@storybook/testing-library'
+import { userEvent, within } from '@storybook/test'
const meta = {
title: 'UI/MUI/Tooltip',
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 5c91cb2cd4..0f971b789a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1645,41 +1645,38 @@ importers:
specifier: ^2.2.0
version: 2.2.0
'@storybook/addon-actions':
- specifier: ^8.2.4
- version: 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
+ specifier: ^8.4.7
+ version: 8.4.7(storybook@8.4.7(prettier@2.8.8))
'@storybook/addon-designs':
- specifier: ^8.0.3
- version: 8.0.3(@storybook/blocks@8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))))(@storybook/components@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))))(@storybook/theming@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ specifier: ^8.0.4
+ version: 8.0.4(@storybook/blocks@8.4.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8)))(@storybook/components@8.4.7(storybook@8.4.7(prettier@2.8.8)))(@storybook/theming@8.4.7(storybook@8.4.7(prettier@2.8.8)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@storybook/addon-essentials':
- specifier: ^8.2.4
- version: 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
+ specifier: ^8.4.7
+ version: 8.4.7(@types/react@18.3.12)(storybook@8.4.7(prettier@2.8.8))
'@storybook/addon-interactions':
- specifier: ^8.2.4
- version: 8.2.4(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.3)))(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(vitest@1.6.0(@types/node@20.14.10)(jsdom@21.1.2)(sass@1.77.6)(terser@5.31.2))
+ specifier: ^8.4.7
+ version: 8.4.7(storybook@8.4.7(prettier@2.8.8))
'@storybook/addon-links':
- specifier: ^8.2.4
- version: 8.2.4(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
+ specifier: ^8.4.7
+ version: 8.4.7(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))
'@storybook/addon-themes':
- specifier: ^8.2.4
- version: 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
+ specifier: ^8.4.7
+ version: 8.4.7(storybook@8.4.7(prettier@2.8.8))
'@storybook/manager-api':
- specifier: ^8.2.4
- version: 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
+ specifier: ^8.4.7
+ version: 8.4.7(storybook@8.4.7(prettier@2.8.8))
'@storybook/react':
- specifier: ^8.2.4
- version: 8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(typescript@5.5.3)
+ specifier: ^8.4.7
+ version: 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@2.8.8)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))(typescript@5.5.3)
'@storybook/react-vite':
- specifier: ^8.2.4
- version: 8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.27.2)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(typescript@5.5.3)(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))
+ specifier: ^8.4.7
+ version: 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@2.8.8)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.27.2)(storybook@8.4.7(prettier@2.8.8))(typescript@5.5.3)(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))
'@storybook/test':
- specifier: ^8.2.4
- version: 8.2.4(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.3)))(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(vitest@1.6.0(@types/node@20.14.10)(jsdom@21.1.2)(sass@1.77.6)(terser@5.31.2))
- '@storybook/testing-library':
- specifier: ^0.2.2
- version: 0.2.2
+ specifier: ^8.4.7
+ version: 8.4.7(storybook@8.4.7(prettier@2.8.8))
'@storybook/theming':
- specifier: ^8.2.4
- version: 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
+ specifier: ^8.4.7
+ version: 8.4.7(storybook@8.4.7(prettier@2.8.8))
'@svgr/plugin-jsx':
specifier: ^8.1.0
version: 8.1.0(@svgr/core@8.1.0(typescript@5.5.3))
@@ -1799,7 +1796,7 @@ importers:
version: 29.7.0(@babel/core@7.24.7)
babel-loader:
specifier: ^9.1.3
- version: 9.1.3(@babel/core@7.24.7)(webpack@5.93.0(esbuild@0.21.5))
+ version: 9.1.3(@babel/core@7.24.7)(webpack@5.93.0(esbuild@0.23.1))
buffer:
specifier: ^6.0.3
version: 6.0.3
@@ -1859,7 +1856,7 @@ importers:
version: 1.0.1
postcss-normalize:
specifier: ^10.0.1
- version: 10.0.1(browserslist@4.23.2)(postcss@8.4.39)
+ version: 10.0.1(browserslist@4.23.3)(postcss@8.4.39)
prettier:
specifier: ^2.8.8
version: 2.8.8
@@ -1879,8 +1876,8 @@ importers:
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
storybook:
- specifier: ^8.2.4
- version: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ specifier: ^8.4.7
+ version: 8.4.7(prettier@2.8.8)
stream-browserify:
specifier: ^3.0.0
version: 3.0.0
@@ -2193,10 +2190,6 @@ packages:
resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.24.8':
- resolution: {integrity: sha512-47DG+6F5SzOi0uEvK4wMShmn5yY0mVjVJoWTphdY2B4Rx9wHgjK7Yhtr0ru6nE+sn0v38mzrWOlah0p/YlHHOQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/generator@7.26.3':
resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==}
engines: {node: '>=6.9.0'}
@@ -2217,10 +2210,6 @@ packages:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
- resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-compilation-targets@7.24.7':
resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
engines: {node: '>=6.9.0'}
@@ -2235,24 +2224,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-class-features-plugin@7.24.8':
- resolution: {integrity: sha512-4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-create-regexp-features-plugin@7.22.15':
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.24.7':
- resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-define-polyfill-provider@0.5.0':
resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==}
peerDependencies:
@@ -2284,10 +2261,6 @@ packages:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.24.8':
- resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-module-imports@7.24.7':
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
@@ -2312,10 +2285,6 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-optimise-call-expression@7.24.7':
- resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-plugin-utils@7.24.7':
resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
engines: {node: '>=6.9.0'}
@@ -2334,24 +2303,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-remap-async-to-generator@7.24.7':
- resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-replace-supers@7.22.20':
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.24.7':
- resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-simple-access@7.24.7':
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
@@ -2360,10 +2317,6 @@ packages:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
- resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-split-export-declaration@7.24.7':
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
@@ -2400,10 +2353,6 @@ packages:
resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.24.7':
- resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helpers@7.24.7':
resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
engines: {node: '>=6.9.0'}
@@ -2431,48 +2380,24 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7':
- resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3':
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7':
- resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3':
resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
- resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
-
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7':
resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7':
- resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/plugin-proposal-class-properties@7.18.6':
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
@@ -2524,36 +2449,18 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-flow@7.23.3':
- resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-import-assertions@7.23.3':
resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.24.7':
- resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-import-attributes@7.23.3':
resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.24.7':
- resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
@@ -2636,450 +2543,222 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-arrow-functions@7.24.7':
- resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-async-generator-functions@7.23.9':
resolution: {integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.24.7':
- resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-async-to-generator@7.23.3':
resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.24.7':
- resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-block-scoped-functions@7.23.3':
resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.24.7':
- resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-block-scoping@7.23.4':
resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.24.7':
- resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-class-properties@7.23.3':
resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.24.7':
- resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-class-static-block@7.23.4':
resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-class-static-block@7.24.7':
- resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
-
'@babel/plugin-transform-classes@7.23.8':
resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-classes@7.24.8':
- resolution: {integrity: sha512-VXy91c47uujj758ud9wx+OMgheXm4qJfyhj1P18YvlrQkNOSrwsteHk+EFS3OMGfhMhpZa0A+81eE7G4QC+3CA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-computed-properties@7.23.3':
resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.24.7':
- resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-destructuring@7.23.3':
resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.24.8':
- resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-dotall-regex@7.23.3':
resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.24.7':
- resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-duplicate-keys@7.23.3':
resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.24.7':
- resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-dynamic-import@7.23.4':
resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dynamic-import@7.24.7':
- resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-exponentiation-operator@7.23.3':
resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.24.7':
- resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-export-namespace-from@7.23.4':
resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.24.7':
- resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-flow-strip-types@7.23.3':
- resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-for-of@7.23.6':
resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.24.7':
- resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-function-name@7.23.3':
resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.24.7':
- resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-json-strings@7.23.4':
resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.24.7':
- resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-literals@7.23.3':
resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.24.7':
- resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-logical-assignment-operators@7.23.4':
resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.24.7':
- resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-member-expression-literals@7.23.3':
resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.24.7':
- resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-modules-amd@7.23.3':
resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.24.7':
- resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-modules-commonjs@7.23.3':
resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.24.8':
- resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-modules-systemjs@7.23.9':
resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.24.7':
- resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-modules-umd@7.23.3':
resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.24.7':
- resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-named-capturing-groups-regex@7.22.5':
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7':
- resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/plugin-transform-new-target@7.23.3':
resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-new-target@7.24.7':
- resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-nullish-coalescing-operator@7.23.4':
resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
- resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-numeric-separator@7.23.4':
resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.24.7':
- resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-object-rest-spread@7.24.0':
resolution: {integrity: sha512-y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.24.7':
- resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-object-super@7.23.3':
resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.24.7':
- resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-optional-catch-binding@7.23.4':
resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.24.7':
- resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-optional-chaining@7.23.4':
resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.24.8':
- resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-parameters@7.23.3':
resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.24.7':
- resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-private-methods@7.23.3':
resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.24.7':
- resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-private-property-in-object@7.23.4':
resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.24.7':
- resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-property-literals@7.23.3':
resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.24.7':
- resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-react-display-name@7.23.3':
resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==}
engines: {node: '>=6.9.0'}
@@ -3122,24 +2801,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.24.7':
- resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-reserved-words@7.23.3':
resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.24.7':
- resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-runtime@7.25.4':
resolution: {integrity: sha512-8hsyG+KUYGY0coX6KUCDancA0Vw225KJ2HJO0yCNr1vq5r+lJTleDaJf0K7iOhjw4SWhu03TMBzYTJ9krmzULQ==}
engines: {node: '>=6.9.0'}
@@ -3152,60 +2819,30 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.24.7':
- resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-spread@7.23.3':
resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.24.7':
- resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-sticky-regex@7.23.3':
resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.24.7':
- resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-template-literals@7.23.3':
resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.24.7':
- resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-typeof-symbol@7.23.3':
resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.24.8':
- resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-typescript@7.23.6':
resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
engines: {node: '>=6.9.0'}
@@ -3218,66 +2855,30 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.24.7':
- resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-unicode-property-regex@7.23.3':
resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.24.7':
- resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-unicode-regex@7.23.3':
resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.24.7':
- resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-unicode-sets-regex@7.23.3':
resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-unicode-sets-regex@7.24.7':
- resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/preset-env@7.24.0':
resolution: {integrity: sha512-ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-env@7.24.8':
- resolution: {integrity: sha512-vObvMZB6hNWuDxhSaEPTKCwcqkAIuDtE+bQGn4XMXne1DSLzFVY8Vmj1bm+mUQXYNN8NmaQEO+r8MMbzPr1jBQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/preset-flow@7.24.0':
- resolution: {integrity: sha512-cum/nSi82cDaSJ21I4PgLTVlj0OXovFk6GRguJYe/IKg6y6JHLTbJhybtX4k35WT9wdeJfEVjycTixMhBHd0Dg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
@@ -3295,12 +2896,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/register@7.23.7':
- resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/regjsgen@0.8.0':
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
@@ -3324,10 +2919,6 @@ packages:
resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.8':
- resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/traverse@7.26.4':
resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==}
engines: {node: '>=6.9.0'}
@@ -3344,9 +2935,6 @@ packages:
resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
engines: {node: '>=6.9.0'}
- '@base2/pretty-print-object@1.0.1':
- resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==}
-
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -4072,11 +3660,11 @@ packages:
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- '@joshwooding/vite-plugin-react-docgen-typescript@0.3.1':
- resolution: {integrity: sha512-pdoMZ9QaPnVlSM+SdU/wgg0nyD/8wQ7y90ttO2CMCyrrm7RxveYIJ5eNfjPaoMFqW41LZra7QO9j+xV4Y18Glw==}
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.4.2':
+ resolution: {integrity: sha512-feQ+ntr+8hbVudnsTUapiMN9q8T90XA1d5jn9QzY09sNoj4iD9wi0PY1vsBFTda4ZjEaxRK9S81oarR2nj7TFQ==}
peerDependencies:
typescript: '>= 4.3.x'
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
peerDependenciesMeta:
typescript:
optional: true
@@ -5122,10 +4710,6 @@ packages:
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
- '@sindresorhus/merge-streams@2.3.0':
- resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
- engines: {node: '>=18'}
-
'@sinonjs/commons@3.0.1':
resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
@@ -5335,27 +4919,27 @@ packages:
resolution: {integrity: sha512-/aMXPANhMOlMPjfPtSrDfPeVP8l56SJlz93xeiLmhLe5xvlXA5T3abZ2ilEsDEPeY9T/wnN/vNGn9wa1SbufWA==}
engines: {node: '>=16.0.0'}
- '@storybook/addon-actions@8.2.4':
- resolution: {integrity: sha512-l1dlzWBBkR/5aullsX8N1ZbYr2bkeHPAaMCRy1jG5BBA8IHbi55JFwmJ8XF2gXkT2GyAZnePzb43RuLXz4KxFQ==}
+ '@storybook/addon-actions@8.4.7':
+ resolution: {integrity: sha512-mjtD5JxcPuW74T6h7nqMxWTvDneFtokg88p6kQ5OnC1M259iAXb//yiSZgu/quunMHPCXSiqn4FNOSgASTSbsA==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-backgrounds@8.2.4':
- resolution: {integrity: sha512-4oU25rFyr4OgMxHe4RpLJ7lxVwUDfdTi1j/YVyHfYv8koTqjagso8bv0uj0ujP5C3dSsVO0sp3/JOfPDkEUtrA==}
+ '@storybook/addon-backgrounds@8.4.7':
+ resolution: {integrity: sha512-I4/aErqtFiazcoWyKafOAm3bLpxTj6eQuH/woSbk1Yx+EzN+Dbrgx1Updy8//bsNtKkcrXETITreqHC+a57DHQ==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-controls@8.2.4':
- resolution: {integrity: sha512-e56aUYhxyR8zJJstRAUP3WILhWTcvgRf5bysTtiyjFAL7U47cuCr043+IYEsxLkXhuZTKX2pcYSrjBtT5bYkVA==}
+ '@storybook/addon-controls@8.4.7':
+ resolution: {integrity: sha512-377uo5IsJgXLnQLJixa47+11V+7Wn9KcDEw+96aGCBCfLbWNH8S08tJHHnSu+jXg9zoqCAC23MetntVp6LetHA==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-designs@8.0.3':
- resolution: {integrity: sha512-uArLGYDwiRDjgJHgMotOLGGYK4hq1hBb0PfTJrlBnPy6evky9khrqf4KmXrIh4ViOyZ5t01THe1DnBj52DwrEQ==}
+ '@storybook/addon-designs@8.0.4':
+ resolution: {integrity: sha512-BrEWks1BRnZis2e8OoE1LhFS+x2d094Tzpbb3jQBve2IfDv/X006RSuy1WyplNxskdYdBESCH45MlRn4lhP5ew==}
peerDependencies:
- '@storybook/blocks': ^8.0.0
- '@storybook/components': ^8.0.0
- '@storybook/theming': ^8.0.0
+ '@storybook/blocks': ^8.0.0 || ^8.1.0-0 || ^8.2.0-0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
+ '@storybook/components': ^8.0.0 || ^8.1.0-0 || ^8.2.0-0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
+ '@storybook/theming': ^8.0.0 || ^8.1.0-0 || ^8.2.0-0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
@@ -5370,103 +4954,95 @@ packages:
react-dom:
optional: true
- '@storybook/addon-docs@8.2.4':
- resolution: {integrity: sha512-oyrDw4nGfntu5Hkhr2Qt1wUOyLaVVERQekYyejyir92QhM10UeA7ZarPXNLfCTj7rbTrWmM1Waka9Tsf8TGMrw==}
+ '@storybook/addon-docs@8.4.7':
+ resolution: {integrity: sha512-NwWaiTDT5puCBSUOVuf6ME7Zsbwz7Y79WF5tMZBx/sLQ60vpmJVQsap6NSjvK1Ravhc21EsIXqemAcBjAWu80w==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-essentials@8.2.4':
- resolution: {integrity: sha512-4upNauDJAJxauxnoUpUvzDnLo18C2yTVxgg+Id9wrKpt9C+CYH2oXyXzxoYGucYWZEe7zgCO6rWrGrKEisiLPQ==}
+ '@storybook/addon-essentials@8.4.7':
+ resolution: {integrity: sha512-+BtZHCBrYtQKILtejKxh0CDRGIgTl9PumfBOKRaihYb4FX1IjSAxoV/oo/IfEjlkF5f87vouShWsRa8EUauFDw==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-highlight@8.2.4':
- resolution: {integrity: sha512-Ll/2y0m/q9ko9jFt40qsiee4fds6vpcwwxi3mPAVwRV/J7PpMzPkoLxM54bKpeHiWdTeGCXRguXNvyeQMQf3pg==}
+ '@storybook/addon-highlight@8.4.7':
+ resolution: {integrity: sha512-whQIDBd3PfVwcUCrRXvCUHWClXe9mQ7XkTPCdPo4B/tZ6Z9c6zD8JUHT76ddyHivixFLowMnA8PxMU6kCMAiNw==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-interactions@8.2.4':
- resolution: {integrity: sha512-jGGTCKfqZzq3DSZF+cimD8FBcO8X9yu/cNTcxHtx6TN9McV69sTiSzOpGgbWkLjLjP0XU12NQGqFw38tIn7n9Q==}
+ '@storybook/addon-interactions@8.4.7':
+ resolution: {integrity: sha512-fnufT3ym8ht3HHUIRVXAH47iOJW/QOb0VSM+j269gDuvyDcY03D1civCu1v+eZLGaXPKJ8vtjr0L8zKQ/4P0JQ==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-links@8.2.4':
- resolution: {integrity: sha512-1FgD6YXdXXSEDrp2aO4LxYt/X7LnBYx7cLlFla+xbn1CZLGqWLLeOT+BFd29wxpzs3u1Tap9r1iz1vRYL5ziyg==}
+ '@storybook/addon-links@8.4.7':
+ resolution: {integrity: sha512-L/1h4dMeMKF+MM0DanN24v5p3faNYbbtOApMgg7SlcBT/tgo3+cAjkgmNpYA8XtKnDezm+T2mTDhB8mmIRZpIQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.2.4
+ storybook: ^8.4.7
peerDependenciesMeta:
react:
optional: true
- '@storybook/addon-measure@8.2.4':
- resolution: {integrity: sha512-bSyE3mGDaaIKoe6Kt/f20YXKsn8WSoJUHrfKA68gbb+H3tegVQaqeS2KY5YzLqvjHe1qSmrO132NJt8RixLOPQ==}
+ '@storybook/addon-measure@8.4.7':
+ resolution: {integrity: sha512-QfvqYWDSI5F68mKvafEmZic3SMiK7zZM8VA0kTXx55hF/+vx61Mm0HccApUT96xCXIgmwQwDvn9gS4TkX81Dmw==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-outline@8.2.4':
- resolution: {integrity: sha512-1C6NrvSDREgCZ7o/1n7Ca81uDDzrSrzWiOkh4OeA7PPQ/445cAOX2OMvxzNkKDIT9GLCLNi9M5XIVyGxJVS4dQ==}
+ '@storybook/addon-outline@8.4.7':
+ resolution: {integrity: sha512-6LYRqUZxSodmAIl8icr585Oi8pmzbZ90aloZJIpve+dBAzo7ydYrSQxxoQEVltXbKf3VeVcrs64ouAYqjisMYA==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-themes@8.2.4':
- resolution: {integrity: sha512-IPOu3dOnJdQbebCNSgXSa8KW5dalHPJU6wdqsAtwaWH4xtJ+nGdNzRWroVkbC6Q1pyjaELgAywS1aMqqukJLDQ==}
+ '@storybook/addon-themes@8.4.7':
+ resolution: {integrity: sha512-MZa3eWTz0b3BQvF71WqLqvEYzDtbMhQx1IIluWBMMGzJ4sWBzLX85LoNMUlHsNd4EhEmAZ1xQQFIJpDWTBx0nQ==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-toolbars@8.2.4':
- resolution: {integrity: sha512-iPnSr+hdz40Uoqg2cimyWf01/Y8GdgdMKB+b47TGIxtn9SEFBXck00ZG8ttwBvEsecu9K9CDt20fIOnr6oK5tQ==}
+ '@storybook/addon-toolbars@8.4.7':
+ resolution: {integrity: sha512-OSfdv5UZs+NdGB+nZmbafGUWimiweJ/56gShlw8Neo/4jOJl1R3rnRqqY7MYx8E4GwoX+i3GF5C3iWFNQqlDcw==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/addon-viewport@8.2.4':
- resolution: {integrity: sha512-58DcoX0xGpWlJfc0iLDjggkVPYzT4JdCZA2ioK9SQXQMsUzGFwR5PAAJv1tivYp7467tNkXvcM3QTb3Q3g8p4g==}
+ '@storybook/addon-viewport@8.4.7':
+ resolution: {integrity: sha512-hvczh/jjuXXcOogih09a663sRDDSATXwbE866al1DXgbDFraYD/LxX/QDb38W9hdjU9+Qhx8VFIcNWoMQns5HQ==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/blocks@8.2.4':
- resolution: {integrity: sha512-Hl2Dpg41YiJLSVXxjEJPjgPShrDJM3RY6HEEOjqTcAADsheX1IHAWXMJSJGMmne3Sew6VdJXPuHBIOFV4suZxg==}
+ '@storybook/blocks@8.4.7':
+ resolution: {integrity: sha512-+QH7+JwXXXIyP3fRCxz/7E2VZepAanXJM7G8nbR3wWsqWgrRp4Wra6MvybxAYCxU7aNfJX5c+RW84SNikFpcIA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.2.4
+ storybook: ^8.4.7
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
- '@storybook/builder-vite@8.2.4':
- resolution: {integrity: sha512-hDx0ZLcnFrIJaVoFMu41d9w1uWmwy/DDUuIbSd0T7xHwWyVqgI8lmaQlBIp81/QmSKaUB964UduHcdIjkoWoYA==}
+ '@storybook/builder-vite@8.4.7':
+ resolution: {integrity: sha512-LovyXG5VM0w7CovI/k56ZZyWCveQFVDl0m7WwetpmMh2mmFJ+uPQ35BBsgTvTfc8RHi+9Q3F58qP1MQSByXi9g==}
peerDependencies:
- '@preact/preset-vite': '*'
- storybook: ^8.2.4
- typescript: '>= 4.3.x'
- vite: ^4.0.0 || ^5.0.0
- vite-plugin-glimmerx: '*'
- peerDependenciesMeta:
- '@preact/preset-vite':
- optional: true
- typescript:
- optional: true
- vite-plugin-glimmerx:
- optional: true
-
- '@storybook/codemod@8.2.4':
- resolution: {integrity: sha512-QcZdqjX4NvkVcWR3yI9it3PfqmBOCR+3iY6j4PmG7p5IE0j9kXMKBbeFrBRprSijHKlwcjbc3bRx2SnKF6AFEg==}
+ storybook: ^8.4.7
+ vite: ^4.0.0 || ^5.0.0 || ^6.0.0
- '@storybook/components@8.2.4':
- resolution: {integrity: sha512-JLT1RoR/RXX+ZTeFoY85CRHb9Zz3l0PRRUSetEjoIJdnBGeL5C38bs0s9QnYjpCDLUlhdYhTln+GzmbyH8ocpA==}
+ '@storybook/components@8.4.7':
+ resolution: {integrity: sha512-uyJIcoyeMWKAvjrG9tJBUCKxr2WZk+PomgrgrUwejkIfXMO76i6jw9BwLa0NZjYdlthDv30r9FfbYZyeNPmF0g==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
- '@storybook/core@8.2.4':
- resolution: {integrity: sha512-jePmsGZT2hhUNQs8ED6+hFVt2m4hrMseO8kkN7Mcsve1MIujzHUS7Gjo4uguBwHJJOtiXB2fw4OSiQCmsXscZA==}
+ '@storybook/core@8.4.7':
+ resolution: {integrity: sha512-7Z8Z0A+1YnhrrSXoKKwFFI4gnsLbWzr8fnDCU6+6HlDukFYh8GHRcZ9zKfqmy6U3hw2h8H5DrHsxWfyaYUUOoA==}
+ peerDependencies:
+ prettier: ^2 || ^3
+ peerDependenciesMeta:
+ prettier:
+ optional: true
- '@storybook/csf-plugin@8.2.4':
- resolution: {integrity: sha512-7V2tmeyAwv4/AQiBpB+7fCpphnY1yhcz+Zv9esUOHKqFn5+7u9FKpEXFFcf6fcbqXr2KoNw2F1EnTv3K/SxXrg==}
+ '@storybook/csf-plugin@8.4.7':
+ resolution: {integrity: sha512-Fgogplu4HImgC+AYDcdGm1rmL6OR1rVdNX1Be9C/NEXwOCpbbBwi0BxTf/2ZxHRk9fCeaPEcOdP5S8QHfltc1g==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
'@storybook/csf@0.1.11':
resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==}
@@ -5474,69 +5050,68 @@ packages:
'@storybook/global@5.0.0':
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
- '@storybook/icons@1.2.9':
- resolution: {integrity: sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==}
+ '@storybook/icons@1.3.0':
+ resolution: {integrity: sha512-Nz/UzeYQdUZUhacrPyfkiiysSjydyjgg/p0P9HxB4p/WaJUUjMAcaoaLgy3EXx61zZJ3iD36WPuDkZs5QYrA0A==}
engines: {node: '>=14.0.0'}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- '@storybook/instrumenter@8.2.4':
- resolution: {integrity: sha512-szcRjg7XhtobDW4omexWqBRlmRyrKW9p8uF9k6hanJqhHl4iG9D8xbi3SdaRhcn5KN1Wqv6RDAB+kXzHlFfdKA==}
+ '@storybook/instrumenter@8.4.7':
+ resolution: {integrity: sha512-k6NSD3jaRCCHAFtqXZ7tw8jAzD/yTEWXGya+REgZqq5RCkmJ+9S4Ytp/6OhQMPtPFX23gAuJJzTQVLcCr+gjRg==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/manager-api@8.2.4':
- resolution: {integrity: sha512-ayiOtcGupSeLCi2doEsRpALNPo4MBWYruc+e3jjkeVJQIg9A1ipSogNQh8unuOmq9rezO4/vcNBd6MxLs3xLWg==}
+ '@storybook/manager-api@8.4.7':
+ resolution: {integrity: sha512-ELqemTviCxAsZ5tqUz39sDmQkvhVAvAgiplYy9Uf15kO0SP2+HKsCMzlrm2ue2FfkUNyqbDayCPPCB0Cdn/mpQ==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
- '@storybook/preview-api@8.2.4':
- resolution: {integrity: sha512-IxOiUYYzNnk1OOz3zQBhsa3P1fsgqeMBZcH7TjiQWs9osuWG20oqsFR6+Z3dxoW8IuQHvpnREGKvAbRsDsThcA==}
+ '@storybook/preview-api@8.4.7':
+ resolution: {integrity: sha512-0QVQwHw+OyZGHAJEXo6Knx+6/4er7n2rTDE5RYJ9F2E2Lg42E19pfdLlq2Jhoods2Xrclo3wj6GWR//Ahi39Eg==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
- '@storybook/react-dom-shim@8.2.4':
- resolution: {integrity: sha512-p2ypPWuKKFY/ij7yYjvdnrOcfdpxnAJd9D4/2Hm2eVioE4y8HQSND54t9OfkW+498Ez7ph4zW9ez005XqzH/+w==}
+ '@storybook/react-dom-shim@8.4.7':
+ resolution: {integrity: sha512-6bkG2jvKTmWrmVzCgwpTxwIugd7Lu+2btsLAqhQSzDyIj2/uhMNp8xIMr/NBDtLgq3nomt9gefNa9xxLwk/OMg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/react-vite@8.2.4':
- resolution: {integrity: sha512-4nDZC4uJKV6YCVzT/es0abQnd28CuU3cN4nyzxaBbI/XtCvYzkT7KLEo8csaS+1o1uEb8lY3ZLZ2a3jYlVPNJA==}
+ '@storybook/react-vite@8.4.7':
+ resolution: {integrity: sha512-iiY9iLdMXhDnilCEVxU6vQsN72pW3miaf0WSenOZRyZv3HdbpgOxI0qapOS0KCyRUnX9vTlmrSPTMchY4cAeOg==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.2.4
- vite: ^4.0.0 || ^5.0.0
+ storybook: ^8.4.7
+ vite: ^4.0.0 || ^5.0.0 || ^6.0.0
- '@storybook/react@8.2.4':
- resolution: {integrity: sha512-tRkEeFhwq2GeRsPwFc8dINI5L4mXanXaa7/JreB6ZcUeOZD8d81TWXCH9QyGvxfe0LW+DeNujA91mx5Yja35Zw==}
+ '@storybook/react@8.4.7':
+ resolution: {integrity: sha512-nQ0/7i2DkaCb7dy0NaT95llRVNYWQiPIVuhNfjr1mVhEP7XD090p0g7eqUmsx8vfdHh2BzWEo6CoBFRd3+EXxw==}
engines: {node: '>=18.0.0'}
peerDependencies:
+ '@storybook/test': 8.4.7
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.2.4
+ storybook: ^8.4.7
typescript: '>= 4.2.x'
peerDependenciesMeta:
+ '@storybook/test':
+ optional: true
typescript:
optional: true
- '@storybook/test@8.2.4':
- resolution: {integrity: sha512-boFjNFja4BNSbQhvmMlTVdQmZh36iM9+8w0sb7IK2e9Xnoi4+utupPNwBLvSsw4bRayK8+mP4Vk46O8h3TaiMw==}
+ '@storybook/test@8.4.7':
+ resolution: {integrity: sha512-AhvJsu5zl3uG40itSQVuSy5WByp3UVhS6xAnme4FWRwgSxhvZjATJ3AZkkHWOYjnnk+P2/sbz/XuPli1FVCWoQ==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.4.7
- '@storybook/testing-library@0.2.2':
- resolution: {integrity: sha512-L8sXFJUHmrlyU2BsWWZGuAjv39Jl1uAqUHdxmN42JY15M4+XCMjGlArdCCjDe1wpTSW6USYISA9axjZojgtvnw==}
- deprecated: In Storybook 8, this package functionality has been integrated to a new package called @storybook/test, which uses Vitest APIs for an improved experience. When upgrading to Storybook 8 with 'npx storybook@latest upgrade', you will get prompted and will get an automigration for the new package. Please migrate when you can.
-
- '@storybook/theming@8.2.4':
- resolution: {integrity: sha512-B4HQMzTeg1TgV9uPDIoDkMSnP839Y05I9+Tw60cilAD+jTqrCvMlccHfehsTzJk+gioAflunATcbU05TMZoeIQ==}
+ '@storybook/theming@8.4.7':
+ resolution: {integrity: sha512-99rgLEjf7iwfSEmdqlHkSG3AyLcK0sfExcr0jnc6rLiAkBhzuIsvcHjjUwkR210SOCgXqBPW0ZA6uhnuyppHLw==}
peerDependencies:
- storybook: ^8.2.4
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
'@svgr/babel-plugin-add-jsx-attribute@8.0.0':
resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==}
@@ -5634,38 +5209,13 @@ packages:
resolution: {integrity: sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==}
engines: {node: '>=12'}
- '@testing-library/dom@10.1.0':
- resolution: {integrity: sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==}
- engines: {node: '>=18'}
-
'@testing-library/dom@10.4.0':
resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
engines: {node: '>=18'}
- '@testing-library/dom@9.3.4':
- resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==}
- engines: {node: '>=14'}
-
- '@testing-library/jest-dom@6.4.5':
- resolution: {integrity: sha512-AguB9yvTXmCnySBP1lWjfNNUwpbElsaQ567lt2VdGqAdHtpieLgjmcVyv1q7PMIvLbgpDdkWV5Ydv3FEejyp2A==}
+ '@testing-library/jest-dom@6.5.0':
+ resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
- peerDependencies:
- '@jest/globals': '>= 28'
- '@types/bun': latest
- '@types/jest': '>= 28'
- jest: '>= 28'
- vitest: '>= 0.32'
- peerDependenciesMeta:
- '@jest/globals':
- optional: true
- '@types/bun':
- optional: true
- '@types/jest':
- optional: true
- jest:
- optional: true
- vitest:
- optional: true
'@testing-library/jest-dom@6.6.3':
resolution: {integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==}
@@ -5751,15 +5301,9 @@ packages:
'@types/base16@1.0.5':
resolution: {integrity: sha512-OzOWrTluG9cwqidEzC/Q6FAmIPcnZfm8BFRlIx0+UIUqnuAmi5OS88O0RpT3Yz6qdmqObvUhasrbNsCofE4W9A==}
- '@types/body-parser@1.19.5':
- resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
-
'@types/brainhubeu__react-carousel@1.15.0':
resolution: {integrity: sha512-dUwOz4LkUhbqiGH8+ud8L1ygfNZ01Z6lmU0tJkikF51TH/9g14dg6cJE5tLnDCxkpnJm1/0xv0+aRYSsg1xvLg==}
- '@types/connect@3.4.38':
- resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
-
'@types/cookie@0.3.3':
resolution: {integrity: sha512-LKVP3cgXBT9RYj+t+9FDKwS5tdI+rPBXaNSkma7hvqy35lc7mAokC2zsqWJH0LaqIt3B962nuYI77hsJoT1gow==}
@@ -5769,9 +5313,6 @@ packages:
'@types/cookie@0.6.0':
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
- '@types/cross-spawn@6.0.6':
- resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
-
'@types/d3-array@3.2.1':
resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
@@ -5874,42 +5415,21 @@ packages:
'@types/doctrine@0.0.9':
resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
- '@types/emscripten@1.39.10':
- resolution: {integrity: sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==}
-
- '@types/escodegen@0.0.6':
- resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==}
-
'@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
'@types/eslint@8.56.10':
resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
- '@types/estree@0.0.51':
- resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
-
'@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
- '@types/express-serve-static-core@4.17.43':
- resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==}
-
- '@types/express@4.17.21':
- resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
-
- '@types/find-cache-dir@3.2.1':
- resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==}
-
'@types/geojson@7946.0.14':
resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==}
- '@types/glob@7.2.0':
- resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
-
'@types/google.maps@3.55.2':
resolution: {integrity: sha512-JcTwzkxskR8DN/nnX96Pie3gGN3WHiPpuxzuQ9z3516o1bB243d8w8DHUJ8BohuzoT1o3HUFta2ns/mkZC8KRw==}
@@ -5919,18 +5439,12 @@ packages:
'@types/graceful-fs@4.1.9':
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
- '@types/hast@3.0.4':
- resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
-
'@types/history@4.7.11':
resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
'@types/hoist-non-react-statics@3.3.5':
resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==}
- '@types/http-errors@2.0.4':
- resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
-
'@types/invariant@2.2.37':
resolution: {integrity: sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==}
@@ -5995,15 +5509,6 @@ packages:
'@types/mdx@2.0.11':
resolution: {integrity: sha512-HM5bwOaIQJIQbAYfax35HCKxx7a3KrK3nBtIqJgSOitivTD1y3oW9P3rxY9RkXYPUk7y/AjAohfHKmFpGE79zw==}
- '@types/mime@1.3.5':
- resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
-
- '@types/mime@3.0.4':
- resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==}
-
- '@types/minimatch@5.1.2':
- resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
-
'@types/minimist@1.2.5':
resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
@@ -6013,9 +5518,6 @@ packages:
'@types/mute-stream@0.0.4':
resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==}
- '@types/node@18.19.39':
- resolution: {integrity: sha512-nPwTRDKUctxw3di5b4TfT3I0sWDiWoPQCZjXhvdkINntwr8lcoVCKsTgnXeRubKIlfnV+eN/HYk6Jb40tbcEAQ==}
-
'@types/node@20.14.10':
resolution: {integrity: sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ==}
@@ -6040,12 +5542,6 @@ packages:
'@types/qrcode@1.5.5':
resolution: {integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==}
- '@types/qs@6.9.12':
- resolution: {integrity: sha512-bZcOkJ6uWrL0Qb2NAWKa7TBU+mJHPzhx9jjLL1KHF+XpzEcR7EXHvjbHlGtR/IsP1vyPrehuS6XqkmaePy//mg==}
-
- '@types/range-parser@1.2.7':
- resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
-
'@types/react-addons-css-transition-group@15.0.10':
resolution: {integrity: sha512-AYYMb4+jsgHPsxst7e8WuWVp8qAwp9YV16FJdEXILAsp7SFKIRln1hlrw9fRKUJYte3SKqiNZ8riRXvP2WtLlA==}
@@ -6090,15 +5586,6 @@ packages:
'@types/resolve@1.20.6':
resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==}
- '@types/semver@7.5.8':
- resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
-
- '@types/send@0.17.4':
- resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
-
- '@types/serve-static@1.15.5':
- resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==}
-
'@types/set-cookie-parser@2.4.7':
resolution: {integrity: sha512-+ge/loa0oTozxip6zmhRIk8Z/boU51wl9Q6QdLZcokIGMzY5lFXYy/x7Htj2HTC6/KZP1hUbZ1ekx8DYXICvWg==}
@@ -6129,9 +5616,6 @@ packages:
'@types/ua-parser-js@0.7.39':
resolution: {integrity: sha512-P/oDfpofrdtF5xw433SPALpdSchtJmY7nsJItf8h3KXqOslkbySh8zq4dSWXH2oTjRvJ5PczVEoCZPow6GicLg==}
- '@types/unist@3.0.2':
- resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
-
'@types/uuid@9.0.8':
resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
@@ -6239,9 +5723,6 @@ packages:
resolution: {integrity: sha512-pq19gbaMOmFE3CbL0ZB8J8BFCo2ckfHBfaIsaOZgBIF4EoISJIdLX5xRhd0FGB0LlHReNRuzoJoMGpTjq8F2CQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@ungap/structured-clone@1.2.0':
- resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
-
'@upsetjs/model@1.11.0':
resolution: {integrity: sha512-pQEdunei2WC9mdhFR6umzE45j8VJfei/cG0TyVaaC0YE5zh1WI/TJRJJQC5jCiGhylISy99ANJs6XmQI33lqCw==}
@@ -6264,6 +5745,15 @@ packages:
'@vitest/expect@1.6.0':
resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==}
+ '@vitest/expect@2.0.5':
+ resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
+
+ '@vitest/pretty-format@2.0.5':
+ resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
+
+ '@vitest/pretty-format@2.1.8':
+ resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==}
+
'@vitest/runner@1.6.0':
resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==}
@@ -6273,6 +5763,9 @@ packages:
'@vitest/spy@1.6.0':
resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==}
+ '@vitest/spy@2.0.5':
+ resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
+
'@vitest/ui@1.6.0':
resolution: {integrity: sha512-k3Lyo+ONLOgylctiGovRKy7V4+dIN2yxstX3eY5cWFXH6WP+ooVX79YSyi0GagdTQzLmT43BF27T0s6dOIPBXA==}
peerDependencies:
@@ -6281,6 +5774,12 @@ packages:
'@vitest/utils@1.6.0':
resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
+ '@vitest/utils@2.0.5':
+ resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
+
+ '@vitest/utils@2.1.8':
+ resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==}
+
'@volar/language-core@2.4.5':
resolution: {integrity: sha512-F4tA0DCO5Q1F5mScHmca0umsi2ufKULAnMOVBfMsZdT4myhVl4WdKRwCaKcfOkIEuyrAVvtq1ESBdZ+rSyLVww==}
@@ -6370,14 +5869,6 @@ packages:
'@xtuc/long@4.2.2':
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- '@yarnpkg/fslib@2.10.3':
- resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==}
- engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
-
- '@yarnpkg/libzip@2.3.0':
- resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==}
- engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
-
'@yarnpkg/lockfile@1.1.0':
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
@@ -6399,10 +5890,6 @@ packages:
abs-svg-path@0.1.1:
resolution: {integrity: sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA==}
- accepts@1.3.8:
- resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
- engines: {node: '>= 0.6'}
-
acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
@@ -6416,10 +5903,6 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-walk@7.2.0:
- resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
- engines: {node: '>=0.4.0'}
-
acorn-walk@8.3.3:
resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
engines: {node: '>=0.4.0'}
@@ -6565,9 +6048,6 @@ packages:
resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==}
engines: {node: '>=10'}
- aria-query@5.1.3:
- resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
-
aria-query@5.3.0:
resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
@@ -6582,9 +6062,6 @@ packages:
resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==}
engines: {node: '>=0.10.0'}
- array-flatten@1.1.1:
- resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
-
array-includes@3.1.8:
resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
engines: {node: '>= 0.4'}
@@ -6641,6 +6118,10 @@ packages:
assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
+ assertion-error@2.0.1:
+ resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
+ engines: {node: '>=12'}
+
ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
engines: {node: '>=4'}
@@ -6661,11 +6142,6 @@ packages:
axios@1.7.7:
resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
- babel-core@7.0.0-bridge.0:
- resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
babel-jest@29.7.0:
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -6696,11 +6172,6 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.10.4:
- resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
-
babel-plugin-polyfill-corejs3@0.10.6:
resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
peerDependencies:
@@ -6748,6 +6219,10 @@ packages:
batch-processor@1.0.0:
resolution: {integrity: sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==}
+ better-opn@3.0.2:
+ resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==}
+ engines: {node: '>=12.0.0'}
+
binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
@@ -6773,10 +6248,6 @@ packages:
bn.js@5.2.1:
resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
- body-parser@1.20.2:
- resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
-
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -6888,10 +6359,6 @@ packages:
peerDependencies:
esbuild: '>=0.17'
- bytes@3.1.2:
- resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
- engines: {node: '>= 0.8'}
-
c8@8.0.1:
resolution: {integrity: sha512-EINpopxZNH1mETuI0DzRA4MZpAUH+IFiRhnmFD3vFr3vdrgxqi3VfE3KL0AIL+zDq8rC9bZqwM/VDmmoe04y7w==}
engines: {node: '>=12'}
@@ -6943,6 +6410,10 @@ packages:
resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
engines: {node: '>=4'}
+ chai@5.1.2:
+ resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
+ engines: {node: '>=12'}
+
chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
@@ -6969,6 +6440,10 @@ packages:
check-error@1.0.3:
resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+ check-error@2.1.1:
+ resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
+ engines: {node: '>= 16'}
+
chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
@@ -6977,10 +6452,6 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
- chownr@2.0.0:
- resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
- engines: {node: '>=10'}
-
chromatic@11.0.8:
resolution: {integrity: sha512-+zJ5h0/Eu5z26KCNLIw2tknbK69gUO8q3Jsew4oU0Q/i/NPhIwcXhvPP7u75aLJgX1EI61+ndiGJA/yeQZQcgw==}
hasBin: true
@@ -7004,9 +6475,6 @@ packages:
cipher-base@1.0.4:
resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
- citty@0.1.6:
- resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
-
cjs-module-lexer@1.2.3:
resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
@@ -7158,10 +6626,6 @@ packages:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
- commander@6.2.1:
- resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
- engines: {node: '>= 6'}
-
commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
@@ -7173,9 +6637,6 @@ packages:
common-path-prefix@3.0.0:
resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
- commondir@1.0.1:
- resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
-
compare-versions@4.1.4:
resolution: {integrity: sha512-FemMreK9xNyL8gQevsdRMrvO4lFCkQP7qbuktn1q8ndcNk1+0mz7lgE7b/sNvbhVgY4w6tMN1FDp6aADjqw2rw==}
@@ -7216,10 +6677,6 @@ packages:
consola@2.15.3:
resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
- consola@3.2.3:
- resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
console-browserify@1.2.0:
resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
@@ -7230,23 +6687,12 @@ packages:
constants-browserify@1.0.0:
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
- content-disposition@0.5.4:
- resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
- engines: {node: '>= 0.6'}
-
- content-type@1.0.5:
- resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
- engines: {node: '>= 0.6'}
-
convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- cookie-signature@1.0.6:
- resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
-
cookie@0.4.2:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
engines: {node: '>= 0.6'}
@@ -7255,10 +6701,6 @@ packages:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
- cookie@0.6.0:
- resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
- engines: {node: '>= 0.6'}
-
copyfiles@2.4.1:
resolution: {integrity: sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==}
hasBin: true
@@ -7266,9 +6708,6 @@ packages:
core-js-compat@3.36.0:
resolution: {integrity: sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw==}
- core-js-compat@3.37.1:
- resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
-
core-js-compat@3.38.1:
resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
@@ -7322,10 +6761,6 @@ packages:
crypto-browserify@3.12.0:
resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
- crypto-random-string@4.0.0:
- resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==}
- engines: {node: '>=12'}
-
css-font-size-keywords@1.0.0:
resolution: {integrity: sha512-Q+svMDbMlelgCfH/RVDKtTDaf5021O486ZThQPIpahnIjUkMUslC+WuOQSWTgGSrNCH08Y7tYNEmmy0hkfMI8Q==}
@@ -7594,9 +7029,9 @@ packages:
resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
engines: {node: '>=6'}
- deep-equal@2.2.3:
- resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
- engines: {node: '>= 0.4'}
+ deep-eql@5.0.2:
+ resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
+ engines: {node: '>=6'}
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
@@ -7623,17 +7058,10 @@ packages:
defined@1.0.1:
resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
- defu@6.1.4:
- resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
-
delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- depd@2.0.0:
- resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
- engines: {node: '>= 0.8'}
-
dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
@@ -7641,14 +7069,6 @@ packages:
des.js@1.1.0:
resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==}
- destroy@1.2.0:
- resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
-
- detect-indent@6.1.0:
- resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
- engines: {node: '>=8'}
-
detect-kerning@2.1.2:
resolution: {integrity: sha512-I3JIbrnKPAntNLl1I6TpSQQdQ4AutYzv/sKMFKbepawV/hlH0GmYKhUoOEMd4xqaUHT+Bm0f4127lh5qs1m1tw==}
@@ -7789,9 +7209,6 @@ packages:
easy-table@1.1.0:
resolution: {integrity: sha512-oq33hWOSSnl2Hoh00tZWaIPi1ievrD9aFG82/IgjlycAnW9hHx5PkJiXpxPsgEE+H7BsbVQXFVFST8TEXS6/pA==}
- ee-first@1.1.1:
- resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
-
ejs@3.1.10:
resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
engines: {node: '>=0.10.0'}
@@ -7834,10 +7251,6 @@ packages:
encode-utf8@1.0.3:
resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==}
- encodeurl@1.0.2:
- resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
- engines: {node: '>= 0.8'}
-
encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
@@ -7863,11 +7276,6 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- envinfo@7.11.1:
- resolution: {integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==}
- engines: {node: '>=4'}
- hasBin: true
-
environment@1.1.0:
resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
engines: {node: '>=18'}
@@ -7887,9 +7295,6 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-get-iterator@1.1.3:
- resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
-
es-iterator-helpers@1.2.0:
resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==}
engines: {node: '>= 0.4'}
@@ -8056,6 +7461,7 @@ packages:
resolution: {integrity: sha512-NXeHXtFLZd6QGbS5af9tiwIoI+BVptHUcGkkF/ouvEPa+ZiZvK0xek4Yh6cd5jNDEg8P+tIA5xxB2ZC/RnqXyw==}
peerDependencies:
eslint: '>= 5'
+ bundledDependencies: []
eslint-plugin-jest-dom@5.5.0:
resolution: {integrity: sha512-CRlXfchTr7EgC3tDI7MGHY6QjdJU5Vv2RPaeeGtkXUHnKZf04kgzMPIJUXt4qKCvYWVVIEo9ut9Oq1vgXAykEA==}
@@ -8177,10 +7583,6 @@ packages:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- etag@1.8.1:
- resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
- engines: {node: '>= 0.6'}
-
event-emitter@0.3.5:
resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
@@ -8214,10 +7616,6 @@ packages:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- express@4.19.2:
- resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
- engines: {node: '>= 0.10.0'}
-
ext@1.7.0:
resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
@@ -8261,9 +7659,6 @@ packages:
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
- fd-package-json@1.2.0:
- resolution: {integrity: sha512-45LSPmWf+gC5tdCQMNH4s9Sr00bIkiD9aN7dc5hqkrEw1geRYyDQS1v1oMHAW3ysfxfndqGsrDREHHjNNbKUfA==}
-
fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
@@ -8286,18 +7681,6 @@ packages:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- finalhandler@1.2.0:
- resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
- engines: {node: '>= 0.8'}
-
- find-cache-dir@2.1.0:
- resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
- engines: {node: '>=6'}
-
- find-cache-dir@3.3.2:
- resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
- engines: {node: '>=8'}
-
find-cache-dir@4.0.0:
resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==}
engines: {node: '>=14.16'}
@@ -8305,10 +7688,6 @@ packages:
find-root@1.1.0:
resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
- find-up@3.0.0:
- resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
- engines: {node: '>=6'}
-
find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -8335,10 +7714,6 @@ packages:
flatten-vertex-data@1.0.2:
resolution: {integrity: sha512-BvCBFK2NZqerFTdMDgqfHBwxYWnxeCkwONsw6PvBMcUXqo8U/KDWwmXhqx1x2kLIg7DqIsJfOaJFOmlua3Lxuw==}
- flow-parser@0.230.0:
- resolution: {integrity: sha512-ZAfKaarESYYcP/RoLdM91vX0u/1RR7jI5TJaFLnxwRlC2mp0o+Rw7ipIY7J6qpIpQYtAobWb/J6S0XPeu0gO8g==}
- engines: {node: '>=0.4.0'}
-
follow-redirects@1.15.9:
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
@@ -8369,14 +7744,6 @@ packages:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
- forwarded@0.2.0:
- resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
- engines: {node: '>= 0.6'}
-
- fresh@0.5.2:
- resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
- engines: {node: '>= 0.6'}
-
from2@2.3.0:
resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
@@ -8398,10 +7765,6 @@ packages:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
- fs-minipass@2.1.0:
- resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
- engines: {node: '>= 8'}
-
fs-monkey@1.0.5:
resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==}
@@ -8488,13 +7851,6 @@ packages:
get-uv-event-loop-napi-h@1.0.6:
resolution: {integrity: sha512-t5c9VNR84nRoF+eLiz6wFrEp1SE2Acg0wS+Ysa2zF0eROes+LzOfuTaVHxGy8AbS8rq7FHEJzjnCZo1BupwdJg==}
- giget@1.2.1:
- resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==}
- hasBin: true
-
- github-slugger@2.0.0:
- resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
-
gl-mat4@1.2.0:
resolution: {integrity: sha512-sT5C0pwB1/e9G9AvAoLsoaJtbMGjfd/jfxo8jMCKqYYEnjZuFvqV5rehqar0538EmssjdDeiEWnKyBSTw7quoA==}
@@ -8515,12 +7871,6 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
- glob-promise@4.2.2:
- resolution: {integrity: sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==}
- engines: {node: '>=12'}
- peerDependencies:
- glob: ^7.1.6
-
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
@@ -8558,10 +7908,6 @@ packages:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- globby@14.0.2:
- resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
- engines: {node: '>=18'}
-
globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
@@ -8692,15 +8038,6 @@ packages:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
- hast-util-heading-rank@3.0.0:
- resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==}
-
- hast-util-is-element@3.0.0:
- resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==}
-
- hast-util-to-string@3.0.0:
- resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==}
-
he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
@@ -8732,14 +8069,6 @@ packages:
engines: {node: '>=12'}
hasBin: true
- html-tags@3.3.1:
- resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
- engines: {node: '>=8'}
-
- http-errors@2.0.0:
- resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
- engines: {node: '>= 0.8'}
-
http-proxy-agent@5.0.0:
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
engines: {node: '>= 6'}
@@ -8836,14 +8165,6 @@ packages:
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
- ipaddr.js@1.9.1:
- resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
- engines: {node: '>= 0.10'}
-
- is-absolute-url@4.0.1:
- resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
is-arguments@1.1.1:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
@@ -8992,10 +8313,6 @@ packages:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
- is-plain-object@5.0.0:
- resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
- engines: {node: '>=0.10.0'}
-
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
@@ -9334,14 +8651,9 @@ packages:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
- jscodeshift@0.15.2:
- resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==}
- hasBin: true
- peerDependencies:
- '@babel/preset-env': ^7.1.6
- peerDependenciesMeta:
- '@babel/preset-env':
- optional: true
+ jsdoc-type-pratt-parser@4.1.0:
+ resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
+ engines: {node: '>=12.0.0'}
jsdom@20.0.3:
resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
@@ -9412,6 +8724,7 @@ packages:
resolution: {integrity: sha512-Quz3MvAwHxVYNXsOByL7xI5EB2WYOeFswqaHIA3qOK3isRWTxiplBEocmmru6XmxDB2L7jDNYtYA4FyimoAFEw==}
engines: {node: '>=8.17.0'}
hasBin: true
+ bundledDependencies: []
jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
@@ -9531,10 +8844,6 @@ packages:
resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
engines: {node: '>=14'}
- locate-path@3.0.0:
- resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
- engines: {node: '>=6'}
-
locate-path@5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
@@ -9590,6 +8899,9 @@ packages:
loupe@2.3.7:
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+ loupe@3.1.2:
+ resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
+
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -9621,10 +8933,6 @@ packages:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
- make-dir@3.1.0:
- resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
- engines: {node: '>=8'}
-
make-dir@4.0.0:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
@@ -9708,10 +9016,6 @@ packages:
mdurl@2.0.0:
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
- media-typer@0.3.0:
- resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
- engines: {node: '>= 0.6'}
-
memfs@3.5.3:
resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
@@ -9725,9 +9029,6 @@ packages:
memoizerific@1.11.3:
resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==}
- merge-descriptors@1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
-
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -9735,10 +9036,6 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- methods@1.1.2:
- resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
- engines: {node: '>= 0.6'}
-
micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
@@ -9763,11 +9060,6 @@ packages:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
- mime@1.6.0:
- resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
- engines: {node: '>=4'}
- hasBin: true
-
mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
@@ -9815,22 +9107,10 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass@3.3.6:
- resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
- engines: {node: '>=8'}
-
- minipass@5.0.0:
- resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
- engines: {node: '>=8'}
-
minipass@7.0.4:
resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
engines: {node: '>=16 || 14 >=14.17'}
- minizlib@2.1.2:
- resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
- engines: {node: '>= 8'}
-
mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
@@ -9963,10 +9243,6 @@ packages:
engines: {node: '>= 4.4.x'}
hasBin: true
- negotiator@0.6.3:
- resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
- engines: {node: '>= 0.6'}
-
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -9979,13 +9255,6 @@ packages:
node-addon-api@3.2.1:
resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==}
- node-dir@0.1.17:
- resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
- engines: {node: '>= 0.10.5'}
-
- node-fetch-native@1.6.2:
- resolution: {integrity: sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w==}
-
node-fetch@2.7.0:
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
engines: {node: 4.x || >=6.0.0}
@@ -10064,11 +9333,6 @@ packages:
'@swc/core':
optional: true
- nypm@0.3.8:
- resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==}
- engines: {node: ^14.16.0 || >=16.10.0}
- hasBin: true
-
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
@@ -10100,13 +9364,6 @@ packages:
resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
engines: {node: '>= 0.4'}
- ohash@1.1.3:
- resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
-
- on-finished@2.4.1:
- resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
- engines: {node: '>= 0.8'}
-
once@1.3.3:
resolution: {integrity: sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==}
@@ -10181,10 +9438,6 @@ packages:
resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==}
engines: {node: '>=18'}
- p-locate@3.0.0:
- resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
- engines: {node: '>=6'}
-
p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
@@ -10237,20 +9490,12 @@ packages:
parse5@7.1.2:
resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
- parseurl@1.3.3:
- resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
- engines: {node: '>= 0.8'}
-
pascal-case@3.1.2:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
- path-exists@3.0.0:
- resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
- engines: {node: '>=4'}
-
path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
@@ -10278,9 +9523,6 @@ packages:
resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'}
- path-to-regexp@0.1.7:
- resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
-
path-to-regexp@3.3.0:
resolution: {integrity: sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==}
@@ -10294,10 +9536,6 @@ packages:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- path-type@5.0.0:
- resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
- engines: {node: '>=12'}
-
pathe@0.2.0:
resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==}
@@ -10307,6 +9545,10 @@ packages:
pathval@1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+ pathval@2.0.0:
+ resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==}
+ engines: {node: '>= 14.16'}
+
pbf@3.2.1:
resolution: {integrity: sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==}
hasBin: true
@@ -10345,10 +9587,6 @@ packages:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
- pkg-dir@3.0.0:
- resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
- engines: {node: '>=6'}
-
pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
@@ -10451,11 +9689,6 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.2.5:
- resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
- engines: {node: '>=14'}
- hasBin: true
-
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}
@@ -10497,10 +9730,6 @@ packages:
protocol-buffers-schema@3.6.0:
resolution: {integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==}
- proxy-addr@2.0.7:
- resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
- engines: {node: '>= 0.10'}
-
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
@@ -10529,10 +9758,6 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- qs@6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
- engines: {node: '>=0.6'}
-
qs@6.12.0:
resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==}
engines: {node: '>=0.6'}
@@ -10559,14 +9784,6 @@ packages:
randomfill@1.0.4:
resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==}
- range-parser@1.2.1:
- resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
- engines: {node: '>= 0.6'}
-
- raw-body@2.5.2:
- resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
- engines: {node: '>= 0.8'}
-
react-app-polyfill@3.0.0:
resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==}
engines: {node: '>=14'}
@@ -10580,12 +9797,6 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- react-colorful@5.6.1:
- resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==}
- peerDependencies:
- react: '>=16.8.0'
- react-dom: '>=16.8.0'
-
react-cookie@4.0.0:
resolution: {integrity: sha512-om/HB4MBHt4k+moR8Mb5h1kmKxcmOxK2U6aaQZ8Y+f+igICcE5bpng7yCiAo3kKN0btFpzvQ70XnpONOC0xkdA==}
peerDependencies:
@@ -10617,12 +9828,6 @@ packages:
react: '>=16.4.0'
react-dom: '>=16.4.0'
- react-element-to-jsx-string@15.0.0:
- resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==}
- peerDependencies:
- react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
- react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
-
react-error-boundary@3.1.4:
resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==}
engines: {node: '>=10', npm: '>=6'}
@@ -10664,9 +9869,6 @@ packages:
react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- react-is@18.1.0:
- resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
-
react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
@@ -10935,12 +10137,6 @@ packages:
regl@2.1.0:
resolution: {integrity: sha512-oWUce/aVoEvW5l2V0LK7O5KJMzUSKeiOwFuJehzpSFd43dO5spP9r+sSUfhKtsky4u6MCqWJaRL+abzExynfTg==}
- rehype-external-links@3.0.0:
- resolution: {integrity: sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==}
-
- rehype-slug@6.0.0:
- resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==}
-
relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
@@ -11139,20 +10335,12 @@ packages:
engines: {node: '>=10'}
hasBin: true
- send@0.18.0:
- resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
- engines: {node: '>= 0.8.0'}
-
serialize-javascript@6.0.0:
resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
- serve-static@1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
- engines: {node: '>= 0.8.0'}
-
set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
@@ -11173,9 +10361,6 @@ packages:
setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
- setprototypeof@1.2.0:
- resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
-
sha.js@2.4.11:
resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
hasBin: true
@@ -11237,10 +10422,6 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- slash@5.1.0:
- resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
- engines: {node: '>=14.16'}
-
slice-ansi@5.0.0:
resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
engines: {node: '>=12'}
@@ -11286,9 +10467,6 @@ packages:
resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
engines: {node: '>= 8'}
- space-separated-tokens@2.0.2:
- resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
-
spark-md5@3.0.2:
resolution: {integrity: sha512-wcFzz9cDfbuqe0FZzfi2or1sgyIrsDwmPwfZC4hiNidPdPINjeUwNfv5kldczoEAcjl9Y1L3SM7Uz2PUEQzxQw==}
@@ -11318,13 +10496,14 @@ packages:
std-env@3.7.0:
resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
- stop-iteration-iterator@1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
- engines: {node: '>= 0.4'}
-
- storybook@8.2.4:
- resolution: {integrity: sha512-ASavW8vIHiWpFY+4M6ngeqK5oL4OkxqdpmQYxvRqH0gA1G1hfq/vmDw4YC4GnqKwyWPQh2kaV5JFurKZVaeaDQ==}
+ storybook@8.4.7:
+ resolution: {integrity: sha512-RP/nMJxiWyFc8EVMH5gp20ID032Wvk+Yr3lmKidoegto5Iy+2dVQnUoElZb2zpbVXNHWakGuAkfI0dY1Hfp/vw==}
hasBin: true
+ peerDependencies:
+ prettier: ^2 || ^3
+ peerDependenciesMeta:
+ prettier:
+ optional: true
stream-browserify@3.0.0:
resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
@@ -11511,29 +10690,10 @@ packages:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
- tar@6.2.0:
- resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
- engines: {node: '>=10'}
-
- telejson@7.2.0:
- resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==}
-
- temp-dir@3.0.0:
- resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==}
- engines: {node: '>=14.16'}
-
- temp@0.8.4:
- resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
- engines: {node: '>=6.0.0'}
-
temp@0.9.4:
resolution: {integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==}
engines: {node: '>=6.0.0'}
- tempy@3.1.0:
- resolution: {integrity: sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==}
- engines: {node: '>=14.16'}
-
terser-webpack-plugin@5.3.10:
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
@@ -11604,10 +10764,18 @@ packages:
tinyqueue@2.0.3:
resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==}
+ tinyrainbow@1.2.0:
+ resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==}
+ engines: {node: '>=14.0.0'}
+
tinyspy@2.2.1:
resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
engines: {node: '>=14.0.0'}
+ tinyspy@3.0.2:
+ resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
+ engines: {node: '>=14.0.0'}
+
tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
@@ -11636,10 +10804,6 @@ packages:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
- toidentifier@1.0.1:
- resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
- engines: {node: '>=0.6'}
-
topojson-client@3.1.0:
resolution: {integrity: sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==}
hasBin: true
@@ -11781,10 +10945,6 @@ packages:
resolution: {integrity: sha512-ADn2w7hVPcK6w1I0uWnM//y1rLXZhzB9mr0a3OirzclKF1Wp6VzevUmzz/NRAWunOT6E8HrnpGY7xOfc6K57fA==}
engines: {node: '>=16'}
- type-is@1.6.18:
- resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
- engines: {node: '>= 0.6'}
-
type@2.7.2:
resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
@@ -11882,23 +11042,6 @@ packages:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
- unicorn-magic@0.1.0:
- resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
- engines: {node: '>=18'}
-
- unique-string@3.0.0:
- resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
- engines: {node: '>=12'}
-
- unist-util-is@6.0.0:
- resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
-
- unist-util-visit-parents@6.0.1:
- resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
-
- unist-util-visit@5.0.0:
- resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
-
universal-cookie@4.0.4:
resolution: {integrity: sha512-lbRVHoOMtItjWbM7TwDLdl8wug7izB0tq3/YVKhT/ahB4VDvWMyvnADfnJI8y6fSvsjh51Ix7lTGC6Tn4rMPhw==}
@@ -11914,10 +11057,6 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- unpipe@1.0.0:
- resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
- engines: {node: '>= 0.8'}
-
unplugin@1.10.0:
resolution: {integrity: sha512-CuZtvvO8ua2Wl+9q2jEaqH6m3DoQ38N7pvBYQbbaeNlWGvK2l6GHiKi29aIHDPoSxdUzQ7Unevf1/ugil5X6Pg==}
engines: {node: '>=14.0.0'}
@@ -12013,10 +11152,6 @@ packages:
util@0.12.5:
resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
- utils-merge@1.0.1:
- resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
- engines: {node: '>= 0.4.0'}
-
uuid@9.0.1:
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
@@ -12043,10 +11178,6 @@ packages:
validate.io-number@1.0.3:
resolution: {integrity: sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==}
- vary@1.1.2:
- resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
- engines: {node: '>= 0.8'}
-
vite-node@1.6.0:
resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -12159,9 +11290,6 @@ packages:
resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
engines: {node: '>=14'}
- walk-up-path@3.0.1:
- resolution: {integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==}
-
walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
@@ -12292,9 +11420,6 @@ packages:
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- write-file-atomic@2.4.3:
- resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
-
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}
@@ -12353,9 +11478,6 @@ packages:
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yallist@4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
-
yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
@@ -13028,15 +12150,15 @@ snapshots:
'@babel/core@7.24.8':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.8
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.3
'@babel/helper-compilation-targets': 7.24.8
'@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8)
'@babel/helpers': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
convert-source-map: 2.0.0
debug: 4.3.7
gensync: 1.0.0-beta.2
@@ -13052,13 +12174,6 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/generator@7.24.8':
- dependencies:
- '@babel/types': 7.24.8
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
-
'@babel/generator@7.26.3':
dependencies:
'@babel/parser': 7.26.3
@@ -13083,13 +12198,6 @@ snapshots:
dependencies:
'@babel/types': 7.24.8
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
- dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-compilation-targets@7.24.7':
dependencies:
'@babel/compat-data': 7.24.7
@@ -13119,34 +12227,6 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.7
semver: 7.6.2
- '@babel/helper-create-class-features-plugin@7.24.0(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.8)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.24.7
- semver: 7.6.2
-
- '@babel/helper-create-class-features-plugin@7.24.8(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.8)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- semver: 7.6.2
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13154,20 +12234,6 @@ snapshots:
regexpu-core: 5.3.2
semver: 7.6.2
- '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-annotate-as-pure': 7.24.7
- regexpu-core: 5.3.2
- semver: 7.6.2
-
- '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-annotate-as-pure': 7.24.7
- regexpu-core: 5.3.2
- semver: 7.6.2
-
'@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13190,17 +12256,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.7
- lodash.debounce: 4.0.8
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13212,17 +12267,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.7
- lodash.debounce: 4.0.8
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-environment-visitor@7.24.7':
dependencies:
'@babel/types': 7.24.8
@@ -13240,13 +12284,6 @@ snapshots:
dependencies:
'@babel/types': 7.24.8
- '@babel/helper-member-expression-to-functions@7.24.8':
- dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-imports@7.24.7':
dependencies:
'@babel/traverse': 7.24.7
@@ -13272,25 +12309,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-transforms@7.24.8(@babel/core@7.24.8)':
dependencies:
'@babel/core': 7.24.8
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-module-imports': 7.25.9
'@babel/helper-simple-access': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-validator-identifier': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -13298,10 +12324,6 @@ snapshots:
dependencies:
'@babel/types': 7.24.8
- '@babel/helper-optimise-call-expression@7.24.7':
- dependencies:
- '@babel/types': 7.24.8
-
'@babel/helper-plugin-utils@7.24.7': {}
'@babel/helper-plugin-utils@7.24.8': {}
@@ -13315,15 +12337,6 @@ snapshots:
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-wrap-function': 7.22.20
- '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-wrap-function': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-replace-supers@7.22.20(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13331,22 +12344,6 @@ snapshots:
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers@7.22.20(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
-
- '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-simple-access@7.24.7':
dependencies:
'@babel/traverse': 7.24.7
@@ -13358,13 +12355,6 @@ snapshots:
dependencies:
'@babel/types': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
- dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
'@babel/types': 7.24.8
@@ -13389,15 +12379,6 @@ snapshots:
'@babel/template': 7.24.7
'@babel/types': 7.24.8
- '@babel/helper-wrap-function@7.24.7':
- dependencies:
- '@babel/helper-function-name': 7.24.7
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/helpers@7.24.7':
dependencies:
'@babel/template': 7.24.7
@@ -13405,8 +12386,8 @@ snapshots:
'@babel/helpers@7.24.8':
dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.8
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.3
'@babel/highlight@7.24.7':
dependencies:
@@ -13427,22 +12408,11 @@ snapshots:
dependencies:
'@babel/types': 7.26.3
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13450,27 +12420,12 @@ snapshots:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.8)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13490,20 +12445,11 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
-
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13514,96 +12460,46 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13614,79 +12510,39 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.8)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
+ '@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.24.7)':
@@ -13694,33 +12550,17 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13729,16 +12569,6 @@ snapshots:
'@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.7)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
- '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.8)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13748,55 +12578,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.8)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.7)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13804,15 +12601,6 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7)
- '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.8)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-classes@7.23.8(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13825,122 +12613,52 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
- '@babel/plugin-transform-classes@7.24.8(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.8)
- '@babel/helper-split-export-declaration': 7.24.7
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/template': 7.24.7
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.24.7
-
'@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.8)
-
'@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.8)
-
- '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.24.8)
-
'@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -13948,57 +12666,28 @@ snapshots:
'@babel/helper-function-name': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.8)
-
'@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.8)
-
'@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14007,14 +12696,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14024,24 +12705,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-simple-access': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14052,16 +12715,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14070,66 +12723,29 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.8)
-
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.8)
-
'@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.8)
-
'@babel/plugin-transform-object-rest-spread@7.24.0(@babel/core@7.24.7)':
dependencies:
'@babel/compat-data': 7.24.7
@@ -14139,40 +12755,18 @@ snapshots:
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.7)
- '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.8)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.8)
-
'@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.7)
- '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.8)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.8)
-
'@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14180,52 +12774,17 @@ snapshots:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.8)
-
- '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.8)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.7)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14234,26 +12793,11 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7)
- '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.8)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14299,22 +12843,11 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- regenerator-transform: 0.15.2
-
'@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-runtime@7.25.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14332,55 +12865,27 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-typescript@7.23.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14389,60 +12894,29 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.7)
- '@babel/plugin-transform-typescript@7.23.6(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.8)
-
'@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/preset-env@7.24.0(@babel/core@7.24.7)':
dependencies:
'@babel/compat-data': 7.24.7
@@ -14529,100 +13003,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.24.8(@babel/core@7.24.8)':
- dependencies:
- '@babel/compat-data': 7.24.8
- '@babel/core': 7.24.8
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.8)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.8)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.8)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.8)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.8)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.8)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.8)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.8)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.8)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.8)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.8)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.8)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.8)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.8)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.8)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.8)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.8)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-classes': 7.24.8(@babel/core@7.24.8)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.24.8)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.8)
- '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.8)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.24.8)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.8)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.8)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.8)
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.8)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.8)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.8)
- core-js-compat: 3.37.1
- semver: 7.6.2
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-flow@7.24.0(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.24.8)
-
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14630,13 +13010,6 @@ snapshots:
'@babel/types': 7.24.7
esutils: 2.0.3
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/types': 7.24.7
- esutils: 2.0.3
-
'@babel/preset-react@7.23.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -14660,26 +13033,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.23.3(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.8)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.8)
- '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.24.8)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/register@7.23.7(@babel/core@7.24.8)':
- dependencies:
- '@babel/core': 7.24.8
- clone-deep: 4.0.1
- find-cache-dir: 2.1.0
- make-dir: 2.1.0
- pirates: 4.0.6
- source-map-support: 0.5.21
-
'@babel/regjsgen@0.8.0': {}
'@babel/runtime@7.24.7':
@@ -14696,37 +13049,22 @@ snapshots:
'@babel/parser': 7.24.7
'@babel/types': 7.24.7
- '@babel/template@7.25.9':
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
-
- '@babel/traverse@7.24.7':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
- debug: 4.3.7
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/traverse@7.24.8':
+ '@babel/template@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
+
+ '@babel/traverse@7.24.7':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.8
+ '@babel/generator': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
@@ -14761,8 +13099,6 @@ snapshots:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@base2/pretty-print-object@1.0.1': {}
-
'@bcoe/v8-coverage@0.2.3': {}
'@brainhubeu/react-carousel@1.19.26(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
@@ -15456,10 +13792,8 @@ snapshots:
'@types/yargs': 17.0.32
chalk: 4.1.2
- '@joshwooding/vite-plugin-react-docgen-typescript@0.3.1(typescript@5.5.3)(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))':
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.4.2(typescript@5.5.3)(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))':
dependencies:
- glob: 7.2.3
- glob-promise: 4.2.2(glob@7.2.3)
magic-string: 0.27.0
react-docgen-typescript: 2.2.2(typescript@5.5.3)
vite: 5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2)
@@ -16281,7 +14615,7 @@ snapshots:
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.27.2)
estree-walker: 2.0.2
- magic-string: 0.30.10
+ magic-string: 0.30.11
optionalDependencies:
rollup: 4.27.2
@@ -16522,8 +14856,6 @@ snapshots:
'@sinclair/typebox@0.27.8': {}
- '@sindresorhus/merge-streams@2.3.0': {}
-
'@sinonjs/commons@3.0.1':
dependencies:
type-detect: 4.0.8
@@ -16863,213 +15195,162 @@ snapshots:
'@smithy/types': 3.7.1
tslib: 2.7.0
- '@storybook/addon-actions@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-actions@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
'@storybook/global': 5.0.0
'@types/uuid': 9.0.8
dequal: 2.0.3
polished: 4.3.1
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
uuid: 9.0.1
- '@storybook/addon-backgrounds@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-backgrounds@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
'@storybook/global': 5.0.0
memoizerific: 1.11.3
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
ts-dedent: 2.2.0
- '@storybook/addon-controls@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-controls@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
+ '@storybook/global': 5.0.0
dequal: 2.0.3
- lodash: 4.17.21
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
ts-dedent: 2.2.0
- '@storybook/addon-designs@8.0.3(@storybook/blocks@8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))))(@storybook/components@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))))(@storybook/theming@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/addon-designs@8.0.4(@storybook/blocks@8.4.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8)))(@storybook/components@8.4.7(storybook@8.4.7(prettier@2.8.8)))(@storybook/theming@8.4.7(storybook@8.4.7(prettier@2.8.8)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@figspec/react': 1.0.3(react@18.2.0)
optionalDependencies:
- '@storybook/blocks': 8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/components': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/theming': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
+ '@storybook/blocks': 8.4.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/components': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/theming': 8.4.7(storybook@8.4.7(prettier@2.8.8))
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@storybook/addon-docs@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-docs@8.4.7(@types/react@18.3.12)(storybook@8.4.7(prettier@2.8.8))':
dependencies:
- '@babel/core': 7.24.8
'@mdx-js/react': 3.0.1(@types/react@18.3.12)(react@18.2.0)
- '@storybook/blocks': 8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/csf-plugin': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/global': 5.0.0
- '@storybook/react-dom-shim': 8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@types/react': 18.3.12
- fs-extra: 11.2.0
+ '@storybook/blocks': 8.4.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/csf-plugin': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/react-dom-shim': 8.4.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- rehype-external-links: 3.0.0
- rehype-slug: 6.0.0
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
ts-dedent: 2.2.0
transitivePeerDependencies:
- - supports-color
+ - '@types/react'
- '@storybook/addon-essentials@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
- dependencies:
- '@storybook/addon-actions': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/addon-backgrounds': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/addon-controls': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/addon-docs': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/addon-highlight': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/addon-measure': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/addon-outline': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/addon-toolbars': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/addon-viewport': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ '@storybook/addon-essentials@8.4.7(@types/react@18.3.12)(storybook@8.4.7(prettier@2.8.8))':
+ dependencies:
+ '@storybook/addon-actions': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/addon-backgrounds': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/addon-controls': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/addon-docs': 8.4.7(@types/react@18.3.12)(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/addon-highlight': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/addon-measure': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/addon-outline': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/addon-toolbars': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/addon-viewport': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ storybook: 8.4.7(prettier@2.8.8)
ts-dedent: 2.2.0
transitivePeerDependencies:
- - supports-color
+ - '@types/react'
- '@storybook/addon-highlight@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-highlight@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
'@storybook/global': 5.0.0
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
- '@storybook/addon-interactions@8.2.4(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.3)))(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(vitest@1.6.0(@types/node@20.14.10)(jsdom@21.1.2)(sass@1.77.6)(terser@5.31.2))':
+ '@storybook/addon-interactions@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/instrumenter': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/test': 8.2.4(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.3)))(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(vitest@1.6.0(@types/node@20.14.10)(jsdom@21.1.2)(sass@1.77.6)(terser@5.31.2))
+ '@storybook/instrumenter': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/test': 8.4.7(storybook@8.4.7(prettier@2.8.8))
polished: 4.3.1
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
ts-dedent: 2.2.0
- transitivePeerDependencies:
- - '@jest/globals'
- - '@types/bun'
- - '@types/jest'
- - jest
- - vitest
- '@storybook/addon-links@8.2.4(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-links@8.4.7(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))':
dependencies:
'@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
ts-dedent: 2.2.0
optionalDependencies:
react: 18.2.0
- '@storybook/addon-measure@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-measure@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
'@storybook/global': 5.0.0
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
tiny-invariant: 1.3.3
- '@storybook/addon-outline@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-outline@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
'@storybook/global': 5.0.0
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
ts-dedent: 2.2.0
- '@storybook/addon-themes@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-themes@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
ts-dedent: 2.2.0
- '@storybook/addon-toolbars@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-toolbars@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
- '@storybook/addon-viewport@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/addon-viewport@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
memoizerific: 1.11.3
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
- '@storybook/blocks@8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/blocks@8.4.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))':
dependencies:
'@storybook/csf': 0.1.11
- '@storybook/global': 5.0.0
- '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@types/lodash': 4.17.7
- color-convert: 2.0.1
- dequal: 2.0.3
- lodash: 4.17.21
- markdown-to-jsx: 7.4.7(react@18.2.0)
- memoizerific: 1.11.3
- polished: 4.3.1
- react-colorful: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
- telejson: 7.2.0
+ '@storybook/icons': 1.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ storybook: 8.4.7(prettier@2.8.8)
ts-dedent: 2.2.0
- util-deprecate: 1.0.2
optionalDependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@storybook/builder-vite@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(typescript@5.5.3)(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))':
+ '@storybook/builder-vite@8.4.7(storybook@8.4.7(prettier@2.8.8))(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))':
dependencies:
- '@storybook/csf-plugin': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@types/find-cache-dir': 3.2.1
+ '@storybook/csf-plugin': 8.4.7(storybook@8.4.7(prettier@2.8.8))
browser-assert: 1.2.1
- es-module-lexer: 1.5.4
- express: 4.19.2
- find-cache-dir: 3.3.2
- fs-extra: 11.2.0
- magic-string: 0.30.10
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
ts-dedent: 2.2.0
vite: 5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2)
- optionalDependencies:
- typescript: 5.5.3
- transitivePeerDependencies:
- - supports-color
-
- '@storybook/codemod@8.2.4':
- dependencies:
- '@babel/core': 7.24.8
- '@babel/preset-env': 7.24.8(@babel/core@7.24.8)
- '@babel/types': 7.24.8
- '@storybook/core': 8.2.4
- '@storybook/csf': 0.1.11
- '@types/cross-spawn': 6.0.6
- cross-spawn: 7.0.3
- globby: 14.0.2
- jscodeshift: 0.15.2(@babel/preset-env@7.24.8(@babel/core@7.24.8))
- lodash: 4.17.21
- prettier: 3.2.5
- recast: 0.23.6
- tiny-invariant: 1.3.3
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- '@storybook/components@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/components@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
- '@storybook/core@8.2.4':
+ '@storybook/core@8.4.7(prettier@2.8.8)':
dependencies:
'@storybook/csf': 0.1.11
- '@types/express': 4.17.21
- '@types/node': 18.19.39
+ better-opn: 3.0.2
browser-assert: 1.2.1
- esbuild: 0.21.5
- esbuild-register: 3.5.0(esbuild@0.21.5)
- express: 4.19.2
+ esbuild: 0.23.1
+ esbuild-register: 3.5.0(esbuild@0.23.1)
+ jsdoc-type-pratt-parser: 4.1.0
process: 0.11.10
recast: 0.23.6
+ semver: 7.6.2
util: 0.12.5
ws: 8.16.0
+ optionalDependencies:
+ prettier: 2.8.8
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- '@storybook/csf-plugin@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/csf-plugin@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
unplugin: 1.10.0
'@storybook/csf@0.1.11':
@@ -17078,110 +15359,82 @@ snapshots:
'@storybook/global@5.0.0': {}
- '@storybook/icons@1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/icons@1.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@storybook/instrumenter@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/instrumenter@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
'@storybook/global': 5.0.0
- '@vitest/utils': 1.6.0
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
- util: 0.12.5
+ '@vitest/utils': 2.1.8
+ storybook: 8.4.7(prettier@2.8.8)
- '@storybook/manager-api@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/manager-api@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
- '@storybook/preview-api@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/preview-api@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
- '@storybook/react-dom-shim@8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/react-dom-shim@8.4.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))':
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
- '@storybook/react-vite@8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.27.2)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(typescript@5.5.3)(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))':
+ '@storybook/react-vite@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@2.8.8)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.27.2)(storybook@8.4.7(prettier@2.8.8))(typescript@5.5.3)(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))':
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.1(typescript@5.5.3)(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.4.2(typescript@5.5.3)(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))
'@rollup/pluginutils': 5.1.0(rollup@4.27.2)
- '@storybook/builder-vite': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(typescript@5.5.3)(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))
- '@storybook/react': 8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(typescript@5.5.3)
+ '@storybook/builder-vite': 8.4.7(storybook@8.4.7(prettier@2.8.8))(vite@5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2))
+ '@storybook/react': 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@2.8.8)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))(typescript@5.5.3)
find-up: 5.0.0
- magic-string: 0.30.10
+ magic-string: 0.30.11
react: 18.2.0
react-docgen: 7.0.3
react-dom: 18.2.0(react@18.2.0)
resolve: 1.22.8
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
tsconfig-paths: 4.2.0
vite: 5.4.3(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2)
transitivePeerDependencies:
- - '@preact/preset-vite'
+ - '@storybook/test'
- rollup
- supports-color
- typescript
- - vite-plugin-glimmerx
- '@storybook/react@8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(typescript@5.5.3)':
+ '@storybook/react@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@2.8.8)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))(typescript@5.5.3)':
dependencies:
- '@storybook/components': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
+ '@storybook/components': 8.4.7(storybook@8.4.7(prettier@2.8.8))
'@storybook/global': 5.0.0
- '@storybook/manager-api': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/preview-api': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/react-dom-shim': 8.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@storybook/theming': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@types/escodegen': 0.0.6
- '@types/estree': 0.0.51
- '@types/node': 18.19.39
- acorn: 7.4.1
- acorn-jsx: 5.3.2(acorn@7.4.1)
- acorn-walk: 7.2.0
- escodegen: 2.1.0
- html-tags: 3.3.1
- lodash: 4.17.21
- prop-types: 15.8.1
+ '@storybook/manager-api': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/preview-api': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/react-dom-shim': 8.4.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.7(prettier@2.8.8))
+ '@storybook/theming': 8.4.7(storybook@8.4.7(prettier@2.8.8))
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-element-to-jsx-string: 15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- semver: 7.6.2
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
- ts-dedent: 2.2.0
- type-fest: 2.19.0
- util-deprecate: 1.0.2
+ storybook: 8.4.7(prettier@2.8.8)
optionalDependencies:
+ '@storybook/test': 8.4.7(storybook@8.4.7(prettier@2.8.8))
typescript: 5.5.3
- '@storybook/test@8.2.4(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.3)))(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))(vitest@1.6.0(@types/node@20.14.10)(jsdom@21.1.2)(sass@1.77.6)(terser@5.31.2))':
+ '@storybook/test@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
'@storybook/csf': 0.1.11
- '@storybook/instrumenter': 8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))
- '@testing-library/dom': 10.1.0
- '@testing-library/jest-dom': 6.4.5(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.3)))(vitest@1.6.0(@types/node@20.14.10)(jsdom@21.1.2)(sass@1.77.6)(terser@5.31.2))
- '@testing-library/user-event': 14.5.2(@testing-library/dom@10.1.0)
- '@vitest/expect': 1.6.0
- '@vitest/spy': 1.6.0
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
- util: 0.12.5
- transitivePeerDependencies:
- - '@jest/globals'
- - '@types/bun'
- - '@types/jest'
- - jest
- - vitest
-
- '@storybook/testing-library@0.2.2':
- dependencies:
- '@testing-library/dom': 9.3.4
- '@testing-library/user-event': 14.5.2(@testing-library/dom@9.3.4)
- ts-dedent: 2.2.0
+ '@storybook/global': 5.0.0
+ '@storybook/instrumenter': 8.4.7(storybook@8.4.7(prettier@2.8.8))
+ '@testing-library/dom': 10.4.0
+ '@testing-library/jest-dom': 6.5.0
+ '@testing-library/user-event': 14.5.2(@testing-library/dom@10.4.0)
+ '@vitest/expect': 2.0.5
+ '@vitest/spy': 2.0.5
+ storybook: 8.4.7(prettier@2.8.8)
- '@storybook/theming@8.2.4(storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)))':
+ '@storybook/theming@8.4.7(storybook@8.4.7(prettier@2.8.8))':
dependencies:
- storybook: 8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7))
+ storybook: 8.4.7(prettier@2.8.8)
'@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.7)':
dependencies:
@@ -17297,17 +15550,6 @@ snapshots:
'@tanstack/table-core@8.20.5': {}
- '@testing-library/dom@10.1.0':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/runtime': 7.24.8
- '@types/aria-query': 5.0.4
- aria-query: 5.3.0
- chalk: 4.1.2
- dom-accessibility-api: 0.5.16
- lz-string: 1.5.0
- pretty-format: 27.5.1
-
'@testing-library/dom@10.4.0':
dependencies:
'@babel/code-frame': 7.24.7
@@ -17319,32 +15561,15 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/dom@9.3.4':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/runtime': 7.24.7
- '@types/aria-query': 5.0.4
- aria-query: 5.1.3
- chalk: 4.1.2
- dom-accessibility-api: 0.5.16
- lz-string: 1.5.0
- pretty-format: 27.5.1
-
- '@testing-library/jest-dom@6.4.5(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.3)))(vitest@1.6.0(@types/node@20.14.10)(jsdom@21.1.2)(sass@1.77.6)(terser@5.31.2))':
+ '@testing-library/jest-dom@6.5.0':
dependencies:
'@adobe/css-tools': 4.4.0
- '@babel/runtime': 7.24.8
aria-query: 5.3.0
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
lodash: 4.17.21
redent: 3.0.0
- optionalDependencies:
- '@jest/globals': 29.7.0
- '@types/jest': 29.5.12
- jest: 29.7.0(@types/node@20.14.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.3))
- vitest: 1.6.0(@types/node@20.14.10)(@vitest/ui@1.6.0)(jsdom@21.1.2)(sass@1.77.6)(terser@5.31.2)
'@testing-library/jest-dom@6.6.3':
dependencies:
@@ -17366,18 +15591,10 @@ snapshots:
'@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@testing-library/user-event@14.5.2(@testing-library/dom@10.1.0)':
- dependencies:
- '@testing-library/dom': 10.1.0
-
'@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)':
dependencies:
'@testing-library/dom': 10.4.0
- '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)':
- dependencies:
- '@testing-library/dom': 9.3.4
-
'@tootallnate/once@2.0.0': {}
'@trysound/sax@0.2.0': {}
@@ -17446,29 +15663,16 @@ snapshots:
'@types/base16@1.0.5': {}
- '@types/body-parser@1.19.5':
- dependencies:
- '@types/connect': 3.4.38
- '@types/node': 20.14.10
-
'@types/brainhubeu__react-carousel@1.15.0':
dependencies:
'@types/react': 18.3.12
- '@types/connect@3.4.38':
- dependencies:
- '@types/node': 20.14.10
-
'@types/cookie@0.3.3': {}
'@types/cookie@0.4.1': {}
'@types/cookie@0.6.0': {}
- '@types/cross-spawn@6.0.6':
- dependencies:
- '@types/node': 20.14.10
-
'@types/d3-array@3.2.1': {}
'@types/d3-axis@3.0.6':
@@ -17594,10 +15798,6 @@ snapshots:
'@types/doctrine@0.0.9': {}
- '@types/emscripten@1.39.10': {}
-
- '@types/escodegen@0.0.6': {}
-
'@types/eslint-scope@3.7.7':
dependencies:
'@types/eslint': 8.56.10
@@ -17608,35 +15808,12 @@ snapshots:
'@types/estree': 1.0.6
'@types/json-schema': 7.0.15
- '@types/estree@0.0.51': {}
-
'@types/estree@1.0.5': {}
'@types/estree@1.0.6': {}
- '@types/express-serve-static-core@4.17.43':
- dependencies:
- '@types/node': 20.14.10
- '@types/qs': 6.9.12
- '@types/range-parser': 1.2.7
- '@types/send': 0.17.4
-
- '@types/express@4.17.21':
- dependencies:
- '@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.17.43
- '@types/qs': 6.9.12
- '@types/serve-static': 1.15.5
-
- '@types/find-cache-dir@3.2.1': {}
-
'@types/geojson@7946.0.14': {}
- '@types/glob@7.2.0':
- dependencies:
- '@types/minimatch': 5.1.2
- '@types/node': 20.14.10
-
'@types/google.maps@3.55.2': {}
'@types/google.maps@3.55.4': {}
@@ -17645,10 +15822,6 @@ snapshots:
dependencies:
'@types/node': 20.14.10
- '@types/hast@3.0.4':
- dependencies:
- '@types/unist': 3.0.2
-
'@types/history@4.7.11': {}
'@types/hoist-non-react-statics@3.3.5':
@@ -17656,8 +15829,6 @@ snapshots:
'@types/react': 18.3.12
hoist-non-react-statics: 3.3.2
- '@types/http-errors@2.0.4': {}
-
'@types/invariant@2.2.37': {}
'@types/isomorphic-fetch@0.0.36': {}
@@ -17722,12 +15893,6 @@ snapshots:
'@types/mdx@2.0.11': {}
- '@types/mime@1.3.5': {}
-
- '@types/mime@3.0.4': {}
-
- '@types/minimatch@5.1.2': {}
-
'@types/minimist@1.2.5': {}
'@types/ms@0.7.34': {}
@@ -17736,10 +15901,6 @@ snapshots:
dependencies:
'@types/node': 20.14.10
- '@types/node@18.19.39':
- dependencies:
- undici-types: 5.26.5
-
'@types/node@20.14.10':
dependencies:
undici-types: 5.26.5
@@ -17764,10 +15925,6 @@ snapshots:
dependencies:
'@types/node': 20.14.10
- '@types/qs@6.9.12': {}
-
- '@types/range-parser@1.2.7': {}
-
'@types/react-addons-css-transition-group@15.0.10':
dependencies:
'@types/react': 18.3.12
@@ -17829,19 +15986,6 @@ snapshots:
'@types/resolve@1.20.6': {}
- '@types/semver@7.5.8': {}
-
- '@types/send@0.17.4':
- dependencies:
- '@types/mime': 1.3.5
- '@types/node': 20.14.10
-
- '@types/serve-static@1.15.5':
- dependencies:
- '@types/http-errors': 2.0.4
- '@types/mime': 3.0.4
- '@types/node': 20.14.10
-
'@types/set-cookie-parser@2.4.7':
dependencies:
'@types/node': 20.14.10
@@ -17864,8 +16008,6 @@ snapshots:
'@types/ua-parser-js@0.7.39': {}
- '@types/unist@3.0.2': {}
-
'@types/uuid@9.0.8': {}
'@types/warning@3.0.3': {}
@@ -18002,8 +16144,6 @@ snapshots:
'@typescript-eslint/types': 8.16.0
eslint-visitor-keys: 4.2.0
- '@ungap/structured-clone@1.2.0': {}
-
'@upsetjs/model@1.11.0': {}
'@upsetjs/react@1.11.0(react@18.2.0)':
@@ -18050,6 +16190,21 @@ snapshots:
'@vitest/utils': 1.6.0
chai: 4.4.1
+ '@vitest/expect@2.0.5':
+ dependencies:
+ '@vitest/spy': 2.0.5
+ '@vitest/utils': 2.0.5
+ chai: 5.1.2
+ tinyrainbow: 1.2.0
+
+ '@vitest/pretty-format@2.0.5':
+ dependencies:
+ tinyrainbow: 1.2.0
+
+ '@vitest/pretty-format@2.1.8':
+ dependencies:
+ tinyrainbow: 1.2.0
+
'@vitest/runner@1.6.0':
dependencies:
'@vitest/utils': 1.6.0
@@ -18066,6 +16221,10 @@ snapshots:
dependencies:
tinyspy: 2.2.1
+ '@vitest/spy@2.0.5':
+ dependencies:
+ tinyspy: 3.0.2
+
'@vitest/ui@1.6.0(vitest@1.6.0)':
dependencies:
'@vitest/utils': 1.6.0
@@ -18084,6 +16243,19 @@ snapshots:
loupe: 2.3.7
pretty-format: 29.7.0
+ '@vitest/utils@2.0.5':
+ dependencies:
+ '@vitest/pretty-format': 2.0.5
+ estree-walker: 3.0.3
+ loupe: 3.1.2
+ tinyrainbow: 1.2.0
+
+ '@vitest/utils@2.1.8':
+ dependencies:
+ '@vitest/pretty-format': 2.1.8
+ loupe: 3.1.2
+ tinyrainbow: 1.2.0
+
'@volar/language-core@2.4.5':
dependencies:
'@volar/source-map': 2.4.5
@@ -18216,16 +16388,6 @@ snapshots:
'@xtuc/long@4.2.2': {}
- '@yarnpkg/fslib@2.10.3':
- dependencies:
- '@yarnpkg/libzip': 2.3.0
- tslib: 1.14.1
-
- '@yarnpkg/libzip@2.3.0':
- dependencies:
- '@types/emscripten': 1.39.10
- tslib: 1.14.1
-
'@yarnpkg/lockfile@1.1.0': {}
'@yarnpkg/parsers@3.0.0-rc.46':
@@ -18244,11 +16406,6 @@ snapshots:
abs-svg-path@0.1.1: {}
- accepts@1.3.8:
- dependencies:
- mime-types: 2.1.35
- negotiator: 0.6.3
-
acorn-globals@7.0.1:
dependencies:
acorn: 8.12.0
@@ -18258,10 +16415,6 @@ snapshots:
dependencies:
acorn: 8.14.0
- acorn-jsx@5.3.2(acorn@7.4.1):
- dependencies:
- acorn: 7.4.1
-
acorn-jsx@5.3.2(acorn@8.12.1):
dependencies:
acorn: 8.12.1
@@ -18270,8 +16423,6 @@ snapshots:
dependencies:
acorn: 8.14.0
- acorn-walk@7.2.0: {}
-
acorn-walk@8.3.3:
dependencies:
acorn: 8.12.0
@@ -18394,10 +16545,6 @@ snapshots:
dependencies:
tslib: 2.6.3
- aria-query@5.1.3:
- dependencies:
- deep-equal: 2.2.3
-
aria-query@5.3.0:
dependencies:
dequal: 2.0.3
@@ -18411,8 +16558,6 @@ snapshots:
array-find-index@1.0.2: {}
- array-flatten@1.1.1: {}
-
array-includes@3.1.8:
dependencies:
call-bind: 1.0.7
@@ -18499,9 +16644,11 @@ snapshots:
assertion-error@1.1.0: {}
+ assertion-error@2.0.1: {}
+
ast-types@0.16.1:
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
async@3.2.5: {}
@@ -18527,10 +16674,6 @@ snapshots:
transitivePeerDependencies:
- debug
- babel-core@7.0.0-bridge.0(@babel/core@7.24.8):
- dependencies:
- '@babel/core': 7.24.8
-
babel-jest@29.7.0(@babel/core@7.24.7):
dependencies:
'@babel/core': 7.24.7
@@ -18544,12 +16687,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.93.0(esbuild@0.21.5)):
+ babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.93.0(esbuild@0.23.1)):
dependencies:
'@babel/core': 7.24.7
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.93.0(esbuild@0.21.5)
+ webpack: 5.93.0(esbuild@0.23.1)
babel-plugin-istanbul@6.1.1:
dependencies:
@@ -18583,23 +16726,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.8):
- dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/core': 7.24.8
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.8)
- semver: 7.6.2
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.8):
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.8)
- core-js-compat: 3.37.1
- transitivePeerDependencies:
- - supports-color
-
babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.24.7):
dependencies:
'@babel/core': 7.24.7
@@ -18630,13 +16756,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.8):
- dependencies:
- '@babel/core': 7.24.8
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.8)
- transitivePeerDependencies:
- - supports-color
-
babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7):
dependencies:
'@babel/core': 7.24.7
@@ -18669,6 +16788,10 @@ snapshots:
batch-processor@1.0.0: {}
+ better-opn@3.0.2:
+ dependencies:
+ open: 8.4.2
+
binary-extensions@2.2.0: {}
binary-search-bounds@2.0.5: {}
@@ -18692,23 +16815,6 @@ snapshots:
bn.js@5.2.1: {}
- body-parser@1.20.2:
- dependencies:
- bytes: 3.1.2
- 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.11.0
- raw-body: 2.5.2
- type-is: 1.6.18
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
-
boolbase@1.0.0: {}
bootstrap@4.6.2(jquery@3.7.1)(popper.js@1.16.1):
@@ -18846,8 +16952,6 @@ snapshots:
esbuild: 0.19.12
load-tsconfig: 0.2.5
- bytes@3.1.2: {}
-
c8@8.0.1:
dependencies:
'@bcoe/v8-coverage': 0.2.3
@@ -18911,6 +17015,14 @@ snapshots:
pathval: 1.1.1
type-detect: 4.0.8
+ chai@5.1.2:
+ dependencies:
+ assertion-error: 2.0.1
+ check-error: 2.1.1
+ deep-eql: 5.0.2
+ loupe: 3.1.2
+ pathval: 2.0.0
+
chalk@2.4.2:
dependencies:
ansi-styles: 3.2.1
@@ -18937,6 +17049,8 @@ snapshots:
dependencies:
get-func-name: 2.0.2
+ check-error@2.1.1: {}
+
chokidar@3.5.3:
dependencies:
anymatch: 3.1.3
@@ -18961,8 +17075,6 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- chownr@2.0.0: {}
-
chromatic@11.0.8: {}
chrome-trace-event@1.0.4: {}
@@ -18974,10 +17086,6 @@ snapshots:
inherits: 2.0.4
safe-buffer: 5.2.1
- citty@0.1.6:
- dependencies:
- consola: 3.2.3
-
cjs-module-lexer@1.2.3: {}
clamp@1.0.1: {}
@@ -19127,16 +17235,12 @@ snapshots:
commander@4.1.1: {}
- commander@6.2.1: {}
-
commander@7.2.0: {}
commander@8.3.0: {}
common-path-prefix@3.0.0: {}
- commondir@1.0.1: {}
-
compare-versions@4.1.4: {}
compare-versions@6.1.1: {}
@@ -19184,8 +17288,6 @@ snapshots:
consola@2.15.3: {}
- consola@3.2.3: {}
-
console-browserify@1.2.0: {}
console.table@0.10.0:
@@ -19194,24 +17296,14 @@ snapshots:
constants-browserify@1.0.0: {}
- content-disposition@0.5.4:
- dependencies:
- safe-buffer: 5.2.1
-
- content-type@1.0.5: {}
-
convert-source-map@1.9.0: {}
convert-source-map@2.0.0: {}
- cookie-signature@1.0.6: {}
-
cookie@0.4.2: {}
cookie@0.5.0: {}
- cookie@0.6.0: {}
-
copyfiles@2.4.1:
dependencies:
glob: 7.2.3
@@ -19226,10 +17318,6 @@ snapshots:
dependencies:
browserslist: 4.23.1
- core-js-compat@3.37.1:
- dependencies:
- browserslist: 4.23.2
-
core-js-compat@3.38.1:
dependencies:
browserslist: 4.23.3
@@ -19347,10 +17435,6 @@ snapshots:
randombytes: 2.1.0
randomfill: 1.0.4
- crypto-random-string@4.0.0:
- dependencies:
- type-fest: 1.4.0
-
css-font-size-keywords@1.0.0: {}
css-font-stretch-keywords@1.0.1: {}
@@ -19602,29 +17686,10 @@ snapshots:
type-detect: 0.1.1
deep-eql@4.1.3:
- dependencies:
- type-detect: 4.0.8
-
- deep-equal@2.2.3:
- dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
- es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
- is-arguments: 1.1.1
- is-array-buffer: 3.0.4
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
- isarray: 2.0.5
- object-is: 1.1.6
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
- side-channel: 1.0.6
- which-boxed-primitive: 1.0.2
- which-collection: 1.0.2
- which-typed-array: 1.1.15
+ dependencies:
+ type-detect: 4.0.8
+
+ deep-eql@5.0.2: {}
deep-is@0.1.4: {}
@@ -19650,12 +17715,8 @@ snapshots:
defined@1.0.1: {}
- defu@6.1.4: {}
-
delayed-stream@1.0.0: {}
- depd@2.0.0: {}
-
dequal@2.0.3: {}
des.js@1.1.0:
@@ -19663,10 +17724,6 @@ snapshots:
inherits: 2.0.4
minimalistic-assert: 1.0.1
- destroy@1.2.0: {}
-
- detect-indent@6.1.0: {}
-
detect-kerning@2.1.2: {}
detect-newline@3.1.0: {}
@@ -19810,8 +17867,6 @@ snapshots:
optionalDependencies:
wcwidth: 1.0.1
- ee-first@1.1.1: {}
-
ejs@3.1.10:
dependencies:
jake: 10.8.7
@@ -19852,8 +17907,6 @@ snapshots:
encode-utf8@1.0.3: {}
- encodeurl@1.0.2: {}
-
encoding@0.1.13:
dependencies:
iconv-lite: 0.6.3
@@ -19878,8 +17931,6 @@ snapshots:
entities@4.5.0: {}
- envinfo@7.11.1: {}
-
environment@1.1.0: {}
error-ex@1.3.2:
@@ -19941,18 +17992,6 @@ snapshots:
es-errors@1.3.0: {}
- es-get-iterator@1.1.3:
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- is-arguments: 1.1.1
- is-map: 2.0.3
- is-set: 2.0.3
- is-string: 1.0.7
- isarray: 2.0.5
- stop-iteration-iterator: 1.0.0
-
es-iterator-helpers@1.2.0:
dependencies:
call-bind: 1.0.7
@@ -20018,10 +18057,10 @@ snapshots:
es6-iterator: 2.0.3
es6-symbol: 3.1.4
- esbuild-register@3.5.0(esbuild@0.21.5):
+ esbuild-register@3.5.0(esbuild@0.23.1):
dependencies:
debug: 4.3.7
- esbuild: 0.21.5
+ esbuild: 0.23.1
transitivePeerDependencies:
- supports-color
@@ -20344,8 +18383,6 @@ snapshots:
esutils@2.0.3: {}
- etag@1.8.1: {}
-
event-emitter@0.3.5:
dependencies:
d: 1.0.2
@@ -20406,42 +18443,6 @@ snapshots:
jest-message-util: 29.7.0
jest-util: 29.7.0
- express@4.19.2:
- dependencies:
- accepts: 1.3.8
- array-flatten: 1.1.1
- body-parser: 1.20.2
- content-disposition: 0.5.4
- content-type: 1.0.5
- cookie: 0.6.0
- cookie-signature: 1.0.6
- debug: 2.6.9
- depd: 2.0.0
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 1.2.0
- fresh: 0.5.2
- http-errors: 2.0.0
- merge-descriptors: 1.0.1
- methods: 1.1.2
- on-finished: 2.4.1
- parseurl: 1.3.3
- path-to-regexp: 0.1.7
- proxy-addr: 2.0.7
- qs: 6.11.0
- range-parser: 1.2.1
- safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
- setprototypeof: 1.2.0
- statuses: 2.0.1
- type-is: 1.6.18
- utils-merge: 1.0.1
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
ext@1.7.0:
dependencies:
type: 2.7.2
@@ -20491,10 +18492,6 @@ snapshots:
dependencies:
bser: 2.1.1
- fd-package-json@1.2.0:
- dependencies:
- walk-up-path: 3.0.1
-
fflate@0.8.2: {}
figures@3.2.0:
@@ -20517,30 +18514,6 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
- finalhandler@1.2.0:
- dependencies:
- debug: 2.6.9
- encodeurl: 1.0.2
- escape-html: 1.0.3
- on-finished: 2.4.1
- parseurl: 1.3.3
- statuses: 2.0.1
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
-
- find-cache-dir@2.1.0:
- dependencies:
- commondir: 1.0.1
- make-dir: 2.1.0
- pkg-dir: 3.0.0
-
- find-cache-dir@3.3.2:
- dependencies:
- commondir: 1.0.1
- make-dir: 3.1.0
- pkg-dir: 4.2.0
-
find-cache-dir@4.0.0:
dependencies:
common-path-prefix: 3.0.0
@@ -20548,10 +18521,6 @@ snapshots:
find-root@1.1.0: {}
- find-up@3.0.0:
- dependencies:
- locate-path: 3.0.0
-
find-up@4.1.0:
dependencies:
locate-path: 5.0.0
@@ -20580,8 +18549,6 @@ snapshots:
dependencies:
dtype: 2.0.0
- flow-parser@0.230.0: {}
-
follow-redirects@1.15.9: {}
font-atlas@2.1.0:
@@ -20612,10 +18579,6 @@ snapshots:
combined-stream: 1.0.8
mime-types: 2.1.35
- forwarded@0.2.0: {}
-
- fresh@0.5.2: {}
-
from2@2.3.0:
dependencies:
inherits: 2.0.4
@@ -20645,10 +18608,6 @@ snapshots:
jsonfile: 4.0.0
universalify: 0.1.2
- fs-minipass@2.1.0:
- dependencies:
- minipass: 3.3.6
-
fs-monkey@1.0.5: {}
fs-readdir-recursive@1.1.0: {}
@@ -20718,19 +18677,6 @@ snapshots:
dependencies:
get-symbol-from-current-process-h: 1.0.2
- giget@1.2.1:
- dependencies:
- citty: 0.1.6
- consola: 3.2.3
- defu: 6.1.4
- node-fetch-native: 1.6.2
- nypm: 0.3.8
- ohash: 1.1.3
- pathe: 1.1.2
- tar: 6.2.0
-
- github-slugger@2.0.0: {}
-
gl-mat4@1.2.0: {}
gl-matrix@3.4.3: {}
@@ -20773,11 +18719,6 @@ snapshots:
dependencies:
is-glob: 4.0.3
- glob-promise@4.2.2(glob@7.2.3):
- dependencies:
- '@types/glob': 7.2.0
- glob: 7.2.3
-
glob-to-regexp@0.4.1: {}
glob@10.3.10:
@@ -20827,15 +18768,6 @@ snapshots:
merge2: 1.4.1
slash: 3.0.0
- globby@14.0.2:
- dependencies:
- '@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.2
- ignore: 5.3.1
- path-type: 5.0.0
- slash: 5.1.0
- unicorn-magic: 0.1.0
-
globrex@0.1.2: {}
glsl-inject-defines@1.0.3:
@@ -20996,18 +18928,6 @@ snapshots:
dependencies:
function-bind: 1.1.2
- hast-util-heading-rank@3.0.0:
- dependencies:
- '@types/hast': 3.0.4
-
- hast-util-is-element@3.0.0:
- dependencies:
- '@types/hast': 3.0.4
-
- hast-util-to-string@3.0.0:
- dependencies:
- '@types/hast': 3.0.4
-
he@1.2.0: {}
headers-polyfill@3.2.5: {}
@@ -21042,16 +18962,6 @@ snapshots:
relateurl: 0.2.7
terser: 5.31.1
- html-tags@3.3.1: {}
-
- http-errors@2.0.0:
- dependencies:
- depd: 2.0.0
- inherits: 2.0.4
- setprototypeof: 1.2.0
- statuses: 2.0.1
- toidentifier: 1.0.1
-
http-proxy-agent@5.0.0:
dependencies:
'@tootallnate/once': 2.0.0
@@ -21155,10 +19065,6 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- ipaddr.js@1.9.1: {}
-
- is-absolute-url@4.0.1: {}
-
is-arguments@1.1.1:
dependencies:
call-bind: 1.0.7
@@ -21275,8 +19181,6 @@ snapshots:
dependencies:
isobject: 3.0.1
- is-plain-object@5.0.0: {}
-
is-potential-custom-element-name@1.0.1: {}
is-regex@1.1.4:
@@ -21877,59 +19781,7 @@ snapshots:
dependencies:
argparse: 2.0.1
- jscodeshift@0.15.2(@babel/preset-env@7.24.0(@babel/core@7.24.7)):
- dependencies:
- '@babel/core': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.8)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.8)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.8)
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.8)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.8)
- '@babel/preset-flow': 7.24.0(@babel/core@7.24.8)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.24.8)
- '@babel/register': 7.23.7(@babel/core@7.24.8)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.8)
- chalk: 4.1.2
- flow-parser: 0.230.0
- graceful-fs: 4.2.11
- micromatch: 4.0.7
- neo-async: 2.6.2
- node-dir: 0.1.17
- recast: 0.23.6
- temp: 0.8.4
- write-file-atomic: 2.4.3
- optionalDependencies:
- '@babel/preset-env': 7.24.0(@babel/core@7.24.7)
- transitivePeerDependencies:
- - supports-color
-
- jscodeshift@0.15.2(@babel/preset-env@7.24.8(@babel/core@7.24.8)):
- dependencies:
- '@babel/core': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.8)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.8)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.8)
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.8)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.8)
- '@babel/preset-flow': 7.24.0(@babel/core@7.24.8)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.24.8)
- '@babel/register': 7.23.7(@babel/core@7.24.8)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.8)
- chalk: 4.1.2
- flow-parser: 0.230.0
- graceful-fs: 4.2.11
- micromatch: 4.0.7
- neo-async: 2.6.2
- node-dir: 0.1.17
- recast: 0.23.6
- temp: 0.8.4
- write-file-atomic: 2.4.3
- optionalDependencies:
- '@babel/preset-env': 7.24.8(@babel/core@7.24.8)
- transitivePeerDependencies:
- - supports-color
+ jsdoc-type-pratt-parser@4.1.0: {}
jsdom@20.0.3:
dependencies:
@@ -22186,11 +20038,6 @@ snapshots:
mlly: 1.7.1
pkg-types: 1.1.1
- locate-path@3.0.0:
- dependencies:
- p-locate: 3.0.0
- path-exists: 3.0.0
-
locate-path@5.0.0:
dependencies:
p-locate: 4.1.0
@@ -22248,6 +20095,8 @@ snapshots:
dependencies:
get-func-name: 2.0.2
+ loupe@3.1.2: {}
+
lower-case@2.0.2:
dependencies:
tslib: 2.6.3
@@ -22262,7 +20111,7 @@ snapshots:
magic-string@0.27.0:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
magic-string@0.30.10:
dependencies:
@@ -22283,10 +20132,6 @@ snapshots:
pify: 4.0.1
semver: 7.6.2
- make-dir@3.1.0:
- dependencies:
- semver: 7.6.2
-
make-dir@4.0.0:
dependencies:
semver: 7.6.2
@@ -22394,8 +20239,6 @@ snapshots:
mdurl@2.0.0: {}
- media-typer@0.3.0: {}
-
memfs@3.5.3:
dependencies:
fs-monkey: 1.0.5
@@ -22408,14 +20251,10 @@ snapshots:
dependencies:
map-or-similar: 1.5.0
- merge-descriptors@1.0.1: {}
-
merge-stream@2.0.0: {}
merge2@1.4.1: {}
- methods@1.1.2: {}
-
micromatch@4.0.5:
dependencies:
braces: 3.0.2
@@ -22442,8 +20281,6 @@ snapshots:
dependencies:
mime-db: 1.52.0
- mime@1.6.0: {}
-
mimic-fn@2.1.0: {}
mimic-fn@4.0.0: {}
@@ -22482,19 +20319,8 @@ snapshots:
minimist@1.2.8: {}
- minipass@3.3.6:
- dependencies:
- yallist: 4.0.0
-
- minipass@5.0.0: {}
-
minipass@7.0.4: {}
- minizlib@2.1.2:
- dependencies:
- minipass: 3.3.6
- yallist: 4.0.0
-
mkdirp@0.5.6:
dependencies:
minimist: 1.2.8
@@ -22702,8 +20528,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- negotiator@0.6.3: {}
-
neo-async@2.6.2: {}
next-tick@1.1.0: {}
@@ -22715,12 +20539,6 @@ snapshots:
node-addon-api@3.2.1: {}
- node-dir@0.1.17:
- dependencies:
- minimatch: 3.1.2
-
- node-fetch-native@1.6.2: {}
-
node-fetch@2.7.0(encoding@0.1.13):
dependencies:
whatwg-url: 5.0.0
@@ -22856,14 +20674,6 @@ snapshots:
transitivePeerDependencies:
- debug
- nypm@0.3.8:
- dependencies:
- citty: 0.1.6
- consola: 3.2.3
- execa: 8.0.1
- pathe: 1.1.2
- ufo: 1.5.3
-
object-assign@4.1.1: {}
object-inspect@1.13.1: {}
@@ -22901,12 +20711,6 @@ snapshots:
define-properties: 1.2.1
es-object-atoms: 1.0.0
- ohash@1.1.3: {}
-
- on-finished@2.4.1:
- dependencies:
- ee-first: 1.1.1
-
once@1.3.3:
dependencies:
wrappy: 1.0.2
@@ -23012,10 +20816,6 @@ snapshots:
dependencies:
yocto-queue: 1.1.1
- p-locate@3.0.0:
- dependencies:
- p-limit: 2.3.0
-
p-locate@4.1.0:
dependencies:
p-limit: 2.3.0
@@ -23073,8 +20873,6 @@ snapshots:
dependencies:
entities: 4.5.0
- parseurl@1.3.3: {}
-
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
@@ -23082,8 +20880,6 @@ snapshots:
path-browserify@1.0.1: {}
- path-exists@3.0.0: {}
-
path-exists@4.0.0: {}
path-exists@5.0.0: {}
@@ -23101,8 +20897,6 @@ snapshots:
lru-cache: 10.2.0
minipass: 7.0.4
- path-to-regexp@0.1.7: {}
-
path-to-regexp@3.3.0: {}
path-to-regexp@6.2.1: {}
@@ -23111,14 +20905,14 @@ snapshots:
path-type@4.0.0: {}
- path-type@5.0.0: {}
-
pathe@0.2.0: {}
pathe@1.1.2: {}
pathval@1.1.1: {}
+ pathval@2.0.0: {}
+
pbf@3.2.1:
dependencies:
ieee754: 1.2.1
@@ -23151,10 +20945,6 @@ snapshots:
pirates@4.0.6: {}
- pkg-dir@3.0.0:
- dependencies:
- find-up: 3.0.0
-
pkg-dir@4.2.0:
dependencies:
find-up: 4.1.0
@@ -23310,11 +21100,6 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-browser-comments@4.0.0(browserslist@4.23.2)(postcss@8.4.39):
- dependencies:
- browserslist: 4.23.2
- postcss: 8.4.39
-
postcss-browser-comments@4.0.0(browserslist@4.23.3)(postcss@8.4.39):
dependencies:
browserslist: 4.23.3
@@ -23328,14 +21113,6 @@ snapshots:
postcss: 8.4.39
ts-node: 10.9.2(@types/node@20.14.10)(typescript@5.5.2)
- postcss-normalize@10.0.1(browserslist@4.23.2)(postcss@8.4.39):
- dependencies:
- '@csstools/normalize.css': 12.1.1
- browserslist: 4.23.2
- postcss: 8.4.39
- postcss-browser-comments: 4.0.0(browserslist@4.23.2)(postcss@8.4.39)
- sanitize.css: 13.0.0
-
postcss-normalize@10.0.1(browserslist@4.23.3)(postcss@8.4.39):
dependencies:
'@csstools/normalize.css': 12.1.1
@@ -23356,8 +21133,6 @@ snapshots:
prettier@2.8.8: {}
- prettier@3.2.5: {}
-
pretty-format@27.5.1:
dependencies:
ansi-regex: 5.0.1
@@ -23409,11 +21184,6 @@ snapshots:
protocol-buffers-schema@3.6.0: {}
- proxy-addr@2.0.7:
- dependencies:
- forwarded: 0.2.0
- ipaddr.js: 1.9.1
-
proxy-from-env@1.1.0: {}
psl@1.9.0: {}
@@ -23442,10 +21212,6 @@ snapshots:
pngjs: 5.0.0
yargs: 15.4.1
- qs@6.11.0:
- dependencies:
- side-channel: 1.0.6
-
qs@6.12.0:
dependencies:
side-channel: 1.0.6
@@ -23471,15 +21237,6 @@ snapshots:
randombytes: 2.1.0
safe-buffer: 5.2.1
- range-parser@1.2.1: {}
-
- raw-body@2.5.2:
- dependencies:
- bytes: 3.1.2
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- unpipe: 1.0.0
-
react-app-polyfill@3.0.0:
dependencies:
core-js: 3.36.0
@@ -23521,11 +21278,6 @@ snapshots:
uncontrollable: 7.2.1(react@18.2.0)
warning: 4.0.3
- react-colorful@5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
- dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
react-cookie@4.0.0(react@18.2.0):
dependencies:
'@types/hoist-non-react-statics': 3.3.5
@@ -23546,8 +21298,8 @@ snapshots:
react-docgen@7.0.3:
dependencies:
'@babel/core': 7.24.8
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.5
'@types/doctrine': 0.0.9
@@ -23571,14 +21323,6 @@ snapshots:
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.3
- react-element-to-jsx-string@15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
- dependencies:
- '@base2/pretty-print-object': 1.0.1
- is-plain-object: 5.0.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-is: 18.1.0
-
react-error-boundary@3.1.4(react@18.2.0):
dependencies:
'@babel/runtime': 7.24.7
@@ -23613,8 +21357,6 @@ snapshots:
react-is@17.0.2: {}
- react-is@18.1.0: {}
-
react-is@18.2.0: {}
react-json-tree@0.18.0(@types/react@18.3.12)(react@18.2.0):
@@ -23891,7 +21633,7 @@ snapshots:
esprima: 4.0.1
source-map: 0.6.1
tiny-invariant: 1.3.3
- tslib: 2.6.3
+ tslib: 2.7.0
redent@3.0.0:
dependencies:
@@ -24001,23 +21743,6 @@ snapshots:
regl@2.1.0: {}
- rehype-external-links@3.0.0:
- dependencies:
- '@types/hast': 3.0.4
- '@ungap/structured-clone': 1.2.0
- hast-util-is-element: 3.0.0
- is-absolute-url: 4.0.1
- space-separated-tokens: 2.0.2
- unist-util-visit: 5.0.0
-
- rehype-slug@6.0.0:
- dependencies:
- '@types/hast': 3.0.4
- github-slugger: 2.0.0
- hast-util-heading-rank: 3.0.0
- hast-util-to-string: 3.0.0
- unist-util-visit: 5.0.0
-
relateurl@0.2.7: {}
require-directory@2.1.1: {}
@@ -24261,24 +21986,6 @@ snapshots:
semver@7.6.2: {}
- send@0.18.0:
- dependencies:
- debug: 2.6.9
- depd: 2.0.0
- destroy: 1.2.0
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 0.5.2
- http-errors: 2.0.0
- mime: 1.6.0
- ms: 2.1.3
- on-finished: 2.4.1
- range-parser: 1.2.1
- statuses: 2.0.1
- transitivePeerDependencies:
- - supports-color
-
serialize-javascript@6.0.0:
dependencies:
randombytes: 2.1.0
@@ -24287,15 +21994,6 @@ snapshots:
dependencies:
randombytes: 2.1.0
- serve-static@1.15.0:
- dependencies:
- encodeurl: 1.0.2
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 0.18.0
- transitivePeerDependencies:
- - supports-color
-
set-blocking@2.0.0: {}
set-cookie-parser@2.6.0: {}
@@ -24323,8 +22021,6 @@ snapshots:
setimmediate@1.0.5: {}
- setprototypeof@1.2.0: {}
-
sha.js@2.4.11:
dependencies:
inherits: 2.0.4
@@ -24379,8 +22075,6 @@ snapshots:
slash@3.0.0: {}
- slash@5.1.0: {}
-
slice-ansi@5.0.0:
dependencies:
ansi-styles: 6.2.1
@@ -24435,8 +22129,6 @@ snapshots:
dependencies:
whatwg-url: 7.1.0
- space-separated-tokens@2.0.2: {}
-
spark-md5@3.0.2: {}
spawn-command@0.0.2: {}
@@ -24459,42 +22151,12 @@ snapshots:
std-env@3.7.0: {}
- stop-iteration-iterator@1.0.0:
- dependencies:
- internal-slot: 1.0.7
-
- storybook@8.2.4(@babel/preset-env@7.24.0(@babel/core@7.24.7)):
+ storybook@8.4.7(prettier@2.8.8):
dependencies:
- '@babel/core': 7.24.8
- '@babel/types': 7.24.8
- '@storybook/codemod': 8.2.4
- '@storybook/core': 8.2.4
- '@types/semver': 7.5.8
- '@yarnpkg/fslib': 2.10.3
- '@yarnpkg/libzip': 2.3.0
- chalk: 4.1.2
- commander: 6.2.1
- cross-spawn: 7.0.3
- detect-indent: 6.1.0
- envinfo: 7.11.1
- execa: 5.1.1
- fd-package-json: 1.2.0
- find-up: 5.0.0
- fs-extra: 11.2.0
- giget: 1.2.1
- globby: 14.0.2
- jscodeshift: 0.15.2(@babel/preset-env@7.24.0(@babel/core@7.24.7))
- leven: 3.1.0
- ora: 5.4.1
- prettier: 3.2.5
- prompts: 2.4.2
- semver: 7.6.2
- strip-json-comments: 3.1.1
- tempy: 3.1.0
- tiny-invariant: 1.3.3
- ts-dedent: 2.2.0
+ '@storybook/core': 8.4.7(prettier@2.8.8)
+ optionalDependencies:
+ prettier: 2.8.8
transitivePeerDependencies:
- - '@babel/preset-env'
- bufferutil
- supports-color
- utf-8-validate
@@ -24724,47 +22386,21 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
- tar@6.2.0:
- dependencies:
- chownr: 2.0.0
- fs-minipass: 2.1.0
- minipass: 5.0.0
- minizlib: 2.1.2
- mkdirp: 1.0.4
- yallist: 4.0.0
-
- telejson@7.2.0:
- dependencies:
- memoizerific: 1.11.3
-
- temp-dir@3.0.0: {}
-
- temp@0.8.4:
- dependencies:
- rimraf: 2.6.3
-
temp@0.9.4:
dependencies:
mkdirp: 0.5.6
rimraf: 2.6.3
- tempy@3.1.0:
- dependencies:
- is-stream: 3.0.0
- temp-dir: 3.0.0
- type-fest: 2.19.0
- unique-string: 3.0.0
-
- terser-webpack-plugin@5.3.10(esbuild@0.21.5)(webpack@5.93.0(esbuild@0.21.5)):
+ terser-webpack-plugin@5.3.10(esbuild@0.23.1)(webpack@5.93.0(esbuild@0.23.1)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.31.2
- webpack: 5.93.0(esbuild@0.21.5)
+ webpack: 5.93.0(esbuild@0.23.1)
optionalDependencies:
- esbuild: 0.21.5
+ esbuild: 0.23.1
terser@5.31.1:
dependencies:
@@ -24822,8 +22458,12 @@ snapshots:
tinyqueue@2.0.3: {}
+ tinyrainbow@1.2.0: {}
+
tinyspy@2.2.1: {}
+ tinyspy@3.0.2: {}
+
tmp@0.0.33:
dependencies:
os-tmpdir: 1.0.2
@@ -24846,8 +22486,6 @@ snapshots:
dependencies:
is-number: 7.0.0
- toidentifier@1.0.1: {}
-
topojson-client@3.1.0:
dependencies:
commander: 2.20.3
@@ -24997,11 +22635,6 @@ snapshots:
type-fest@4.21.0: {}
- type-is@1.6.18:
- dependencies:
- media-typer: 0.3.0
- mime-types: 2.1.35
-
type@2.7.2: {}
typed-array-buffer@1.0.2:
@@ -25102,27 +22735,6 @@ snapshots:
unicode-property-aliases-ecmascript@2.1.0: {}
- unicorn-magic@0.1.0: {}
-
- unique-string@3.0.0:
- dependencies:
- crypto-random-string: 4.0.0
-
- unist-util-is@6.0.0:
- dependencies:
- '@types/unist': 3.0.2
-
- unist-util-visit-parents@6.0.1:
- dependencies:
- '@types/unist': 3.0.2
- unist-util-is: 6.0.0
-
- unist-util-visit@5.0.0:
- dependencies:
- '@types/unist': 3.0.2
- unist-util-is: 6.0.0
- unist-util-visit-parents: 6.0.1
-
universal-cookie@4.0.4:
dependencies:
'@types/cookie': 0.3.3
@@ -25134,11 +22746,9 @@ snapshots:
universalify@2.0.1: {}
- unpipe@1.0.0: {}
-
unplugin@1.10.0:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
chokidar: 3.6.0
webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.1
@@ -25233,8 +22843,6 @@ snapshots:
is-typed-array: 1.1.13
which-typed-array: 1.1.15
- utils-merge@1.0.1: {}
-
uuid@9.0.1: {}
v8-compile-cache-lib@3.0.1:
@@ -25261,8 +22869,6 @@ snapshots:
validate.io-number@1.0.3: {}
- vary@1.1.2: {}
-
vite-node@1.6.0(@types/node@20.14.10)(sass@1.77.6)(terser@5.31.2):
dependencies:
cac: 6.7.14
@@ -25413,8 +23019,6 @@ snapshots:
dependencies:
xml-name-validator: 4.0.0
- walk-up-path@3.0.1: {}
-
walker@1.0.8:
dependencies:
makeerror: 1.0.12
@@ -25460,7 +23064,7 @@ snapshots:
webpack-virtual-modules@0.6.1: {}
- webpack@5.93.0(esbuild@0.21.5):
+ webpack@5.93.0(esbuild@0.23.1):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
@@ -25483,7 +23087,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.21.5)(webpack@5.93.0(esbuild@0.21.5))
+ terser-webpack-plugin: 5.3.10(esbuild@0.23.1)(webpack@5.93.0(esbuild@0.23.1))
watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -25601,12 +23205,6 @@ snapshots:
wrappy@1.0.2: {}
- write-file-atomic@2.4.3:
- dependencies:
- graceful-fs: 4.2.11
- imurmurhash: 0.1.4
- signal-exit: 3.0.7
-
write-file-atomic@4.0.2:
dependencies:
imurmurhash: 0.1.4
@@ -25642,8 +23240,6 @@ snapshots:
yallist@3.1.1: {}
- yallist@4.0.0: {}
-
yaml@1.10.2: {}
yaml@2.3.1: {}