From 0cfc1391d7d530fc344df044dd286c341f48ac36 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Thu, 4 May 2023 12:14:32 +0200 Subject: [PATCH 01/24] feat(Dataset): add new page --- .gitignore | 1 + src/Router.tsx | 8 +++++++- src/sections/dataset/Dataset.tsx | 3 +++ src/sections/route.enum.ts | 3 ++- 4 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 src/sections/dataset/Dataset.tsx diff --git a/.gitignore b/.gitignore index c7000839a..2b8b5cdad 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ /coverage /cypress/downloads /cypress/screenshots +.nyc_output # production diff --git a/src/Router.tsx b/src/Router.tsx index 15906299b..04051ab98 100644 --- a/src/Router.tsx +++ b/src/Router.tsx @@ -1,6 +1,8 @@ import { createBrowserRouter, RouterProvider } from 'react-router-dom' import { HelloDataverse } from './sections/hello-dataverse/HelloDataverse' import { Layout } from './sections/layout/Layout' +import { Dataset } from './sections/dataset/Dataset' +import { Route } from './sections/route.enum' const router = createBrowserRouter( [ @@ -9,8 +11,12 @@ const router = createBrowserRouter( element: , children: [ { - path: '/', + path: Route.HOME, element: + }, + { + path: Route.DATASET, + element: } ] } diff --git a/src/sections/dataset/Dataset.tsx b/src/sections/dataset/Dataset.tsx new file mode 100644 index 000000000..fd19e20b7 --- /dev/null +++ b/src/sections/dataset/Dataset.tsx @@ -0,0 +1,3 @@ +export function Dataset() { + return
Dataset
+} diff --git a/src/sections/route.enum.ts b/src/sections/route.enum.ts index 0c32f70bf..7687e1295 100644 --- a/src/sections/route.enum.ts +++ b/src/sections/route.enum.ts @@ -2,5 +2,6 @@ export enum Route { HOME = '/', SIGN_UP = '/dataverseuser.xhtml?editMode=CREATE', LOG_IN = '/loginpage.xhtml?redirectPage=%2Fdataverse.xhtml', - LOG_OUT = '/' + LOG_OUT = '/', + DATASET = '/dataset' } From f8f0af3344baaae76aa85f06aa7182c85c5b51b2 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Thu, 4 May 2023 15:13:06 +0200 Subject: [PATCH 02/24] feat(DatasetBoilerplate): show Dataset title in the Dataset page --- cypress/component/dataset/Dataset.spec.tsx | 22 +++++++++++++++ src/Router.tsx | 5 ---- src/dataset/domain/models/Dataset.ts | 4 +++ .../domain/repositories/DatasetRepository.ts | 5 ++++ src/dataset/domain/useCases/getDataset.ts | 11 ++++++++ src/sections/dataset/Dataset.tsx | 14 ++++++++-- src/sections/dataset/useDataset.tsx | 16 +++++++++++ src/stories/dataset/Dataset.stories.tsx | 27 +++++++++++++++++++ tests/dataset/domain/models/DatasetMother.ts | 11 ++++++++ tests/sections/dataset/Dataset.test.tsx | 26 ++++++++++++++++++ 10 files changed, 134 insertions(+), 7 deletions(-) create mode 100644 cypress/component/dataset/Dataset.spec.tsx create mode 100644 src/dataset/domain/models/Dataset.ts create mode 100644 src/dataset/domain/repositories/DatasetRepository.ts create mode 100644 src/dataset/domain/useCases/getDataset.ts create mode 100644 src/sections/dataset/useDataset.tsx create mode 100644 src/stories/dataset/Dataset.stories.tsx create mode 100644 tests/dataset/domain/models/DatasetMother.ts create mode 100644 tests/sections/dataset/Dataset.test.tsx diff --git a/cypress/component/dataset/Dataset.spec.tsx b/cypress/component/dataset/Dataset.spec.tsx new file mode 100644 index 000000000..2b862b604 --- /dev/null +++ b/cypress/component/dataset/Dataset.spec.tsx @@ -0,0 +1,22 @@ +import { createSandbox, SinonSandbox } from 'sinon' +import { DatasetRepository } from '../../../src/dataset/domain/repositories/DatasetRepository' +import { Dataset } from '../../../src/sections/dataset/Dataset' +import { DatasetMother } from '../../../tests/dataset/domain/models/DatasetMother' + +describe('Dataset', () => { + const sandbox: SinonSandbox = createSandbox() + const testDataset = DatasetMother.create() + + afterEach(() => { + sandbox.restore() + }) + + it('renders the header', () => { + const datasetRepository: DatasetRepository = {} as DatasetRepository + datasetRepository.getById = sandbox.stub().resolves(testDataset) + + cy.mount() + + cy.findByText(testDataset.title).should('exist') + }) +}) diff --git a/src/Router.tsx b/src/Router.tsx index 04051ab98..a273d9439 100644 --- a/src/Router.tsx +++ b/src/Router.tsx @@ -1,7 +1,6 @@ import { createBrowserRouter, RouterProvider } from 'react-router-dom' import { HelloDataverse } from './sections/hello-dataverse/HelloDataverse' import { Layout } from './sections/layout/Layout' -import { Dataset } from './sections/dataset/Dataset' import { Route } from './sections/route.enum' const router = createBrowserRouter( @@ -13,10 +12,6 @@ const router = createBrowserRouter( { path: Route.HOME, element: - }, - { - path: Route.DATASET, - element: } ] } diff --git a/src/dataset/domain/models/Dataset.ts b/src/dataset/domain/models/Dataset.ts new file mode 100644 index 000000000..0d9e4febd --- /dev/null +++ b/src/dataset/domain/models/Dataset.ts @@ -0,0 +1,4 @@ +export interface Dataset { + id: string + title: string +} diff --git a/src/dataset/domain/repositories/DatasetRepository.ts b/src/dataset/domain/repositories/DatasetRepository.ts new file mode 100644 index 000000000..07e7d5ed3 --- /dev/null +++ b/src/dataset/domain/repositories/DatasetRepository.ts @@ -0,0 +1,5 @@ +import { Dataset } from '../models/Dataset' + +export interface DatasetRepository { + getById: (id: string) => Promise +} diff --git a/src/dataset/domain/useCases/getDataset.ts b/src/dataset/domain/useCases/getDataset.ts new file mode 100644 index 000000000..066f37445 --- /dev/null +++ b/src/dataset/domain/useCases/getDataset.ts @@ -0,0 +1,11 @@ +import { DatasetRepository } from '../repositories/DatasetRepository' +import { Dataset } from '../models/Dataset' + +export async function getDataset( + datasetRepository: DatasetRepository, + datasetId: string +): Promise { + return datasetRepository.getById(datasetId).catch((error: Error) => { + throw new Error(error.message) + }) +} diff --git a/src/sections/dataset/Dataset.tsx b/src/sections/dataset/Dataset.tsx index fd19e20b7..1518406df 100644 --- a/src/sections/dataset/Dataset.tsx +++ b/src/sections/dataset/Dataset.tsx @@ -1,3 +1,13 @@ -export function Dataset() { - return
Dataset
+import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' +import { useDataset } from './useDataset' + +interface DatasetProps { + datasetRepository: DatasetRepository + id: string +} + +export function Dataset({ datasetRepository, id }: DatasetProps) { + const { dataset } = useDataset(datasetRepository, id) + + return dataset ?
{dataset.title}
: null } diff --git a/src/sections/dataset/useDataset.tsx b/src/sections/dataset/useDataset.tsx new file mode 100644 index 000000000..f01cd35ff --- /dev/null +++ b/src/sections/dataset/useDataset.tsx @@ -0,0 +1,16 @@ +import { useEffect, useState } from 'react' +import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' +import { Dataset } from '../../dataset/domain/models/Dataset' +import { getDataset } from '../../dataset/domain/useCases/getDataset' + +export function useDataset(repository: DatasetRepository, id: string) { + const [dataset, setDataset] = useState() + + useEffect(() => { + getDataset(repository, id) + .then((dataset: Dataset | undefined) => setDataset(dataset)) + .catch((error) => console.error('There was an error getting the dataset', error)) + }, [repository, id]) + + return { dataset } +} diff --git a/src/stories/dataset/Dataset.stories.tsx b/src/stories/dataset/Dataset.stories.tsx new file mode 100644 index 000000000..e77353030 --- /dev/null +++ b/src/stories/dataset/Dataset.stories.tsx @@ -0,0 +1,27 @@ +import type { Meta, StoryObj } from '@storybook/react' +import { WithI18next } from '../WithI18next' +import { WithLayout } from '../WithLayout' +import { Dataset } from '../../sections/dataset/Dataset' +import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' + +const meta: Meta = { + title: 'Pages/Dataset', + component: Dataset, + decorators: [WithI18next, WithLayout] +} + +export default meta +type Story = StoryObj + +class DatasetMockRepository implements DatasetRepository { + getById(id: string) { + return Promise.resolve({ + id: id, + title: 'Dataset title' + }) + } +} + +export const Default: Story = { + render: () => +} diff --git a/tests/dataset/domain/models/DatasetMother.ts b/tests/dataset/domain/models/DatasetMother.ts new file mode 100644 index 000000000..0ac6c11ff --- /dev/null +++ b/tests/dataset/domain/models/DatasetMother.ts @@ -0,0 +1,11 @@ +import { faker } from '@faker-js/faker' +import { Dataset } from '../../../../src/dataset/domain/models/Dataset' + +export class DatasetMother { + static create(): Dataset { + return { + id: faker.datatype.uuid(), + title: faker.lorem.sentence() + } + } +} diff --git a/tests/sections/dataset/Dataset.test.tsx b/tests/sections/dataset/Dataset.test.tsx new file mode 100644 index 000000000..7e981c64a --- /dev/null +++ b/tests/sections/dataset/Dataset.test.tsx @@ -0,0 +1,26 @@ +import { createSandbox, SinonSandbox } from 'sinon' +import { DatasetRepository } from '../../../src/dataset/domain/repositories/DatasetRepository' +import { render } from '@testing-library/react' +import { Dataset } from '../../../src/sections/dataset/Dataset' +import { DatasetMother } from '../../dataset/domain/models/DatasetMother' + +describe('Dataset', () => { + const sandbox: SinonSandbox = createSandbox() + const testDataset = DatasetMother.create() + + afterEach(() => { + sandbox.restore() + }) + + it('renders the header', async () => { + const datasetRepository: DatasetRepository = {} as DatasetRepository + datasetRepository.getById = sandbox.stub().resolves(testDataset) + + const { findByText } = render( + + ) + + const title = await findByText(testDataset.title) + expect(title).toBeInTheDocument() + }) +}) From 60ba8684e0d59a5908921c156dab3edddda08329 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Thu, 4 May 2023 18:30:05 +0200 Subject: [PATCH 03/24] feat(DatasetBoilerplate): add data version number --- cypress/component/dataset/Dataset.spec.tsx | 3 +- src/dataset/domain/models/Dataset.ts | 1 + src/sections/dataset/Dataset.module.scss | 7 +++++ src/sections/dataset/Dataset.tsx | 30 +++++++++++++++++++- src/sections/layout/Layout.tsx | 4 +-- src/sections/ui/badge/Badge.tsx | 4 +-- src/stories/dataset/Dataset.stories.tsx | 5 +--- tests/dataset/domain/models/DatasetMother.ts | 6 ++-- tests/sections/dataset/Dataset.test.tsx | 5 +++- 9 files changed, 52 insertions(+), 13 deletions(-) create mode 100644 src/sections/dataset/Dataset.module.scss diff --git a/cypress/component/dataset/Dataset.spec.tsx b/cypress/component/dataset/Dataset.spec.tsx index 2b862b604..f184e7168 100644 --- a/cypress/component/dataset/Dataset.spec.tsx +++ b/cypress/component/dataset/Dataset.spec.tsx @@ -11,12 +11,13 @@ describe('Dataset', () => { sandbox.restore() }) - it('renders the header', () => { + it('renders the Dataset page title and version', () => { const datasetRepository: DatasetRepository = {} as DatasetRepository datasetRepository.getById = sandbox.stub().resolves(testDataset) cy.mount() cy.findByText(testDataset.title).should('exist') + cy.findByText(`Version ${testDataset.version}`).should('exist') }) }) diff --git a/src/dataset/domain/models/Dataset.ts b/src/dataset/domain/models/Dataset.ts index 0d9e4febd..45fd11f43 100644 --- a/src/dataset/domain/models/Dataset.ts +++ b/src/dataset/domain/models/Dataset.ts @@ -1,4 +1,5 @@ export interface Dataset { id: string title: string + version: string } diff --git a/src/sections/dataset/Dataset.module.scss b/src/sections/dataset/Dataset.module.scss new file mode 100644 index 000000000..31b14ca06 --- /dev/null +++ b/src/sections/dataset/Dataset.module.scss @@ -0,0 +1,7 @@ +.header { + margin: 0.5em 0; +} + +.container { + margin: 0.5rem 0; +} \ No newline at end of file diff --git a/src/sections/dataset/Dataset.tsx b/src/sections/dataset/Dataset.tsx index 1518406df..06ee22a90 100644 --- a/src/sections/dataset/Dataset.tsx +++ b/src/sections/dataset/Dataset.tsx @@ -1,5 +1,10 @@ import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' import { useDataset } from './useDataset' +import { Badge } from '../ui/badge/Badge' +import { Tabs } from '../ui/tabs/Tabs' +import { Col } from '../ui/grid/Col' +import { Row } from '../ui/grid/Row' +import styles from './Dataset.module.scss' interface DatasetProps { datasetRepository: DatasetRepository @@ -9,5 +14,28 @@ interface DatasetProps { export function Dataset({ datasetRepository, id }: DatasetProps) { const { dataset } = useDataset(datasetRepository, id) - return dataset ?
{dataset.title}
: null + return dataset ? ( +
+
+

{dataset.title}

+ Version {dataset.version} +
+
+ + Citation Block + + + Summary Block + + + +
Files Section
+
+ +
Metadata Section
+
+
+
+
+ ) : null } diff --git a/src/sections/layout/Layout.tsx b/src/sections/layout/Layout.tsx index 6eb3fb109..80e72256c 100644 --- a/src/sections/layout/Layout.tsx +++ b/src/sections/layout/Layout.tsx @@ -6,12 +6,12 @@ import { FooterFactory } from './footer/FooterFactory' export function Layout() { return ( -
+ <> {HeaderFactory.create()} {FooterFactory.create()} -
+ ) } diff --git a/src/sections/ui/badge/Badge.tsx b/src/sections/ui/badge/Badge.tsx index 8fe17947d..2ef5d428e 100644 --- a/src/sections/ui/badge/Badge.tsx +++ b/src/sections/ui/badge/Badge.tsx @@ -2,10 +2,10 @@ import { Badge as BadgeBS } from 'react-bootstrap' import { ReactNode } from 'react' interface BadgeProps { - variant: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' + variant?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' children: ReactNode } -export function Badge({ variant, children }: BadgeProps) { +export function Badge({ variant = 'secondary', children }: BadgeProps) { return {children} } diff --git a/src/stories/dataset/Dataset.stories.tsx b/src/stories/dataset/Dataset.stories.tsx index e77353030..f085dfa0d 100644 --- a/src/stories/dataset/Dataset.stories.tsx +++ b/src/stories/dataset/Dataset.stories.tsx @@ -15,10 +15,7 @@ type Story = StoryObj class DatasetMockRepository implements DatasetRepository { getById(id: string) { - return Promise.resolve({ - id: id, - title: 'Dataset title' - }) + return Promise.resolve({ id: id, title: 'Dataset title', version: '1.0' }) } } diff --git a/tests/dataset/domain/models/DatasetMother.ts b/tests/dataset/domain/models/DatasetMother.ts index 0ac6c11ff..4d31adffd 100644 --- a/tests/dataset/domain/models/DatasetMother.ts +++ b/tests/dataset/domain/models/DatasetMother.ts @@ -2,10 +2,12 @@ import { faker } from '@faker-js/faker' import { Dataset } from '../../../../src/dataset/domain/models/Dataset' export class DatasetMother { - static create(): Dataset { + static create(props?: Partial): Dataset { return { id: faker.datatype.uuid(), - title: faker.lorem.sentence() + title: faker.lorem.sentence(), + version: faker.datatype.uuid(), + ...props } } } diff --git a/tests/sections/dataset/Dataset.test.tsx b/tests/sections/dataset/Dataset.test.tsx index 7e981c64a..5a9329450 100644 --- a/tests/sections/dataset/Dataset.test.tsx +++ b/tests/sections/dataset/Dataset.test.tsx @@ -12,7 +12,7 @@ describe('Dataset', () => { sandbox.restore() }) - it('renders the header', async () => { + it('renders the Dataset page title and version', async () => { const datasetRepository: DatasetRepository = {} as DatasetRepository datasetRepository.getById = sandbox.stub().resolves(testDataset) @@ -22,5 +22,8 @@ describe('Dataset', () => { const title = await findByText(testDataset.title) expect(title).toBeInTheDocument() + + const version = await findByText(`Version ${testDataset.version}`) + expect(version).toBeInTheDocument() }) }) From 4a82000804bd37be4f1ac814f792992a81080e1c Mon Sep 17 00:00:00 2001 From: MellyGray Date: Wed, 10 May 2023 10:52:22 +0200 Subject: [PATCH 04/24] feat(Dataset Boilerplate): add DatasetLabels component --- cypress/component/dataset/Dataset.spec.tsx | 5 ++- src/Router.tsx | 2 +- src/dataset/domain/models/Dataset.ts | 9 ++++- .../models/LabelSemanticMeaning.enum.ts | 8 +++++ src/sections/{route.enum.ts => Route.enum.ts} | 0 src/sections/dataset/Dataset.tsx | 4 +-- .../dataset-labels/DatasetLabels.module.scss | 3 ++ .../dataset/dataset-labels/DatasetLabels.tsx | 36 +++++++++++++++++++ src/sections/layout/header/Header.tsx | 2 +- .../ui/{icon.enum.ts => Icon.enum.ts} | 0 src/sections/ui/button/Button.tsx | 2 +- .../ui/dropdown-button/DropdownButton.tsx | 2 +- src/stories/dataset/Dataset.stories.tsx | 10 +++++- src/stories/ui/button/Button.stories.tsx | 2 +- .../DropdownButton.stories.tsx | 2 +- tests/dataset/domain/models/DatasetMother.ts | 20 ++++++++++- tests/sections/dataset/Dataset.test.tsx | 9 ++--- .../dataset-labels/DatasetLabels.test.tsx | 36 +++++++++++++++++++ tests/sections/ui/button/Button.test.tsx | 2 +- .../dropdown-button/DropdownButton.test.tsx | 2 +- 20 files changed, 138 insertions(+), 18 deletions(-) create mode 100644 src/dataset/domain/models/LabelSemanticMeaning.enum.ts rename src/sections/{route.enum.ts => Route.enum.ts} (100%) create mode 100644 src/sections/dataset/dataset-labels/DatasetLabels.module.scss create mode 100644 src/sections/dataset/dataset-labels/DatasetLabels.tsx rename src/sections/ui/{icon.enum.ts => Icon.enum.ts} (100%) create mode 100644 tests/sections/dataset/dataset-labels/DatasetLabels.test.tsx diff --git a/cypress/component/dataset/Dataset.spec.tsx b/cypress/component/dataset/Dataset.spec.tsx index f184e7168..e088a59ba 100644 --- a/cypress/component/dataset/Dataset.spec.tsx +++ b/cypress/component/dataset/Dataset.spec.tsx @@ -18,6 +18,9 @@ describe('Dataset', () => { cy.mount() cy.findByText(testDataset.title).should('exist') - cy.findByText(`Version ${testDataset.version}`).should('exist') + + testDataset.labels.forEach((label) => { + cy.findByText(label.value).should('exist') + }) }) }) diff --git a/src/Router.tsx b/src/Router.tsx index a273d9439..7a9c2e37c 100644 --- a/src/Router.tsx +++ b/src/Router.tsx @@ -1,7 +1,7 @@ import { createBrowserRouter, RouterProvider } from 'react-router-dom' import { HelloDataverse } from './sections/hello-dataverse/HelloDataverse' import { Layout } from './sections/layout/Layout' -import { Route } from './sections/route.enum' +import { Route } from './sections/Route.enum' const router = createBrowserRouter( [ diff --git a/src/dataset/domain/models/Dataset.ts b/src/dataset/domain/models/Dataset.ts index 45fd11f43..401dd6954 100644 --- a/src/dataset/domain/models/Dataset.ts +++ b/src/dataset/domain/models/Dataset.ts @@ -1,5 +1,12 @@ +import { LabelSemanticMeaning } from './LabelSemanticMeaning.enum' + +export interface DatasetLabel { + semanticMeaning: LabelSemanticMeaning + value: string +} + export interface Dataset { id: string title: string - version: string + labels: DatasetLabel[] } diff --git a/src/dataset/domain/models/LabelSemanticMeaning.enum.ts b/src/dataset/domain/models/LabelSemanticMeaning.enum.ts new file mode 100644 index 000000000..637f53718 --- /dev/null +++ b/src/dataset/domain/models/LabelSemanticMeaning.enum.ts @@ -0,0 +1,8 @@ +export enum LabelSemanticMeaning { + DATASET = 'dataset', + FILE = 'file', + SUCCESS = 'success', + INFO = 'info', + WARNING = 'warning', + DANGER = 'danger' +} diff --git a/src/sections/route.enum.ts b/src/sections/Route.enum.ts similarity index 100% rename from src/sections/route.enum.ts rename to src/sections/Route.enum.ts diff --git a/src/sections/dataset/Dataset.tsx b/src/sections/dataset/Dataset.tsx index 06ee22a90..d43b2e43e 100644 --- a/src/sections/dataset/Dataset.tsx +++ b/src/sections/dataset/Dataset.tsx @@ -1,10 +1,10 @@ import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' import { useDataset } from './useDataset' -import { Badge } from '../ui/badge/Badge' import { Tabs } from '../ui/tabs/Tabs' import { Col } from '../ui/grid/Col' import { Row } from '../ui/grid/Row' import styles from './Dataset.module.scss' +import { DatasetLabels } from './dataset-labels/DatasetLabels' interface DatasetProps { datasetRepository: DatasetRepository @@ -18,7 +18,7 @@ export function Dataset({ datasetRepository, id }: DatasetProps) {

{dataset.title}

- Version {dataset.version} +
diff --git a/src/sections/dataset/dataset-labels/DatasetLabels.module.scss b/src/sections/dataset/dataset-labels/DatasetLabels.module.scss new file mode 100644 index 000000000..ec77535e7 --- /dev/null +++ b/src/sections/dataset/dataset-labels/DatasetLabels.module.scss @@ -0,0 +1,3 @@ +.container > * { + margin-right: 0.5em; +} \ No newline at end of file diff --git a/src/sections/dataset/dataset-labels/DatasetLabels.tsx b/src/sections/dataset/dataset-labels/DatasetLabels.tsx new file mode 100644 index 000000000..d03b5a1ee --- /dev/null +++ b/src/sections/dataset/dataset-labels/DatasetLabels.tsx @@ -0,0 +1,36 @@ +import { Badge } from '../../ui/badge/Badge' +import { DatasetLabel } from '../../../dataset/domain/models/Dataset' +import styles from './DatasetLabels.module.scss' +import { LabelSemanticMeaning } from '../../../dataset/domain/models/LabelSemanticMeaning.enum' + +const VARIANT_BY_SEMANTIC_MEANING: Record< + LabelSemanticMeaning, + 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' +> = { + [LabelSemanticMeaning.DATASET]: 'primary', + [LabelSemanticMeaning.FILE]: 'secondary', + [LabelSemanticMeaning.SUCCESS]: 'success', + [LabelSemanticMeaning.DANGER]: 'danger', + [LabelSemanticMeaning.WARNING]: 'warning', + [LabelSemanticMeaning.INFO]: 'info' +} + +interface DatasetLabelsProps { + labels: DatasetLabel[] +} + +export function DatasetLabels({ labels }: DatasetLabelsProps) { + return ( +
+ {labels.map((label: DatasetLabel, index) => { + return ( + + {label.value} + + ) + })} +
+ ) +} diff --git a/src/sections/layout/header/Header.tsx b/src/sections/layout/header/Header.tsx index 94c72359e..d67636c49 100644 --- a/src/sections/layout/header/Header.tsx +++ b/src/sections/layout/header/Header.tsx @@ -1,7 +1,7 @@ import logo from '../../ui/logo.svg' import { useTranslation } from 'react-i18next' import { Navbar } from '../../ui/navbar/Navbar' -import { Route } from '../../route.enum' +import { Route } from '../../Route.enum' import { UserRepository } from '../../../users/domain/repositories/UserRepository' import { useUser } from './useUser' diff --git a/src/sections/ui/icon.enum.ts b/src/sections/ui/Icon.enum.ts similarity index 100% rename from src/sections/ui/icon.enum.ts rename to src/sections/ui/Icon.enum.ts diff --git a/src/sections/ui/button/Button.tsx b/src/sections/ui/button/Button.tsx index 1dccefdd4..28f497100 100644 --- a/src/sections/ui/button/Button.tsx +++ b/src/sections/ui/button/Button.tsx @@ -1,7 +1,7 @@ import { ReactNode } from 'react' import styles from './Button.module.scss' import { Button as ButtonBS } from 'react-bootstrap' -import { Icon } from '../icon.enum' +import { Icon } from '../Icon.enum' type ButtonVariant = 'primary' | 'secondary' | 'link' diff --git a/src/sections/ui/dropdown-button/DropdownButton.tsx b/src/sections/ui/dropdown-button/DropdownButton.tsx index 4943f216f..157d91df3 100644 --- a/src/sections/ui/dropdown-button/DropdownButton.tsx +++ b/src/sections/ui/dropdown-button/DropdownButton.tsx @@ -1,7 +1,7 @@ import { DropdownButton as DropdownButtonBS } from 'react-bootstrap' import { ReactNode } from 'react' import styles from './DropdownButton.module.scss' -import { Icon } from '../icon.enum' +import { Icon } from '../Icon.enum' type DropdownButtonVariant = 'primary' | 'secondary' diff --git a/src/stories/dataset/Dataset.stories.tsx b/src/stories/dataset/Dataset.stories.tsx index f085dfa0d..7d78638ff 100644 --- a/src/stories/dataset/Dataset.stories.tsx +++ b/src/stories/dataset/Dataset.stories.tsx @@ -3,6 +3,7 @@ import { WithI18next } from '../WithI18next' import { WithLayout } from '../WithLayout' import { Dataset } from '../../sections/dataset/Dataset' import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' +import { LabelSemanticMeaning } from '../../dataset/domain/models/LabelSemanticMeaning.enum' const meta: Meta = { title: 'Pages/Dataset', @@ -15,7 +16,14 @@ type Story = StoryObj class DatasetMockRepository implements DatasetRepository { getById(id: string) { - return Promise.resolve({ id: id, title: 'Dataset title', version: '1.0' }) + return Promise.resolve({ + id: id, + title: 'Dataset title', + labels: [ + { value: 'Version 1.0', semanticMeaning: LabelSemanticMeaning.FILE }, + { value: 'Draft', semanticMeaning: LabelSemanticMeaning.DATASET } + ] + }) } } diff --git a/src/stories/ui/button/Button.stories.tsx b/src/stories/ui/button/Button.stories.tsx index 631f78cd0..db777fd51 100644 --- a/src/stories/ui/button/Button.stories.tsx +++ b/src/stories/ui/button/Button.stories.tsx @@ -1,6 +1,6 @@ import type { Meta, StoryObj } from '@storybook/react' import { Button } from '../../../sections/ui/button/Button' -import { Icon } from '../../../sections/ui/icon.enum' +import { Icon } from '../../../sections/ui/Icon.enum' /** * ## Description diff --git a/src/stories/ui/dropdown-button/DropdownButton.stories.tsx b/src/stories/ui/dropdown-button/DropdownButton.stories.tsx index b3fe43492..f14d7dd2b 100644 --- a/src/stories/ui/dropdown-button/DropdownButton.stories.tsx +++ b/src/stories/ui/dropdown-button/DropdownButton.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react' import { DropdownButton } from '../../../sections/ui/dropdown-button/DropdownButton' import { DropdownButtonItem } from '../../../sections/ui/dropdown-button/dropdown-button-item/DropdownButtonItem' -import { Icon } from '../../../sections/ui/icon.enum' +import { Icon } from '../../../sections/ui/Icon.enum' import { CanvasFixedHeight } from '../CanvasFixedHeight' /** diff --git a/tests/dataset/domain/models/DatasetMother.ts b/tests/dataset/domain/models/DatasetMother.ts index 4d31adffd..b4fcd08ee 100644 --- a/tests/dataset/domain/models/DatasetMother.ts +++ b/tests/dataset/domain/models/DatasetMother.ts @@ -1,12 +1,30 @@ import { faker } from '@faker-js/faker' import { Dataset } from '../../../../src/dataset/domain/models/Dataset' +import { LabelSemanticMeaning } from '../../../../src/dataset/domain/models/LabelSemanticMeaning.enum' export class DatasetMother { static create(props?: Partial): Dataset { return { id: faker.datatype.uuid(), title: faker.lorem.sentence(), - version: faker.datatype.uuid(), + labels: [ + { + value: faker.lorem.word(), + semanticMeaning: faker.helpers.arrayElement(Object.values(LabelSemanticMeaning)) + }, + { + value: faker.lorem.word(), + semanticMeaning: faker.helpers.arrayElement(Object.values(LabelSemanticMeaning)) + }, + { + value: faker.lorem.word(), + semanticMeaning: faker.helpers.arrayElement(Object.values(LabelSemanticMeaning)) + }, + { + value: faker.lorem.word(), + semanticMeaning: faker.helpers.arrayElement(Object.values(LabelSemanticMeaning)) + } + ], ...props } } diff --git a/tests/sections/dataset/Dataset.test.tsx b/tests/sections/dataset/Dataset.test.tsx index 5a9329450..00c3215cf 100644 --- a/tests/sections/dataset/Dataset.test.tsx +++ b/tests/sections/dataset/Dataset.test.tsx @@ -12,18 +12,19 @@ describe('Dataset', () => { sandbox.restore() }) - it('renders the Dataset page title and version', async () => { + it('renders the Dataset page title and labels', async () => { const datasetRepository: DatasetRepository = {} as DatasetRepository datasetRepository.getById = sandbox.stub().resolves(testDataset) - const { findByText } = render( + const { findByText, getByText } = render( ) const title = await findByText(testDataset.title) expect(title).toBeInTheDocument() - const version = await findByText(`Version ${testDataset.version}`) - expect(version).toBeInTheDocument() + testDataset.labels.forEach((label) => { + expect(getByText(label.value)).toBeInTheDocument() + }) }) }) diff --git a/tests/sections/dataset/dataset-labels/DatasetLabels.test.tsx b/tests/sections/dataset/dataset-labels/DatasetLabels.test.tsx new file mode 100644 index 000000000..931ef062e --- /dev/null +++ b/tests/sections/dataset/dataset-labels/DatasetLabels.test.tsx @@ -0,0 +1,36 @@ +import { LabelSemanticMeaning } from '../../../../src/dataset/domain/models/LabelSemanticMeaning.enum' +import { render } from '@testing-library/react' +import { DatasetLabels } from '../../../../src/sections/dataset/dataset-labels/DatasetLabels' + +describe('DatasetLabels', () => { + const labels = [ + { value: 'Label 1', semanticMeaning: LabelSemanticMeaning.DATASET }, + { value: 'Label 2', semanticMeaning: LabelSemanticMeaning.FILE }, + { value: 'Label 3', semanticMeaning: LabelSemanticMeaning.SUCCESS }, + { value: 'Label 4', semanticMeaning: LabelSemanticMeaning.DANGER }, + { value: 'Label 5', semanticMeaning: LabelSemanticMeaning.WARNING }, + { value: 'Label 6', semanticMeaning: LabelSemanticMeaning.INFO } + ] + + it('should render all labels', () => { + const { getByText } = render() + + expect(getByText(labels[0].value)).toBeInTheDocument() + expect(getByText(labels[1].value)).toBeInTheDocument() + expect(getByText(labels[2].value)).toBeInTheDocument() + expect(getByText(labels[3].value)).toBeInTheDocument() + expect(getByText(labels[4].value)).toBeInTheDocument() + expect(getByText(labels[5].value)).toBeInTheDocument() + }) + + it('should render labels with correct variant', () => { + const { getByText } = render() + + expect(getByText(labels[0].value)).toHaveClass('bg-primary') + expect(getByText(labels[1].value)).toHaveClass('bg-secondary') + expect(getByText(labels[2].value)).toHaveClass('bg-success') + expect(getByText(labels[3].value)).toHaveClass('bg-danger') + expect(getByText(labels[4].value)).toHaveClass('bg-warning') + expect(getByText(labels[5].value)).toHaveClass('bg-info') + }) +}) diff --git a/tests/sections/ui/button/Button.test.tsx b/tests/sections/ui/button/Button.test.tsx index d453e8693..23955a28c 100644 --- a/tests/sections/ui/button/Button.test.tsx +++ b/tests/sections/ui/button/Button.test.tsx @@ -1,7 +1,7 @@ import { fireEvent, render } from '@testing-library/react' import { Button } from '../../../../src/sections/ui/button/Button' import { vi } from 'vitest' -import { Icon } from '../../../../src/sections/ui/icon.enum' +import { Icon } from '../../../../src/sections/ui/Icon.enum' describe('Button', () => { const clickMeText = 'Click me' diff --git a/tests/sections/ui/dropdown-button/DropdownButton.test.tsx b/tests/sections/ui/dropdown-button/DropdownButton.test.tsx index 2f5357cbe..4fb05177c 100644 --- a/tests/sections/ui/dropdown-button/DropdownButton.test.tsx +++ b/tests/sections/ui/dropdown-button/DropdownButton.test.tsx @@ -1,6 +1,6 @@ import { fireEvent, render } from '@testing-library/react' import { DropdownButton } from '../../../../src/sections/ui/dropdown-button/DropdownButton' -import { Icon } from '../../../../src/sections/ui/icon.enum' +import { Icon } from '../../../../src/sections/ui/Icon.enum' import styles from '../../../../src/sections/ui/dropdown-button/DropdownButton.module.scss' const titleText = 'My Dropdown Button' From a0c2b83fb34a6c7bdfaca3cfa672cae432fbc640 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Wed, 10 May 2023 16:18:27 +0200 Subject: [PATCH 05/24] feat(Dataset Boilerplate): add LoadingProvider --- .storybook/preview.tsx | 5 +- .../loading/LoadingProvider.spec.tsx | 43 + package-lock.json | 19884 ++++++++-------- package.json | 1 + src/index.tsx | 5 +- src/sections/layout/Layout.tsx | 2 + .../TopbarProgressIndicator.tsx | 26 + src/sections/loading/LoadingContext.tsx | 13 + src/sections/loading/LoadingProvider.tsx | 12 + .../TopbarProgressIndicator.test.tsx | 24 + .../sections/loading/LoadingProvider.test.tsx | 45 + 11 files changed, 9959 insertions(+), 10101 deletions(-) create mode 100644 cypress/component/loading/LoadingProvider.spec.tsx create mode 100644 src/sections/layout/topbar-progress-indicator/TopbarProgressIndicator.tsx create mode 100644 src/sections/loading/LoadingContext.tsx create mode 100644 src/sections/loading/LoadingProvider.tsx create mode 100644 tests/sections/layout/topbar-progress-indicator/TopbarProgressIndicator.test.tsx create mode 100644 tests/sections/loading/LoadingProvider.test.tsx diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index dc572ed6a..430c9e50a 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -2,6 +2,7 @@ import type { Preview } from '@storybook/react' import { ThemeProvider } from '../src/sections/ui/theme/ThemeProvider' import DocumentationTemplate from '../src/stories/ui/DocumentationTemplate.mdx' import { initialize, mswDecorator } from 'msw-storybook-addon' +import { LoadingProvider } from '../src/sections/loading/LoadingProvider' /* * Initializes MSW @@ -26,7 +27,9 @@ const preview: Preview = { decorators: [ (Story) => ( - + + + ), mswDecorator diff --git a/cypress/component/loading/LoadingProvider.spec.tsx b/cypress/component/loading/LoadingProvider.spec.tsx new file mode 100644 index 000000000..8c0c67b07 --- /dev/null +++ b/cypress/component/loading/LoadingProvider.spec.tsx @@ -0,0 +1,43 @@ +import { LoadingProvider } from '../../../src/sections/loading/LoadingProvider' +import { useLoading } from '../../../src/sections/loading/LoadingContext' + +describe('LoadingProvider', () => { + it('should render children', () => { + cy.mount( + +
Hello, world!
+
+ ) + + cy.findByText('Hello, world!').should('exist') + }) + + it('should set isLoading to true when setIsLoading is called', () => { + const buttonText = 'Toggle Loading' + const TestComponent = () => { + const { isLoading, setIsLoading } = useLoading() + return ( + <> + + {isLoading &&
Loading...
} + + ) + } + + cy.mount( + + + + ) + + const toggleLoadingButton = cy.findByText(buttonText) + expect(toggleLoadingButton).toBeInTheDocument() + + const loadingText = cy.findByText('Loading...') + expect(loadingText).not.toBeInTheDocument() + + toggleLoadingButton.click() + + expect(loadingText).toBeInTheDocument() + }) +}) diff --git a/package-lock.json b/package-lock.json index be930ed2f..66bde86b1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,6 +23,7 @@ "react-bootstrap-icons": "^1.10.3", "react-i18next": "^12.1.5", "react-router-dom": "^6.8.1", + "react-topbar-progress-indicator": "^4.1.1", "sass": "^1.58.1", "typescript": "^4.9.5", "web-vitals": "^2.1.4" @@ -85,12 +86,14 @@ }, "node_modules/@adobe/css-tools": { "version": "4.2.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz", + "integrity": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==" }, "node_modules/@ampproject/remapping": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", "dev": true, - "license": "Apache-2.0", "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" @@ -101,8 +104,9 @@ }, "node_modules/@aw-web-design/x-default-browser": { "version": "1.4.88", + "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.88.tgz", + "integrity": "sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA==", "dev": true, - "license": "MIT", "dependencies": { "default-browser-id": "3.0.0" }, @@ -111,8 +115,9 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.18.6", - "license": "MIT", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", + "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", "dependencies": { "@babel/highlight": "^7.18.6" }, @@ -121,28 +126,30 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.21.4", + "version": "7.21.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz", + "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.21.4", + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", + "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", "dev": true, - "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helpers": "^7.21.0", - "@babel/parser": "^7.21.4", + "@babel/generator": "^7.21.5", + "@babel/helper-compilation-targets": "^7.21.5", + "@babel/helper-module-transforms": "^7.21.5", + "@babel/helpers": "^7.21.5", + "@babel/parser": "^7.21.8", "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.4", - "@babel/types": "^7.21.4", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -157,31 +164,13 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/core/node_modules/@babel/code-frame": { - "version": "7.21.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/generator": { - "version": "7.21.4", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", + "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.21.4", + "@babel/types": "^7.21.5", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -192,8 +181,9 @@ }, "node_modules/@babel/helper-annotate-as-pure": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" }, @@ -202,23 +192,24 @@ } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.9", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.21.5.tgz", + "integrity": "sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.9" + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.21.4", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz", + "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.21.4", + "@babel/compat-data": "^7.21.5", "@babel/helper-validator-option": "^7.21.0", "browserslist": "^4.21.3", "lru-cache": "^5.1.1", @@ -231,40 +222,21 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "dev": true, - "license": "ISC" - }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.21.4", + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.8.tgz", + "integrity": "sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-environment-visitor": "^7.21.5", "@babel/helper-function-name": "^7.21.0", - "@babel/helper-member-expression-to-functions": "^7.21.0", + "@babel/helper-member-expression-to-functions": "^7.21.5", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-replace-supers": "^7.21.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/helper-split-export-declaration": "^7.18.6" + "@babel/helper-split-export-declaration": "^7.18.6", + "semver": "^6.3.0" }, "engines": { "node": ">=6.9.0" @@ -274,12 +246,14 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.21.4", + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.8.tgz", + "integrity": "sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.3.1" + "regexpu-core": "^5.3.1", + "semver": "^6.3.0" }, "engines": { "node": ">=6.9.0" @@ -290,8 +264,9 @@ }, "node_modules/@babel/helper-define-polyfill-provider": { "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.17.7", "@babel/helper-plugin-utils": "^7.16.7", @@ -304,37 +279,20 @@ "@babel/core": "^7.4.0-0" } }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.9", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz", + "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.18.6" - }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", + "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/template": "^7.20.7", "@babel/types": "^7.21.0" @@ -345,8 +303,9 @@ }, "node_modules/@babel/helper-hoist-variables": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" }, @@ -355,11 +314,12 @@ } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.21.0", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.5.tgz", + "integrity": "sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.21.0" + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -367,8 +327,9 @@ }, "node_modules/@babel/helper-module-imports": { "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", + "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.21.4" }, @@ -377,18 +338,19 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.21.2", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz", + "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-environment-visitor": "^7.21.5", + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-simple-access": "^7.21.5", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.19.1", "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.2", - "@babel/types": "^7.21.2" + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -396,8 +358,9 @@ }, "node_modules/@babel/helper-optimise-call-expression": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" }, @@ -406,17 +369,19 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz", + "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.9", @@ -431,27 +396,29 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.20.7", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.21.5.tgz", + "integrity": "sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-environment-visitor": "^7.21.5", + "@babel/helper-member-expression-to-functions": "^7.21.5", "@babel/helper-optimise-call-expression": "^7.18.6", "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.20.2", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", + "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.20.2" + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -459,8 +426,9 @@ }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.20.0" }, @@ -470,8 +438,9 @@ }, "node_modules/@babel/helper-split-export-declaration": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" }, @@ -480,32 +449,36 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", + "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { "version": "7.19.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", + "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", + "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-function-name": "^7.19.0", "@babel/template": "^7.18.10", @@ -517,13 +490,14 @@ } }, "node_modules/@babel/helpers": { - "version": "7.21.0", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", + "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.0", - "@babel/types": "^7.21.0" + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -531,7 +505,8 @@ }, "node_modules/@babel/highlight": { "version": "7.18.6", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "dependencies": { "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", @@ -542,9 +517,10 @@ } }, "node_modules/@babel/parser": { - "version": "7.21.4", + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz", + "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==", "dev": true, - "license": "MIT", "bin": { "parser": "bin/babel-parser.js" }, @@ -554,8 +530,9 @@ }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -568,8 +545,9 @@ }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", + "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", @@ -584,8 +562,9 @@ }, "node_modules/@babel/plugin-proposal-async-generator-functions": { "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-plugin-utils": "^7.20.2", @@ -601,8 +580,9 @@ }, "node_modules/@babel/plugin-proposal-class-properties": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -616,8 +596,9 @@ }, "node_modules/@babel/plugin-proposal-class-static-block": { "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", + "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.21.0", "@babel/helper-plugin-utils": "^7.20.2", @@ -632,8 +613,9 @@ }, "node_modules/@babel/plugin-proposal-dynamic-import": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-dynamic-import": "^7.8.3" @@ -647,8 +629,9 @@ }, "node_modules/@babel/plugin-proposal-export-namespace-from": { "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" @@ -662,8 +645,9 @@ }, "node_modules/@babel/plugin-proposal-json-strings": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-json-strings": "^7.8.3" @@ -677,8 +661,9 @@ }, "node_modules/@babel/plugin-proposal-logical-assignment-operators": { "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" @@ -692,8 +677,9 @@ }, "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" @@ -707,8 +693,9 @@ }, "node_modules/@babel/plugin-proposal-numeric-separator": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-numeric-separator": "^7.10.4" @@ -722,8 +709,9 @@ }, "node_modules/@babel/plugin-proposal-object-rest-spread": { "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/compat-data": "^7.20.5", "@babel/helper-compilation-targets": "^7.20.7", @@ -740,8 +728,9 @@ }, "node_modules/@babel/plugin-proposal-optional-catch-binding": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" @@ -755,8 +744,9 @@ }, "node_modules/@babel/plugin-proposal-optional-chaining": { "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", @@ -771,8 +761,9 @@ }, "node_modules/@babel/plugin-proposal-private-methods": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -786,8 +777,9 @@ }, "node_modules/@babel/plugin-proposal-private-property-in-object": { "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz", + "integrity": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-create-class-features-plugin": "^7.21.0", @@ -803,8 +795,9 @@ }, "node_modules/@babel/plugin-proposal-unicode-property-regex": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -818,8 +811,9 @@ }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -829,8 +823,9 @@ }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -840,8 +835,9 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, @@ -851,8 +847,9 @@ }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -865,8 +862,9 @@ }, "node_modules/@babel/plugin-syntax-dynamic-import": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -876,8 +874,9 @@ }, "node_modules/@babel/plugin-syntax-export-namespace-from": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" }, @@ -887,8 +886,9 @@ }, "node_modules/@babel/plugin-syntax-flow": { "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -901,8 +901,9 @@ }, "node_modules/@babel/plugin-syntax-import-assertions": { "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.19.0" }, @@ -915,8 +916,9 @@ }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -926,8 +928,9 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -937,8 +940,9 @@ }, "node_modules/@babel/plugin-syntax-jsx": { "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz", + "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -951,8 +955,9 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -962,8 +967,9 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -973,8 +979,9 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -984,8 +991,9 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -995,8 +1003,9 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1006,8 +1015,9 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1017,8 +1027,9 @@ }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1031,8 +1042,9 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1045,8 +1057,9 @@ }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz", + "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -1058,11 +1071,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.20.7", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz", + "integrity": "sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-plugin-utils": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -1073,8 +1087,9 @@ }, "node_modules/@babel/plugin-transform-async-to-generator": { "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", + "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.18.6", "@babel/helper-plugin-utils": "^7.20.2", @@ -1089,8 +1104,9 @@ }, "node_modules/@babel/plugin-transform-block-scoped-functions": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1103,8 +1119,9 @@ }, "node_modules/@babel/plugin-transform-block-scoping": { "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz", + "integrity": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -1117,8 +1134,9 @@ }, "node_modules/@babel/plugin-transform-classes": { "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz", + "integrity": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-compilation-targets": "^7.20.7", @@ -1138,11 +1156,12 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.20.7", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz", + "integrity": "sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-plugin-utils": "^7.21.5", "@babel/template": "^7.20.7" }, "engines": { @@ -1154,8 +1173,9 @@ }, "node_modules/@babel/plugin-transform-destructuring": { "version": "7.21.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz", + "integrity": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -1168,8 +1188,9 @@ }, "node_modules/@babel/plugin-transform-dotall-regex": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1183,8 +1204,9 @@ }, "node_modules/@babel/plugin-transform-duplicate-keys": { "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" }, @@ -1197,8 +1219,9 @@ }, "node_modules/@babel/plugin-transform-exponentiation-operator": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1212,8 +1235,9 @@ }, "node_modules/@babel/plugin-transform-flow-strip-types": { "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" @@ -1226,11 +1250,12 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.21.0", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz", + "integrity": "sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-plugin-utils": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -1241,8 +1266,9 @@ }, "node_modules/@babel/plugin-transform-function-name": { "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.18.9", "@babel/helper-function-name": "^7.18.9", @@ -1257,8 +1283,9 @@ }, "node_modules/@babel/plugin-transform-literals": { "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" }, @@ -1271,8 +1298,9 @@ }, "node_modules/@babel/plugin-transform-member-expression-literals": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1285,8 +1313,9 @@ }, "node_modules/@babel/plugin-transform-modules-amd": { "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", + "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.20.11", "@babel/helper-plugin-utils": "^7.20.2" @@ -1299,13 +1328,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.21.2", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz", + "integrity": "sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-simple-access": "^7.20.2" + "@babel/helper-module-transforms": "^7.21.5", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-simple-access": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -1316,8 +1346,9 @@ }, "node_modules/@babel/plugin-transform-modules-systemjs": { "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", + "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-module-transforms": "^7.20.11", @@ -1333,8 +1364,9 @@ }, "node_modules/@babel/plugin-transform-modules-umd": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1348,8 +1380,9 @@ }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", + "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.20.5", "@babel/helper-plugin-utils": "^7.20.2" @@ -1363,8 +1396,9 @@ }, "node_modules/@babel/plugin-transform-new-target": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1377,8 +1411,9 @@ }, "node_modules/@babel/plugin-transform-object-super": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-replace-supers": "^7.18.6" @@ -1392,8 +1427,9 @@ }, "node_modules/@babel/plugin-transform-parameters": { "version": "7.21.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz", + "integrity": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -1406,8 +1442,9 @@ }, "node_modules/@babel/plugin-transform-property-literals": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1420,8 +1457,9 @@ }, "node_modules/@babel/plugin-transform-react-display-name": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", + "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1433,15 +1471,16 @@ } }, "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.21.0", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.5.tgz", + "integrity": "sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.21.0" + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-jsx": "^7.21.4", + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -1452,8 +1491,9 @@ }, "node_modules/@babel/plugin-transform-react-jsx-development": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", + "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/plugin-transform-react-jsx": "^7.18.6" }, @@ -1466,8 +1506,9 @@ }, "node_modules/@babel/plugin-transform-react-jsx-self": { "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.21.0.tgz", + "integrity": "sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -1480,8 +1521,9 @@ }, "node_modules/@babel/plugin-transform-react-jsx-source": { "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz", + "integrity": "sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.19.0" }, @@ -1494,8 +1536,9 @@ }, "node_modules/@babel/plugin-transform-react-pure-annotations": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", + "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1508,11 +1551,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.20.5", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz", + "integrity": "sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-plugin-utils": "^7.21.5", "regenerator-transform": "^0.15.1" }, "engines": { @@ -1524,8 +1568,9 @@ }, "node_modules/@babel/plugin-transform-reserved-words": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1538,8 +1583,9 @@ }, "node_modules/@babel/plugin-transform-shorthand-properties": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1552,8 +1598,9 @@ }, "node_modules/@babel/plugin-transform-spread": { "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", + "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" @@ -1567,8 +1614,9 @@ }, "node_modules/@babel/plugin-transform-sticky-regex": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1581,8 +1629,9 @@ }, "node_modules/@babel/plugin-transform-template-literals": { "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" }, @@ -1595,8 +1644,9 @@ }, "node_modules/@babel/plugin-transform-typeof-symbol": { "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" }, @@ -1609,8 +1659,9 @@ }, "node_modules/@babel/plugin-transform-typescript": { "version": "7.21.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz", + "integrity": "sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-create-class-features-plugin": "^7.21.0", @@ -1625,11 +1676,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.18.10", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz", + "integrity": "sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -1640,8 +1692,9 @@ }, "node_modules/@babel/plugin-transform-unicode-regex": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1654,13 +1707,14 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.21.4", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.5.tgz", + "integrity": "sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@babel/helper-plugin-utils": "^7.20.2", + "@babel/compat-data": "^7.21.5", + "@babel/helper-compilation-targets": "^7.21.5", + "@babel/helper-plugin-utils": "^7.21.5", "@babel/helper-validator-option": "^7.21.0", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7", @@ -1685,6 +1739,7 @@ "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -1694,22 +1749,22 @@ "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.20.7", + "@babel/plugin-transform-arrow-functions": "^7.21.5", "@babel/plugin-transform-async-to-generator": "^7.20.7", "@babel/plugin-transform-block-scoped-functions": "^7.18.6", "@babel/plugin-transform-block-scoping": "^7.21.0", "@babel/plugin-transform-classes": "^7.21.0", - "@babel/plugin-transform-computed-properties": "^7.20.7", + "@babel/plugin-transform-computed-properties": "^7.21.5", "@babel/plugin-transform-destructuring": "^7.21.3", "@babel/plugin-transform-dotall-regex": "^7.18.6", "@babel/plugin-transform-duplicate-keys": "^7.18.9", "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.21.0", + "@babel/plugin-transform-for-of": "^7.21.5", "@babel/plugin-transform-function-name": "^7.18.9", "@babel/plugin-transform-literals": "^7.18.9", "@babel/plugin-transform-member-expression-literals": "^7.18.6", "@babel/plugin-transform-modules-amd": "^7.20.11", - "@babel/plugin-transform-modules-commonjs": "^7.21.2", + "@babel/plugin-transform-modules-commonjs": "^7.21.5", "@babel/plugin-transform-modules-systemjs": "^7.20.11", "@babel/plugin-transform-modules-umd": "^7.18.6", "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5", @@ -1717,17 +1772,17 @@ "@babel/plugin-transform-object-super": "^7.18.6", "@babel/plugin-transform-parameters": "^7.21.3", "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.20.5", + "@babel/plugin-transform-regenerator": "^7.21.5", "@babel/plugin-transform-reserved-words": "^7.18.6", "@babel/plugin-transform-shorthand-properties": "^7.18.6", "@babel/plugin-transform-spread": "^7.20.7", "@babel/plugin-transform-sticky-regex": "^7.18.6", "@babel/plugin-transform-template-literals": "^7.18.9", "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-escapes": "^7.21.5", "@babel/plugin-transform-unicode-regex": "^7.18.6", "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.21.4", + "@babel/types": "^7.21.5", "babel-plugin-polyfill-corejs2": "^0.3.3", "babel-plugin-polyfill-corejs3": "^0.6.0", "babel-plugin-polyfill-regenerator": "^0.4.1", @@ -1741,18 +1796,11 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/preset-flow": { "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.21.4.tgz", + "integrity": "sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-validator-option": "^7.21.0", @@ -1767,8 +1815,9 @@ }, "node_modules/@babel/preset-modules": { "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", @@ -1782,8 +1831,9 @@ }, "node_modules/@babel/preset-react": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", + "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-validator-option": "^7.18.6", @@ -1800,14 +1850,15 @@ } }, "node_modules/@babel/preset-typescript": { - "version": "7.21.4", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.21.5.tgz", + "integrity": "sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-plugin-utils": "^7.21.5", "@babel/helper-validator-option": "^7.21.0", "@babel/plugin-syntax-jsx": "^7.21.4", - "@babel/plugin-transform-modules-commonjs": "^7.21.2", + "@babel/plugin-transform-modules-commonjs": "^7.21.5", "@babel/plugin-transform-typescript": "^7.21.3" }, "engines": { @@ -1819,8 +1870,9 @@ }, "node_modules/@babel/register": { "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.21.0.tgz", + "integrity": "sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==", "dev": true, - "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", "find-cache-dir": "^2.0.0", @@ -1835,91 +1887,193 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/register/node_modules/make-dir": { + "node_modules/@babel/register/node_modules/find-cache-dir": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", "dev": true, - "license": "MIT", "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" }, "engines": { "node": ">=6" } }, - "node_modules/@babel/register/node_modules/semver": { - "version": "5.7.1", + "node_modules/@babel/register/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", + "node_modules/@babel/register/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, - "license": "MIT" - }, - "node_modules/@babel/runtime": { - "version": "7.20.13", - "license": "MIT", "dependencies": { - "regenerator-runtime": "^0.13.11" + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=6" } }, - "node_modules/@babel/template": { - "version": "7.20.7", + "node_modules/@babel/register/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" + "pify": "^4.0.1", + "semver": "^5.6.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=6" } }, - "node_modules/@babel/traverse": { - "version": "7.21.4", + "node_modules/@babel/register/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.4", - "@babel/types": "^7.21.4", - "debug": "^4.1.0", - "globals": "^11.1.0" + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/register/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/register/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@babel/register/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "node_modules/@babel/runtime": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", + "dependencies": { + "regenerator-runtime": "^0.13.11" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/traverse/node_modules/@babel/code-frame": { - "version": "7.21.4", + "node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/highlight": "^7.18.6" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", + "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.5", + "@babel/helper-environment-visitor": "^7.21.5", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.21.5", + "@babel/types": "^7.21.5", + "debug": "^4.1.0", + "globals": "^11.1.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/types": { - "version": "7.21.4", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", + "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-string-parser": "^7.21.5", "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" }, @@ -1929,18 +2083,21 @@ }, "node_modules/@base2/pretty-print-object": { "version": "1.0.1", - "dev": true, - "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz", + "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==", + "dev": true }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true }, "node_modules/@colors/colors": { "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "dev": true, - "license": "MIT", "optional": true, "engines": { "node": ">=0.1.90" @@ -1948,8 +2105,9 @@ }, "node_modules/@csstools/css-parser-algorithms": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.1.1.tgz", + "integrity": "sha512-viRnRh02AgO4mwIQb2xQNJju0i+Fh9roNgmbR5xEuG7J3TGgxjnE95HnBLgsFJOJOksvcfxOUCgODcft6Y07cA==", "dev": true, - "license": "MIT", "engines": { "node": "^14 || ^16 || >=18" }, @@ -1963,8 +2121,9 @@ }, "node_modules/@csstools/css-tokenizer": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.1.1.tgz", + "integrity": "sha512-GbrTj2Z8MCTUv+52GE0RbFGM527xuXZ0Xa5g0Z+YN573uveS4G0qi6WNOMyz3yrFM/jaILTTwJ0+umx81EzqfA==", "dev": true, - "license": "MIT", "engines": { "node": "^14 || ^16 || >=18" }, @@ -1975,8 +2134,9 @@ }, "node_modules/@csstools/media-query-list-parser": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.0.4.tgz", + "integrity": "sha512-GyYot6jHgcSDZZ+tLSnrzkR7aJhF2ZW6d+CXH66mjy5WpAQhZD4HDke2OQ36SivGRWlZJpAz7TzbW6OKlEpxAA==", "dev": true, - "license": "MIT", "engines": { "node": "^14 || ^16 || >=18" }, @@ -1991,8 +2151,9 @@ }, "node_modules/@csstools/selector-specificity": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", "dev": true, - "license": "CC0-1.0", "engines": { "node": "^14 || ^16 || >=18" }, @@ -2006,8 +2167,9 @@ }, "node_modules/@cypress/request": { "version": "2.88.11", + "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz", + "integrity": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==", "dev": true, - "license": "Apache-2.0", "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", @@ -2034,8 +2196,9 @@ }, "node_modules/@cypress/request/node_modules/qs": { "version": "6.10.4", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", + "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.4" }, @@ -2046,10 +2209,20 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/@cypress/request/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, "node_modules/@cypress/xvfb": { "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", + "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==", "dev": true, - "license": "MIT", "dependencies": { "debug": "^3.1.0", "lodash.once": "^4.1.1" @@ -2057,189 +2230,533 @@ }, "node_modules/@cypress/xvfb/node_modules/debug": { "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/@discoveryjs/json-ext": { "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", "dev": true, - "license": "MIT", "engines": { "node": ">=10.0.0" } }, "node_modules/@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.0", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", "dev": true, - "license": "MIT", "peerDependencies": { "react": ">=16.8.0" } }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", + "node_modules/@esbuild/android-arm": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz", + "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==", + "cpu": [ + "arm" + ], "dev": true, - "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + "node": ">=12" } }, - "node_modules/@eslint/eslintrc": { - "version": "1.4.1", + "node_modules/@esbuild/android-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz", + "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=12" } }, - "node_modules/@eslint/eslintrc/node_modules/argparse": { - "version": "2.0.1", - "dev": true, - "license": "Python-2.0" - }, - "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { - "version": "1.1.11", + "node_modules/@esbuild/android-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz", + "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.20.0", + "node_modules/@esbuild/darwin-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz", + "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^0.20.2" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/@eslint/eslintrc/node_modules/js-yaml": { - "version": "4.1.0", + "node_modules/@esbuild/darwin-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz", + "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@eslint/eslintrc/node_modules/minimatch": { - "version": "3.1.2", + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz", + "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": "*" + "node": ">=12" } }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", + "node_modules/@esbuild/freebsd-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz", + "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==", + "cpu": [ + "x64" + ], "dev": true, - "license": "(MIT OR CC0-1.0)", + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/@faker-js/faker": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-7.6.0.tgz", - "integrity": "sha512-XK6BTq1NDMo9Xqw/YkYyGjSsg44fbNwYRx7QK2CuoQgyy+f1rrTDHoExVM5PsyXCtfl2vs2vVJ0MN0yN6LppRw==", + "node_modules/@esbuild/linux-arm": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz", + "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=14.0.0", - "npm": ">=6.0.0" + "node": ">=12" } }, - "node_modules/@fal-works/esbuild-plugin-global-externals": { - "version": "2.1.2", + "node_modules/@esbuild/linux-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz", + "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/@hapi/hoek": { - "version": "9.3.0", + "node_modules/@esbuild/linux-ia32": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz", + "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==", + "cpu": [ + "ia32" + ], "dev": true, - "license": "BSD-3-Clause" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/@hapi/topo": { - "version": "5.1.0", + "node_modules/@esbuild/linux-loong64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz", + "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==", + "cpu": [ + "loong64" + ], "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.0" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.8", + "node_modules/@esbuild/linux-mips64el": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz", + "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz", + "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz", + "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz", + "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz", + "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz", + "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz", + "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz", + "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz", + "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz", + "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz", + "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" + "eslint-visitor-keys": "^3.3.0" }, "engines": { - "node": ">=10.10.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, - "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { - "version": "1.1.11", + "node_modules/@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", + "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", "dev": true, - "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.2", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { - "version": "3.1.2", + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", "dev": true, - "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" + "type-fest": "^0.20.2" }, "engines": { - "node": "*" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.40.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.40.0.tgz", + "integrity": "sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@faker-js/faker": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-7.6.0.tgz", + "integrity": "sha512-XK6BTq1NDMo9Xqw/YkYyGjSsg44fbNwYRx7QK2CuoQgyy+f1rrTDHoExVM5PsyXCtfl2vs2vVJ0MN0yN6LppRw==", + "engines": { + "node": ">=14.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/@fal-works/esbuild-plugin-global-externals": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz", + "integrity": "sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==", + "dev": true + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "dev": true + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" } }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=12.22" }, @@ -2250,13 +2767,15 @@ }, "node_modules/@humanwhocodes/object-schema": { "version": "1.2.1", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, - "license": "ISC", "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", @@ -2270,8 +2789,9 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -2282,8 +2802,9 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -2293,8 +2814,9 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -2307,8 +2829,9 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -2318,16 +2841,18 @@ }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/console": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -2342,8 +2867,9 @@ }, "node_modules/@jest/console/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -2353,8 +2879,9 @@ }, "node_modules/@jest/console/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -2369,13 +2896,15 @@ }, "node_modules/@jest/console/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/@jest/console/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -2388,8 +2917,9 @@ }, "node_modules/@jest/console/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -2401,50 +2931,90 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/console/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/console/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/@jest/console/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/@jest/console/node_modules/jest-util": { + "node_modules/@jest/console/node_modules/jest-message-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", "dev": true, - "license": "MIT", "dependencies": { + "@babel/code-frame": "^7.12.13", "@jest/types": "^28.1.3", - "@types/node": "*", + "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", - "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/console/node_modules/supports-color": { + "node_modules/@jest/console/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/console/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/console/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@jest/console/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -2454,8 +3024,9 @@ }, "node_modules/@jest/core": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-28.1.3.tgz", + "integrity": "sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/console": "^28.1.3", "@jest/reporters": "^28.1.3", @@ -2501,8 +3072,9 @@ }, "node_modules/@jest/core/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -2512,8 +3084,9 @@ }, "node_modules/@jest/core/node_modules/@jest/transform": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz", + "integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^28.1.3", @@ -2537,8 +3110,9 @@ }, "node_modules/@jest/core/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -2553,13 +3127,15 @@ }, "node_modules/@jest/core/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/@jest/core/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -2572,8 +3148,9 @@ }, "node_modules/@jest/core/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -2585,34 +3162,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/core/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/core/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/@jest/core/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/core/node_modules/jest-haste-map": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", + "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/graceful-fs": "^4.1.3", @@ -2633,61 +3196,57 @@ "fsevents": "^2.3.2" } }, - "node_modules/@jest/core/node_modules/jest-regex-util": { - "version": "28.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/core/node_modules/jest-util": { + "node_modules/@jest/core/node_modules/jest-message-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", "dev": true, - "license": "MIT", "dependencies": { + "@babel/code-frame": "^7.12.13", "@jest/types": "^28.1.3", - "@types/node": "*", + "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", - "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/core/node_modules/jest-worker": { - "version": "28.1.3", + "node_modules/@jest/core/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/core/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", + "node_modules/@jest/core/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/@jest/core/node_modules/pretty-format": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "ansi-regex": "^5.0.1", @@ -2700,8 +3259,9 @@ }, "node_modules/@jest/core/node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -2711,13 +3271,15 @@ }, "node_modules/@jest/core/node_modules/react-is": { "version": "18.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, "node_modules/@jest/core/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -2727,8 +3289,9 @@ }, "node_modules/@jest/environment": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-28.1.3.tgz", + "integrity": "sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/fake-timers": "^28.1.3", "@jest/types": "^28.1.3", @@ -2741,8 +3304,9 @@ }, "node_modules/@jest/environment/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -2752,8 +3316,9 @@ }, "node_modules/@jest/environment/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -2768,13 +3333,15 @@ }, "node_modules/@jest/environment/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/@jest/environment/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -2787,8 +3354,9 @@ }, "node_modules/@jest/environment/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -2800,34 +3368,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/environment/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/environment/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/@jest/environment/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/environment/node_modules/jest-mock": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.3.tgz", + "integrity": "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*" @@ -2838,8 +3392,9 @@ }, "node_modules/@jest/environment/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -2849,8 +3404,9 @@ }, "node_modules/@jest/expect": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-28.1.3.tgz", + "integrity": "sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==", "dev": true, - "license": "MIT", "dependencies": { "expect": "^28.1.3", "jest-snapshot": "^28.1.3" @@ -2861,7 +3417,8 @@ }, "node_modules/@jest/expect-utils": { "version": "29.5.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", "dependencies": { "jest-get-type": "^29.4.3" }, @@ -2869,33 +3426,23 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/expect-utils/node_modules/jest-get-type": { - "version": "29.4.3", - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/fake-timers": { + "node_modules/@jest/expect/node_modules/@jest/expect-utils": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.3.tgz", + "integrity": "sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^28.1.3", - "@sinonjs/fake-timers": "^9.1.2", - "@types/node": "*", - "jest-message-util": "^28.1.3", - "jest-mock": "^28.1.3", - "jest-util": "^28.1.3" + "jest-get-type": "^28.0.2" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/fake-timers/node_modules/@jest/schemas": { + "node_modules/@jest/expect/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -2903,10 +3450,11 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/fake-timers/node_modules/@jest/types": { + "node_modules/@jest/expect/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -2919,15 +3467,17 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/fake-timers/node_modules/@sinclair/typebox": { + "node_modules/@jest/expect/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, - "node_modules/@jest/fake-timers/node_modules/ansi-styles": { + "node_modules/@jest/expect/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -2938,10 +3488,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@jest/fake-timers/node_modules/chalk": { + "node_modules/@jest/expect/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -2953,86 +3504,183 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/fake-timers/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/@jest/expect/node_modules/diff-sequences": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.1.1.tgz", + "integrity": "sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==", "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/fake-timers/node_modules/color-name": { - "version": "1.1.4", + "node_modules/@jest/expect/node_modules/expect": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/expect/-/expect-28.1.3.tgz", + "integrity": "sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==", "dev": true, - "license": "MIT" + "dependencies": { + "@jest/expect-utils": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } }, - "node_modules/@jest/fake-timers/node_modules/has-flag": { + "node_modules/@jest/expect/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/@jest/fake-timers/node_modules/jest-mock": { + "node_modules/@jest/expect/node_modules/jest-diff": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.3.tgz", + "integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*" + "chalk": "^4.0.0", + "diff-sequences": "^28.1.1", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/fake-timers/node_modules/jest-util": { - "version": "28.1.3", + "node_modules/@jest/expect/node_modules/jest-get-type": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz", + "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/fake-timers/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/@jest/expect/node_modules/jest-matcher-utils": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz", + "integrity": "sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==", "dev": true, - "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "chalk": "^4.0.0", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" }, "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/globals": { + "node_modules/@jest/expect/node_modules/jest-message-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/environment": "^28.1.3", - "@jest/expect": "^28.1.3", - "@jest/types": "^28.1.3" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/globals/node_modules/@jest/schemas": { + "node_modules/@jest/expect/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/expect/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/expect/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/expect/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@jest/expect/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/fake-timers": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-28.1.3.tgz", + "integrity": "sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@sinonjs/fake-timers": "^9.1.2", + "@types/node": "*", + "jest-message-util": "^28.1.3", + "jest-mock": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -3040,10 +3688,11 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/globals/node_modules/@jest/types": { + "node_modules/@jest/fake-timers/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -3056,15 +3705,17 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/globals/node_modules/@sinclair/typebox": { + "node_modules/@jest/fake-timers/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, - "node_modules/@jest/globals/node_modules/ansi-styles": { + "node_modules/@jest/fake-timers/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3075,10 +3726,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@jest/globals/node_modules/chalk": { + "node_modules/@jest/fake-timers/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3090,34 +3742,204 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/globals/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/@jest/fake-timers/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/fake-timers/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", "dev": true, - "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { - "node": ">=7.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/globals/node_modules/color-name": { - "version": "1.1.4", + "node_modules/@jest/fake-timers/node_modules/jest-mock": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.3.tgz", + "integrity": "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/fake-timers/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@jest/fake-timers/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/globals": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-28.1.3.tgz", + "integrity": "sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==", + "dev": true, + "dependencies": { + "@jest/environment": "^28.1.3", + "@jest/expect": "^28.1.3", + "@jest/types": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true + }, + "node_modules/@jest/globals/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/globals/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } }, "node_modules/@jest/globals/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/globals/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3127,8 +3949,9 @@ }, "node_modules/@jest/reporters": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-28.1.3.tgz", + "integrity": "sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==", "dev": true, - "license": "MIT", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^28.1.3", @@ -3170,8 +3993,9 @@ }, "node_modules/@jest/reporters/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -3181,8 +4005,9 @@ }, "node_modules/@jest/reporters/node_modules/@jest/transform": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz", + "integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^28.1.3", @@ -3206,8 +4031,9 @@ }, "node_modules/@jest/reporters/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -3222,13 +4048,15 @@ }, "node_modules/@jest/reporters/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/@jest/reporters/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3239,19 +4067,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@jest/reporters/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/@jest/reporters/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3263,26 +4083,11 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/reporters/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/reporters/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/@jest/reporters/node_modules/glob": { "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -3300,16 +4105,18 @@ }, "node_modules/@jest/reporters/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/reporters/node_modules/jest-haste-map": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", + "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/graceful-fs": "^4.1.3", @@ -3330,18 +4137,40 @@ "fsevents": "^2.3.2" } }, + "node_modules/@jest/reporters/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, "node_modules/@jest/reporters/node_modules/jest-regex-util": { "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "dev": true, - "license": "MIT", "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/@jest/reporters/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -3354,48 +4183,44 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/reporters/node_modules/jest-worker": { + "node_modules/@jest/reporters/node_modules/pretty-format": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dev": true, - "license": "MIT", "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/reporters/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", + "node_modules/@jest/reporters/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@jest/reporters/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } + "node_modules/@jest/reporters/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, "node_modules/@jest/reporters/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3405,7 +4230,8 @@ }, "node_modules/@jest/schemas": { "version": "29.4.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", "dependencies": { "@sinclair/typebox": "^0.25.16" }, @@ -3415,8 +4241,9 @@ }, "node_modules/@jest/source-map": { "version": "28.1.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-28.1.2.tgz", + "integrity": "sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==", "dev": true, - "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.13", "callsites": "^3.0.0", @@ -3428,8 +4255,9 @@ }, "node_modules/@jest/test-result": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", "dev": true, - "license": "MIT", "dependencies": { "@jest/console": "^28.1.3", "@jest/types": "^28.1.3", @@ -3442,8 +4270,9 @@ }, "node_modules/@jest/test-result/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -3453,8 +4282,9 @@ }, "node_modules/@jest/test-result/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -3469,13 +4299,15 @@ }, "node_modules/@jest/test-result/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/@jest/test-result/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3488,8 +4320,9 @@ }, "node_modules/@jest/test-result/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3501,34 +4334,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/test-result/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/test-result/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/@jest/test-result/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/test-result/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3538,8 +4357,9 @@ }, "node_modules/@jest/test-sequencer": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-28.1.3.tgz", + "integrity": "sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==", "dev": true, - "license": "MIT", "dependencies": { "@jest/test-result": "^28.1.3", "graceful-fs": "^4.2.9", @@ -3552,8 +4372,9 @@ }, "node_modules/@jest/test-sequencer/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -3563,8 +4384,9 @@ }, "node_modules/@jest/test-sequencer/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -3579,13 +4401,15 @@ }, "node_modules/@jest/test-sequencer/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/@jest/test-sequencer/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3598,8 +4422,9 @@ }, "node_modules/@jest/test-sequencer/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3611,34 +4436,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/test-sequencer/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/test-sequencer/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/@jest/test-sequencer/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/test-sequencer/node_modules/jest-haste-map": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", + "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/graceful-fs": "^4.1.3", @@ -3661,16 +4472,18 @@ }, "node_modules/@jest/test-sequencer/node_modules/jest-regex-util": { "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "dev": true, - "license": "MIT", "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/@jest/test-sequencer/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -3683,37 +4496,11 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/test-sequencer/node_modules/jest-worker": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/test-sequencer/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, "node_modules/@jest/test-sequencer/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3723,8 +4510,9 @@ }, "node_modules/@jest/transform": { "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^29.5.0", @@ -3748,8 +4536,9 @@ }, "node_modules/@jest/transform/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3762,8 +4551,9 @@ }, "node_modules/@jest/transform/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3775,39 +4565,26 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/transform/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/@jest/transform/node_modules/convert-source-map": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true }, "node_modules/@jest/transform/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/transform/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3817,7 +4594,8 @@ }, "node_modules/@jest/types": { "version": "29.5.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", "dependencies": { "@jest/schemas": "^29.4.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -3832,7 +4610,8 @@ }, "node_modules/@jest/types/node_modules/ansi-styles": { "version": "4.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { "color-convert": "^2.0.1" }, @@ -3845,7 +4624,8 @@ }, "node_modules/@jest/types/node_modules/chalk": { "version": "4.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3857,30 +4637,18 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/types/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/types/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, "node_modules/@jest/types/node_modules/has-flag": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, "node_modules/@jest/types/node_modules/supports-color": { "version": "7.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { "has-flag": "^4.0.0" }, @@ -3888,44 +4656,119 @@ "node": ">=8" } }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", + "node_modules/@joshwooding/vite-plugin-react-docgen-typescript": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@joshwooding/vite-plugin-react-docgen-typescript/-/vite-plugin-react-docgen-typescript-0.2.1.tgz", + "integrity": "sha512-ou4ZJSXMMWHqGS4g8uNRbC5TiTWxAgQZiVucoUrOCWuPrTbkpJbmVyIi9jU72SBry7gQtuMEDp4YR8EEXAg7VQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "glob": "^7.2.0", + "glob-promise": "^4.2.0", + "magic-string": "^0.27.0", + "react-docgen-typescript": "^2.2.2" }, - "engines": { - "node": ">=6.0.0" + "peerDependencies": { + "typescript": ">= 4.3.x", + "vite": "^3.0.0 || ^4.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", + "node_modules/@joshwooding/vite-plugin-react-docgen-typescript/node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", + "node_modules/@joshwooding/vite-plugin-react-docgen-typescript/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@joshwooding/vite-plugin-react-docgen-typescript/node_modules/glob-promise": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-4.2.2.tgz", + "integrity": "sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.3" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/ahmadnassri" + }, + "peerDependencies": { + "glob": "^7.1.6" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "dev": true, - "license": "MIT" + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "dev": true, - "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -3933,18 +4776,21 @@ }, "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { "version": "1.4.14", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true }, "node_modules/@juggle/resize-observer": { "version": "3.4.0", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", + "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==", + "dev": true }, "node_modules/@mdx-js/react": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-2.3.0.tgz", + "integrity": "sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==", "dev": true, - "license": "MIT", "dependencies": { "@types/mdx": "^2.0.0", "@types/react": ">=16" @@ -3959,8 +4805,9 @@ }, "node_modules/@mrmlnc/readdir-enhanced": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", "dev": true, - "license": "MIT", "dependencies": { "call-me-maybe": "^1.0.1", "glob-to-regexp": "^0.3.0" @@ -3971,8 +4818,9 @@ }, "node_modules/@mrmlnc/readdir-enhanced/node_modules/glob-to-regexp": { "version": "0.3.0", - "dev": true, - "license": "BSD" + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==", + "dev": true }, "node_modules/@mswjs/cookies": { "version": "0.2.2", @@ -4017,8 +4865,9 @@ }, "node_modules/@ndelangen/get-tarball": { "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@ndelangen/get-tarball/-/get-tarball-3.0.7.tgz", + "integrity": "sha512-NqGfTZIZpRFef1GoVaShSSRwDC3vde3ThtTeqFdcYd6ipKqnfEVhjK2hUeHjCQUcptyZr2TONqcloFXM+5QBrQ==", "dev": true, - "license": "MIT", "dependencies": { "gunzip-maybe": "^1.4.2", "pump": "^3.0.0", @@ -4027,8 +4876,9 @@ }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, - "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -4039,16 +4889,18 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, - "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, - "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -4065,7 +4917,8 @@ }, "node_modules/@popperjs/core": { "version": "2.11.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.7.tgz", + "integrity": "sha512-Cr4OjIkipTtcXKjAsm8agyleBuDHvxzeBoa1v543lbv1YaIwQjESsVcmjiWiPEbC1FIeHOG/Op9kdCmAmiS3Kw==", "funding": { "type": "opencollective", "url": "https://opencollective.com/popperjs" @@ -4073,7 +4926,8 @@ }, "node_modules/@react-aria/ssr": { "version": "3.6.0", - "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.6.0.tgz", + "integrity": "sha512-OFiYQdv+Yk7AO7IsQu/fAEPijbeTwrrEYvdNoJ3sblBBedD5j5fBTNWrUPNVlwC4XWWnWTCMaRIVsJujsFiWXg==", "dependencies": { "@swc/helpers": "^0.4.14" }, @@ -4082,15 +4936,17 @@ } }, "node_modules/@remix-run/router": { - "version": "1.3.2", - "license": "MIT", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.6.1.tgz", + "integrity": "sha512-YUkWj+xs0oOzBe74OgErsuR3wVn+efrFhXBWrit50kOiED+pvQe2r6MWY0iJMQU/mSVKxvNzL4ZaYvjdX+G7ZA==", "engines": { "node": ">=14" } }, "node_modules/@restart/hooks": { "version": "0.4.9", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.9.tgz", + "integrity": "sha512-3BekqcwB6Umeya+16XPooARn4qEPW6vNvwYnlofIYe6h9qG1/VeD7UvShCWx11eFz5ELYmwIEshz+MkPX3wjcQ==", "dependencies": { "dequal": "^2.0.2" }, @@ -4100,7 +4956,8 @@ }, "node_modules/@restart/ui": { "version": "1.6.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.3.tgz", + "integrity": "sha512-7HM5aiSWvJBWr+FghZj/n3PSuH2kUrOPiu/D92aIv1zTL8IBwFoQ3oz/f76svoN5v2PKaP6pQbg6vTcIiSffzg==", "dependencies": { "@babel/runtime": "^7.21.0", "@popperjs/core": "^2.11.6", @@ -4117,20 +4974,11 @@ "react-dom": ">=16.14.0" } }, - "node_modules/@restart/ui/node_modules/@babel/runtime": { - "version": "7.21.0", - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@rollup/pluginutils": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", "dev": true, - "license": "MIT", "dependencies": { "estree-walker": "^2.0.1", "picomatch": "^2.2.2" @@ -4141,46 +4989,53 @@ }, "node_modules/@sideway/address": { "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0" } }, "node_modules/@sideway/formula": { "version": "3.0.1", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "dev": true }, "node_modules/@sideway/pinpoint": { "version": "2.0.0", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true }, "node_modules/@sinclair/typebox": { "version": "0.25.24", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==" }, "node_modules/@sinonjs/commons": { "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } }, "node_modules/@sinonjs/fake-timers": { "version": "9.1.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz", + "integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^1.7.0" } }, "node_modules/@sinonjs/samsam": { "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-8.0.0.tgz", + "integrity": "sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^2.0.0", "lodash.get": "^4.4.2", @@ -4189,32 +5044,35 @@ }, "node_modules/@sinonjs/samsam/node_modules/@sinonjs/commons": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } }, "node_modules/@sinonjs/text-encoding": { "version": "0.7.2", - "dev": true, - "license": "(Unlicense OR Apache-2.0)" + "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz", + "integrity": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==", + "dev": true }, "node_modules/@storybook/addon-a11y": { - "version": "7.0.2", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-a11y/-/addon-a11y-7.0.10.tgz", + "integrity": "sha512-uzCnpn70n1El4j4SSFx23tKGr9XDeCb1eF20Fo6RTAb/rBp7xmksXR532SDkKRXwBvXcKwdJh9NICNFzzWWnqg==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/addon-highlight": "7.0.2", - "@storybook/channels": "7.0.2", - "@storybook/client-logger": "7.0.2", - "@storybook/components": "7.0.2", - "@storybook/core-events": "7.0.2", + "@storybook/addon-highlight": "7.0.10", + "@storybook/channels": "7.0.10", + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.2", - "@storybook/preview-api": "7.0.2", - "@storybook/theming": "7.0.2", - "@storybook/types": "7.0.2", + "@storybook/manager-api": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/theming": "7.0.10", + "@storybook/types": "7.0.10", "axe-core": "^4.2.0", "lodash": "^4.17.21", "react-resize-detector": "^7.1.2" @@ -4237,18 +5095,19 @@ } }, "node_modules/@storybook/addon-actions": { - "version": "7.0.5", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.0.10.tgz", + "integrity": "sha512-U8c7n918/mOjXnc1Iu/sglbK+ryC4xoyjWE5SG/68h0+sHb1rioNq7leAi24mCP6jNwNI5Q7TWtuvflOGxQDKQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/core-events": "7.0.5", + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", + "@storybook/manager-api": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/theming": "7.0.10", + "@storybook/types": "7.0.10", "dequal": "^2.0.2", "lodash": "^4.17.21", "polished": "^4.2.2", @@ -4256,7 +5115,7 @@ "react-inspector": "^6.0.0", "telejson": "^7.0.3", "ts-dedent": "^2.0.0", - "uuid-browser": "^3.1.0" + "uuid": "^9.0.0" }, "funding": { "type": "opencollective", @@ -4275,57 +5134,102 @@ } } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", + "node_modules/@storybook/addon-backgrounds": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.0.10.tgz", + "integrity": "sha512-QtOxXO9hKtwBjjdLXWYKp4HpcpNOrLfc71dn78XbMKyCkQRlYtVe8GNk/++70UQtFfKCEJIB0hTHrPmSjDJE5A==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "@storybook/manager-api": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/theming": "7.0.10", + "@storybook/types": "7.0.10", + "memoizerific": "^1.11.3", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" + "node_modules/@storybook/addon-controls": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.0.10.tgz", + "integrity": "sha512-j5UiPH8ZJx0ieUoIeV3iENlsIRDuQCeg3gTlLD668sebx8KHOCSJygh0Zvg1sTUUGSIbenhWaPlqfaW6ShKFWQ==", + "dev": true, + "dependencies": { + "@storybook/blocks": "7.0.10", + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/core-common": "7.0.10", + "@storybook/manager-api": "7.0.10", + "@storybook/node-logger": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/theming": "7.0.10", + "@storybook/types": "7.0.10", + "lodash": "^4.17.21", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/components": { - "version": "7.0.5", + "node_modules/@storybook/addon-docs": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.0.10.tgz", + "integrity": "sha512-1tUsJ+fuBqk4oTOBLabyPQeQYiRKs9I6+soY7dG8jN15Bxe/Ey2giNpqUkA3xAIuqS75ydRVKmsfQvILu2nLjg==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/csf": "^0.1.0", + "@babel/core": "^7.20.2", + "@babel/plugin-transform-react-jsx": "^7.19.0", + "@jest/transform": "^29.3.1", + "@mdx-js/react": "^2.1.5", + "@storybook/blocks": "7.0.10", + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/csf-plugin": "7.0.10", + "@storybook/csf-tools": "7.0.10", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "@storybook/mdx2-csf": "^1.0.0", + "@storybook/node-logger": "7.0.10", + "@storybook/postinstall": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/react-dom-shim": "7.0.10", + "@storybook/theming": "7.0.10", + "@storybook/types": "7.0.10", + "fs-extra": "^11.1.0", + "remark-external-links": "^8.0.0", + "remark-slug": "^6.0.0", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", @@ -4336,34 +5240,25 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/manager-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", + "node_modules/@storybook/addon-essentials": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.0.10.tgz", + "integrity": "sha512-nOeUtNbfLXOlgGqqqlsYC9gcYSrAxABBo8jHYiZg3xaEB9+cnKjCKK8VxrqJiR002AG5JZvi+uHeAauM94fkkQ==", + "dev": true, + "dependencies": { + "@storybook/addon-actions": "7.0.10", + "@storybook/addon-backgrounds": "7.0.10", + "@storybook/addon-controls": "7.0.10", + "@storybook/addon-docs": "7.0.10", + "@storybook/addon-highlight": "7.0.10", + "@storybook/addon-measure": "7.0.10", + "@storybook/addon-outline": "7.0.10", + "@storybook/addon-toolbars": "7.0.10", + "@storybook/addon-viewport": "7.0.10", + "@storybook/core-common": "7.0.10", + "@storybook/manager-api": "7.0.10", + "@storybook/node-logger": "7.0.10", + "@storybook/preview-api": "7.0.10", "ts-dedent": "^2.0.0" }, "funding": { @@ -4375,40 +5270,40 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/preview-api": { - "version": "7.0.5", + "node_modules/@storybook/addon-highlight": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.0.10.tgz", + "integrity": "sha512-TohDxElSu7JrSvhLRZAwtNk/7Ot626wvlODwklocE4kbtn1fulFoUlRta7NImBGX554LITDFRy0m4R1rRQ9OfQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", + "@storybook/core-events": "7.0.10", "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "@storybook/preview-api": "7.0.10" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/router": { - "version": "7.0.5", + "node_modules/@storybook/addon-interactions": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-7.0.10.tgz", + "integrity": "sha512-7hdFgoetQblwysYwRlmC5fbMVDb6lIM6le1pVEmRci6X44Gr2Xe5w2s6h5bTp4tMpNS1CFKjru9kF/TqfK46wA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/core-common": "7.0.10", + "@storybook/core-events": "7.0.10", + "@storybook/global": "^5.0.0", + "@storybook/instrumenter": "7.0.10", + "@storybook/manager-api": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/theming": "7.0.10", + "@storybook/types": "7.0.10", + "jest-mock": "^27.0.6", + "polished": "^4.2.2", + "ts-dedent": "^2.2.0" }, "funding": { "type": "opencollective", @@ -4417,17 +5312,32 @@ "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/theming": { - "version": "7.0.5", + "node_modules/@storybook/addon-links": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.0.10.tgz", + "integrity": "sha512-Odhe0eICqW9X2yyIjtOVb23cKXJ2WRxPHBm5oYf6hBBoXXK7EJicwyQSJLxJyHK7r1PeAnFxSGlNrO3w7JULjg==", "dev": true, - "license": "MIT", "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", + "@storybook/client-logger": "7.0.10", + "@storybook/core-events": "7.0.10", + "@storybook/csf": "^0.1.0", "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/manager-api": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/router": "7.0.10", + "@storybook/types": "7.0.10", + "prop-types": "^15.7.2", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", @@ -4436,37 +5346,60 @@ "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/types": { - "version": "7.0.5", + "node_modules/@storybook/addon-measure": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.0.10.tgz", + "integrity": "sha512-70BQT8PM6r3qjXDgXuN5mx9CBq9dYTdEgR1tlZ8FbMi8B8tB1oZJD0o6tfGM3r8WjdI0sTwX70ic5pv9Ma/MiA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/core-events": "7.0.10", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/types": "7.0.10" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-backgrounds": { - "version": "7.0.5", + "node_modules/@storybook/addon-outline": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.0.10.tgz", + "integrity": "sha512-Aakoc+II7orfgUDmjgMbnSp5HZS/47z0NeRAfh+FP4fxL0lFd9vmaeIXWYo1DjJqdEFfvlSLd8aS9Ltb+souMw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/core-events": "7.0.5", + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "memoizerific": "^1.11.3", + "@storybook/manager-api": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/types": "7.0.10", "ts-dedent": "^2.0.0" }, "funding": { @@ -4486,57 +5419,50 @@ } } }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", + "node_modules/@storybook/addon-toolbars": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.0.10.tgz", + "integrity": "sha512-U4a45CDw4SZzrgboYVMgxyiD7Ejud1kSz2lyS+J3fGTZGXq2+tmJS/2oNrLJlSH7v8629lVUbKnFxsP0HbfShg==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/manager-api": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/theming": "7.0.10" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/components": { - "version": "7.0.5", + "node_modules/@storybook/addon-viewport": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.0.10.tgz", + "integrity": "sha512-Ck9sdCg3T8ChXoxYL5IEi+ZUOwdH6Je5XeK4kRVq+Ar+Ytm5CFTGJCCZjI6biroTnuJCUefaV2K5NUZoHkZI+A==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/csf": "^0.1.0", + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", + "@storybook/manager-api": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/theming": "7.0.10", "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "prop-types": "^15.7.2" }, "funding": { "type": "opencollective", @@ -4545,101 +5471,45 @@ "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/manager-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/preview-api": { - "version": "7.0.5", + "node_modules/@storybook/blocks": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.0.10.tgz", + "integrity": "sha512-OqXuN1x2TjXgrOqGSaD0Vz8iCqmLjiPkrQpWMD7bToFpHH0dpmcrzzRhLhxgJLN2CAzyr98IYIkUgXX9Da1neA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", + "@storybook/channels": "7.0.10", + "@storybook/client-logger": "7.0.10", + "@storybook/components": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/csf": "^0.1.0", + "@storybook/docs-tools": "7.0.10", "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", + "@storybook/manager-api": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/theming": "7.0.10", + "@storybook/types": "7.0.10", + "@types/lodash": "^4.14.167", + "color-convert": "^2.0.1", "dequal": "^2.0.2", "lodash": "^4.17.21", + "markdown-to-jsx": "^7.1.8", "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", + "polished": "^4.2.2", + "react-colorful": "^5.1.2", + "telejson": "^7.0.3", "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/router": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/theming": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" @@ -4649,63 +5519,92 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/types": { - "version": "7.0.5", + "node_modules/@storybook/builder-manager": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.0.10.tgz", + "integrity": "sha512-izCVE4JEbDVN5DPkX/Ym1PifAJKlheBvXKmGXGklnJQ2l+TEuvesPbOmVFNuu7ptJAFw4JO5n2KAo9+a5FRwiw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "@fal-works/esbuild-plugin-global-externals": "^2.1.2", + "@storybook/core-common": "7.0.10", + "@storybook/manager": "7.0.10", + "@storybook/node-logger": "7.0.10", + "@types/ejs": "^3.1.1", + "@types/find-cache-dir": "^3.2.1", + "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", + "browser-assert": "^1.2.1", + "ejs": "^3.1.8", + "esbuild": "^0.17.0", + "esbuild-plugin-alias": "^0.2.1", + "express": "^4.17.3", + "find-cache-dir": "^3.0.0", + "fs-extra": "^11.1.0", + "process": "^0.11.10", + "util": "^0.12.4" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-controls": { - "version": "7.0.5", + "node_modules/@storybook/builder-vite": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/builder-vite/-/builder-vite-7.0.10.tgz", + "integrity": "sha512-tKY2QnHni10TE3+Sy2wfR7h4FuribR849VBpDI/LcwtRkCgoOBfMCdEnAKMWyU6qAlY+9KDSOQq9SDTu3WZGOg==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/blocks": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/core-common": "7.0.5", - "@storybook/manager-api": "7.0.5", - "@storybook/node-logger": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "lodash": "^4.17.21", - "ts-dedent": "^2.0.0" + "@storybook/channel-postmessage": "7.0.10", + "@storybook/channel-websocket": "7.0.10", + "@storybook/client-logger": "7.0.10", + "@storybook/core-common": "7.0.10", + "@storybook/csf-plugin": "7.0.10", + "@storybook/mdx2-csf": "^1.0.0", + "@storybook/node-logger": "7.0.10", + "@storybook/preview": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/types": "7.0.10", + "browser-assert": "^1.2.1", + "es-module-lexer": "^0.9.3", + "express": "^4.17.3", + "fs-extra": "^11.1.0", + "glob": "^8.1.0", + "glob-promise": "^6.0.2", + "magic-string": "^0.27.0", + "remark-external-links": "^8.0.0", + "remark-slug": "^6.0.0", + "rollup": "^2.25.0 || ^3.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@preact/preset-vite": "*", + "typescript": ">= 4.3.x", + "vite": "^3.0.0 || ^4.0.0", + "vite-plugin-glimmerx": "*" }, "peerDependenciesMeta": { - "react": { + "@preact/preset-vite": { "optional": true }, - "react-dom": { + "typescript": { + "optional": true + }, + "vite-plugin-glimmerx": { "optional": true } } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", + "node_modules/@storybook/channel-postmessage": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.10.tgz", + "integrity": "sha512-Y5ZSp9WYH3HznQ2rrGN78Y5fYM16Bfvyn3iKy5QD38gsQk1gTrra1osIZ0X+lk3sep14D4oW4QMW3DCSrn0Big==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", + "@storybook/channels": "7.0.10", + "@storybook/client-logger": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/global": "^5.0.0", "qs": "^6.10.0", "telejson": "^7.0.3" @@ -4715,308 +5614,276 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/channels": { - "version": "7.0.5", + "node_modules/@storybook/channel-websocket": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/channel-websocket/-/channel-websocket-7.0.10.tgz", + "integrity": "sha512-WXueykS71YxEqKlsIbbmmA6QSChEePffzqs7QASUpHhi21IDqmtq2HhAqYWlQptyqSWYdv6wxrOqwe6z4zakLA==", "dev": true, - "license": "MIT", + "dependencies": { + "@storybook/channels": "7.0.10", + "@storybook/client-logger": "7.0.10", + "@storybook/global": "^5.0.0", + "telejson": "^7.0.3" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/client-logger": { - "version": "7.0.5", + "node_modules/@storybook/channels": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.10.tgz", + "integrity": "sha512-hdPaGV3W7s6MkVcg33S5hmkVgqXC16AA7H0ID9MROiU1lQzolKhSqCs2iVfGPQfmWzEJeqWQoEXU7dmCclRM0w==", "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/components": { - "version": "7.0.5", + "node_modules/@storybook/cli": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.0.10.tgz", + "integrity": "sha512-FhtE6Yrk7MMa9AgLb3MTmqiQ3IlWHjjrj7Vcj2QM6BcP342xSe7C1d+V6+tYX/oPOEB3Upz+PKNrju1iHxurQQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", + "@babel/core": "^7.20.2", + "@babel/preset-env": "^7.20.2", + "@ndelangen/get-tarball": "^3.0.7", + "@storybook/codemod": "7.0.10", + "@storybook/core-common": "7.0.10", + "@storybook/core-server": "7.0.10", + "@storybook/csf-tools": "7.0.10", + "@storybook/node-logger": "7.0.10", + "@storybook/telemetry": "7.0.10", + "@storybook/types": "7.0.10", + "@types/semver": "^7.3.4", + "boxen": "^5.1.2", + "chalk": "^4.1.0", + "commander": "^6.2.1", + "cross-spawn": "^7.0.3", + "detect-indent": "^6.1.0", + "envinfo": "^7.7.3", + "execa": "^5.0.0", + "express": "^4.17.3", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "get-npm-tarball-url": "^2.0.3", + "get-port": "^5.1.1", + "giget": "^1.0.0", + "globby": "^11.0.2", + "jscodeshift": "^0.14.0", + "leven": "^3.1.0", + "prettier": "^2.8.0", + "prompts": "^2.4.0", + "puppeteer-core": "^2.1.1", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "shelljs": "^0.8.5", + "simple-update-notifier": "^1.0.0", + "strip-json-comments": "^3.0.1", + "tempy": "^1.0.1", + "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "bin": { + "getstorybook": "bin/index.js", + "sb": "bin/index.js" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/manager-api": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "color-convert": "^2.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/preview-api": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/router": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">= 6" } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/theming": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "license": "MIT", "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=10" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/types": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/addon-docs": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.20.2", - "@babel/plugin-transform-react-jsx": "^7.19.0", - "@jest/transform": "^29.3.1", - "@mdx-js/react": "^2.1.5", - "@storybook/blocks": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/csf-plugin": "7.0.5", - "@storybook/csf-tools": "7.0.5", - "@storybook/global": "^5.0.0", - "@storybook/mdx2-csf": "^1.0.0", - "@storybook/node-logger": "7.0.5", - "@storybook/postinstall": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/react-dom-shim": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "fs-extra": "^11.1.0", - "remark-external-links": "^8.0.0", - "remark-slug": "^6.0.0", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=10.17.0" } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/channels": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/client-logger": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "lru-cache": "^6.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/components": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "has-flag": "^4.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/core-events": { - "version": "7.0.5", + "node_modules/@storybook/cli/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/client-logger": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.10.tgz", + "integrity": "sha512-hb8tO+w28ErzjEw69ERMtZT81Xyg835FQjH6Y42ejoGcBA9Z0W6RZmx4RgkcIUOlYXkU6lSnNVne9gXodV4/Hw==", "dev": true, - "license": "MIT", + "dependencies": { + "@storybook/global": "^5.0.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/preview-api": { - "version": "7.0.5", + "node_modules/@storybook/codemod": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.0.10.tgz", + "integrity": "sha512-BnPknLV3wnaSk0azjFBAWLVfwgUHtFvVk9I6y1idIaQhc0nnegKoa0jTxWigthftZK/Pv9yG3gxG7o7O4KcChQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", + "@babel/core": "~7.21.0", + "@babel/preset-env": "~7.21.0", + "@babel/types": "~7.21.2", "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", + "@storybook/csf-tools": "7.0.10", + "@storybook/node-logger": "7.0.10", + "@storybook/types": "7.0.10", + "cross-spawn": "^7.0.3", + "globby": "^11.0.2", + "jscodeshift": "^0.14.0", "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "prettier": "^2.8.0", + "recast": "^0.23.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/theming": { - "version": "7.0.5", + "node_modules/@storybook/components": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.10.tgz", + "integrity": "sha512-jdGiVP+a3XqoGpKkDFGt4g2cgb23aLfMS/RhnuhT7FK6hGh7WFfuuqx4QqQHx4VZCdXIWVIzszaCdGCs7AsW2w==", "dev": true, - "license": "MIT", "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", + "@storybook/client-logger": "7.0.10", + "@storybook/csf": "^0.1.0", "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/theming": "7.0.10", + "@storybook/types": "7.0.10", + "memoizerific": "^1.11.3", + "use-resize-observer": "^9.1.0", + "util-deprecate": "^1.0.2" }, "funding": { "type": "opencollective", @@ -5027,352 +5894,368 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/types": { - "version": "7.0.5", + "node_modules/@storybook/core-client": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.0.10.tgz", + "integrity": "sha512-sN/TKB7QHWP6josdjyNtoqDXihROPtgvzo5+akfW6+S7hhfsQ4BJd09nkBqEX9E7z81blmFFDUOU3a8bQbPdKQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "@storybook/client-logger": "7.0.10", + "@storybook/preview-api": "7.0.10" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials": { - "version": "7.0.5", + "node_modules/@storybook/core-common": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.0.10.tgz", + "integrity": "sha512-AAYXixukGlpMy8XoSM8cTfcyQ6ijBq5q50xNTj/ssTbGnGSk6POgtoJZf6g8XtS0OxsFXBSxuBuMBBBbKtoztw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/addon-actions": "7.0.5", - "@storybook/addon-backgrounds": "7.0.5", - "@storybook/addon-controls": "7.0.5", - "@storybook/addon-docs": "7.0.5", - "@storybook/addon-highlight": "7.0.5", - "@storybook/addon-measure": "7.0.5", - "@storybook/addon-outline": "7.0.5", - "@storybook/addon-toolbars": "7.0.5", - "@storybook/addon-viewport": "7.0.5", - "@storybook/core-common": "7.0.5", - "@storybook/manager-api": "7.0.5", - "@storybook/node-logger": "7.0.5", - "@storybook/preview-api": "7.0.5", + "@storybook/node-logger": "7.0.10", + "@storybook/types": "7.0.10", + "@types/node": "^16.0.0", + "@types/pretty-hrtime": "^1.0.0", + "chalk": "^4.1.0", + "esbuild": "^0.17.0", + "esbuild-register": "^3.4.0", + "file-system-cache": "^2.0.0", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "glob": "^8.1.0", + "glob-promise": "^6.0.2", + "handlebars": "^4.7.7", + "lazy-universal-dotenv": "^4.0.0", + "picomatch": "^2.3.0", + "pkg-dir": "^5.0.0", + "pretty-hrtime": "^1.0.3", + "resolve-from": "^5.0.0", "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-highlight": { - "version": "7.0.5", + "node_modules/@storybook/core-common/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.5" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", + "node_modules/@storybook/core-common/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/channels": { - "version": "7.0.5", + "node_modules/@storybook/core-common/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/client-logger": { - "version": "7.0.5", + "node_modules/@storybook/core-common/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "has-flag": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/core-events": { - "version": "7.0.5", + "node_modules/@storybook/core-events": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.10.tgz", + "integrity": "sha512-OyBqhxVQOdI78Vgv6nKwXOdIVNChyfktpdxQZP1rz9MpO6MrqMaGAUL7k8xQMQAVx0VY+dAMYZB3bnyN2IC8FA==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/manager-api": { - "version": "7.0.5", + "node_modules/@storybook/core-server": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-7.0.10.tgz", + "integrity": "sha512-KFCc3turPed8tiC5IUKTV7oObVmFckMP1XqO7zec2g2NlGQsN83DRso+BA1wpV/bb8AD1NJDU6LJnyN3KKdi1Q==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", + "@aw-web-design/x-default-browser": "1.4.88", + "@discoveryjs/json-ext": "^0.5.3", + "@storybook/builder-manager": "7.0.10", + "@storybook/core-common": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/csf": "^0.1.0", + "@storybook/csf-tools": "7.0.10", + "@storybook/docs-mdx": "^0.1.0", "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "@storybook/manager": "7.0.10", + "@storybook/node-logger": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/telemetry": "7.0.10", + "@storybook/types": "7.0.10", + "@types/detect-port": "^1.3.0", + "@types/node": "^16.0.0", + "@types/node-fetch": "^2.5.7", + "@types/pretty-hrtime": "^1.0.0", + "@types/semver": "^7.3.4", + "better-opn": "^2.1.1", + "boxen": "^5.1.2", + "chalk": "^4.1.0", + "cli-table3": "^0.6.1", + "compression": "^1.7.4", + "detect-port": "^1.3.0", + "express": "^4.17.3", + "fs-extra": "^11.1.0", + "globby": "^11.0.2", + "ip": "^2.0.0", + "lodash": "^4.17.21", + "node-fetch": "^2.6.7", + "open": "^8.4.0", + "pretty-hrtime": "^1.0.3", + "prompts": "^2.4.0", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "serve-favicon": "^2.5.0", + "telejson": "^7.0.3", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2", + "watchpack": "^2.2.0", + "ws": "^8.2.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/preview-api": { - "version": "7.0.5", + "node_modules/@storybook/core-server/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/router": { - "version": "7.0.5", + "node_modules/@storybook/core-server/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=10" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/theming": { - "version": "7.0.5", + "node_modules/@storybook/core-server/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/core-server/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "license": "MIT", "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "yallist": "^4.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/types": { - "version": "7.0.5", + "node_modules/@storybook/core-server/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "lru-cache": "^6.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/addon-highlight": { - "version": "7.0.2", + "node_modules/@storybook/core-server/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/core-events": "7.0.2", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.2" + "has-flag": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-interactions": { - "version": "7.0.5", + "node_modules/@storybook/core-server/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/csf": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.0.tgz", + "integrity": "sha512-uk+jMXCZ8t38jSTHk2o5btI+aV2Ksbvl6DoOv3r6VaCM1KZqeuMwtwywIQdflkA8/6q/dKT8z8L+g8hC4GC3VQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/core-common": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "@storybook/instrumenter": "7.0.5", - "@storybook/manager-api": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "jest-mock": "^27.0.6", - "polished": "^4.2.2", - "ts-dedent": "^2.2.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } + "type-fest": "^2.19.0" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", + "node_modules/@storybook/csf-plugin": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.0.10.tgz", + "integrity": "sha512-uUty5rLs6O32tJaXIne2/42UxFL3eaRCDgtAoAkGxbUPa/FLYpO0rYtqF2OG9MagwXU7+As5RlLkDLeYAvUzlQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "@storybook/csf-tools": "7.0.10", + "unplugin": "^0.10.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/channels": { - "version": "7.0.5", + "node_modules/@storybook/csf-tools": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.0.10.tgz", + "integrity": "sha512-sl/995jq03HD7/Q9cb54h0glgt7JLGTkfikSlB35NGMEkgEXEswDmpQHA/TbzUYylIxuAwTKghwMqL3IwSSHwA==", "dev": true, - "license": "MIT", + "dependencies": { + "@babel/generator": "~7.21.1", + "@babel/parser": "~7.21.2", + "@babel/traverse": "~7.21.2", + "@babel/types": "~7.21.2", + "@storybook/csf": "^0.1.0", + "@storybook/types": "7.0.10", + "fs-extra": "^11.1.0", + "recast": "^0.23.1", + "ts-dedent": "^2.0.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/client-logger": { - "version": "7.0.5", + "node_modules/@storybook/docs-mdx": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz", + "integrity": "sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==", + "dev": true + }, + "node_modules/@storybook/docs-tools": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.0.10.tgz", + "integrity": "sha512-w3m7+LlQGI50i07XjiOzIfoap8rnmsrs8hXGUTodbs9vvLt8HBdUaapOGnYr/1BzA0YQJ7Nz2z1nTirQEphmsQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "@babel/core": "^7.12.10", + "@storybook/core-common": "7.0.10", + "@storybook/preview-api": "7.0.10", + "@storybook/types": "7.0.10", + "@types/doctrine": "^0.0.3", + "doctrine": "^3.0.0", + "lodash": "^4.17.21" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/components": { - "version": "7.0.5", + "node_modules/@storybook/global": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", + "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", + "dev": true + }, + "node_modules/@storybook/instrumenter": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-7.0.10.tgz", + "integrity": "sha512-Z+kIidnxaq3tneUnIKB2d0DCqb4lwUdOS/AC43LNvd9C6BWYgj89cIPdLDTNhOWa0ZiEju7wTS+K/3uMvcHZ4w==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/csf": "^0.1.0", + "@storybook/channels": "7.0.10", + "@storybook/client-logger": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "@storybook/preview-api": "7.0.10" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/core-events": { - "version": "7.0.5", + "node_modules/@storybook/manager": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-7.0.10.tgz", + "integrity": "sha512-cFMOOXmcRx1tN50TqC2huOsF91fAvNM82wTDnAbT2FtA+ZHFHNyE1PgWgiKDDepzOpKaG+FfT4bJcQAaAfYOBg==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/manager-api": { - "version": "7.0.5", + "node_modules/@storybook/manager-api": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.10.tgz", + "integrity": "sha512-Dik73GKUX9QCFOvukTXjZoZX0G6n/LrRMkwLggb28E9m8iFt2ivWvF9MVvyRoDffR9VP5t53+nV5fqxqpXWoQw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", + "@storybook/channels": "7.0.10", + "@storybook/client-logger": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/csf": "^0.1.0", "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", + "@storybook/router": "7.0.10", + "@storybook/theming": "7.0.10", + "@storybook/types": "7.0.10", "dequal": "^2.0.2", "lodash": "^4.17.21", "memoizerific": "^1.11.3", @@ -5390,237 +6273,190 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/preview-api": { - "version": "7.0.5", + "node_modules/@storybook/manager-api/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "yallist": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/router": { - "version": "7.0.5", + "node_modules/@storybook/manager-api/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" + "lru-cache": "^6.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "bin": { + "semver": "bin/semver.js" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/theming": { - "version": "7.0.5", + "node_modules/@storybook/manager-api/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/mdx2-csf": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz", + "integrity": "sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==", + "dev": true + }, + "node_modules/@storybook/node-logger": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.0.10.tgz", + "integrity": "sha512-btCCreucTApi7EP84jbfqlFQZDD4Kz9lFLftalZA7nskDZW6i8reNNykTU2Y22TQvlbpqs5kL1N1cEsbG3vepw==", "dev": true, - "license": "MIT", "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@types/npmlog": "^4.1.2", + "chalk": "^4.1.0", + "npmlog": "^5.0.1", + "pretty-hrtime": "^1.0.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/types": { - "version": "7.0.5", + "node_modules/@storybook/node-logger/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/addon-links": { - "version": "7.0.2", + "node_modules/@storybook/node-logger/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.2", - "@storybook/core-events": "7.0.2", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.2", - "@storybook/preview-api": "7.0.2", - "@storybook/router": "7.0.2", - "@storybook/types": "7.0.2", - "prop-types": "^15.7.2", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=10" }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/addon-measure": { - "version": "7.0.5", + "node_modules/@storybook/node-logger/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/types": "7.0.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", + "node_modules/@storybook/node-logger/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "has-flag": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/channels": { - "version": "7.0.5", + "node_modules/@storybook/postinstall": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.0.10.tgz", + "integrity": "sha512-SVPKGuuvfn1MceLWzYHGbpP77+waLKXglAH4Gkdoa2mKdk3XO45Zn8OhwwNzHuP698boMNaGaB/utBLBpkXMMg==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/client-logger": { - "version": "7.0.5", + "node_modules/@storybook/preview": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.0.10.tgz", + "integrity": "sha512-IQX8v7OpKeo2Oqeyxo6/uSRys+dJ7zms12jViJWGzx9fg6IchV/iNtf4TBrF3Z2JBNKovk03kICAMHTpZuz9Qg==", "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/components": { - "version": "7.0.5", + "node_modules/@storybook/preview-api": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.10.tgz", + "integrity": "sha512-URj2YJKbs8hc6JZQ3aA+MmjB4hTSzGZAVFVs3kLUEuaQPDbU1RT5GKxedwF5zlMnkZQPNoaUtopN3z7aF+SKFQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", + "@storybook/channel-postmessage": "7.0.10", + "@storybook/channels": "7.0.10", + "@storybook/client-logger": "7.0.10", + "@storybook/core-events": "7.0.10", "@storybook/csf": "^0.1.0", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", + "@storybook/types": "7.0.10", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/manager-api": { - "version": "7.0.5", + "node_modules/@storybook/react": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.0.10.tgz", + "integrity": "sha512-/DDUGFz0bk5c/HCfSr7fL74rQc+3s317TDDKY6ZrgUzdIkze4D/TlAbWV78XV/ceeFNi1fLAUzGjFzuDwmVkJw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", + "@storybook/client-logger": "7.0.10", + "@storybook/core-client": "7.0.10", + "@storybook/docs-tools": "7.0.10", "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "dequal": "^2.0.2", + "@storybook/preview-api": "7.0.10", + "@storybook/react-dom-shim": "7.0.10", + "@storybook/types": "7.0.10", + "@types/escodegen": "^0.0.6", + "@types/estree": "^0.0.51", + "@types/node": "^16.0.0", + "acorn": "^7.4.1", + "acorn-jsx": "^5.3.1", + "acorn-walk": "^7.2.0", + "escodegen": "^2.0.0", + "html-tags": "^3.1.0", "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "prop-types": "^15.7.2", + "react-element-to-jsx-string": "^15.0.0", + "ts-dedent": "^2.0.0", + "type-fest": "^2.19.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=16.0.0" }, "funding": { "type": "opencollective", @@ -5629,42 +6465,44 @@ "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/preview-api": { - "version": "7.0.5", + "node_modules/@storybook/react-dom-shim": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.0.10.tgz", + "integrity": "sha512-NLuE2Be/BGmXHufwLp1Gje+IsTb0HWvwzHlci2U430WgwGU8fsTPNgALMrwCpqN9o1KnrRGpysQEoyIYStQBdg==", "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/router": { - "version": "7.0.5", + "node_modules/@storybook/react-vite": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/react-vite/-/react-vite-7.0.10.tgz", + "integrity": "sha512-ZEwRpMEJAQtMruG/XGha52XHkb3extXudWT5SoXOcfiRy9eK7Y3oJwHR8KHNH3LE+LrRh7c+D53k7eMudRtsNA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" + "@joshwooding/vite-plugin-react-docgen-typescript": "0.2.1", + "@rollup/pluginutils": "^4.2.0", + "@storybook/builder-vite": "7.0.10", + "@storybook/react": "7.0.10", + "@vitejs/plugin-react": "^3.0.1", + "ast-types": "^0.14.2", + "magic-string": "^0.27.0", + "react-docgen": "6.0.0-alpha.3" + }, + "engines": { + "node": ">=16" }, "funding": { "type": "opencollective", @@ -5672,18 +6510,19 @@ }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", + "vite": "^3.0.0 || ^4.0.0" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/theming": { - "version": "7.0.5", + "node_modules/@storybook/router": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.0.10.tgz", + "integrity": "sha512-Vq3nuyrGsvbPYhsaVu0TwtzX8Yb5TZYg7v5gY/uk1brSIk7Mvw64E8WF4TKNhPcWnlxNrfP9S96IZgT9iuuCpw==", "dev": true, - "license": "MIT", "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/client-logger": "7.0.10", + "memoizerific": "^1.11.3", + "qs": "^6.10.0" }, "funding": { "type": "opencollective", @@ -5694,203 +6533,174 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/types": { - "version": "7.0.5", + "node_modules/@storybook/telemetry": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-7.0.10.tgz", + "integrity": "sha512-0xlMECcSU2UnmpDTxKE/+pKpcW88fhxEZxh54yoA6NPpq6SGUN1r5ybUMffJCZ0JgaQ8HOc3Vxd13T3VXAMLXA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "@storybook/client-logger": "7.0.10", + "@storybook/core-common": "7.0.10", + "chalk": "^4.1.0", + "detect-package-manager": "^2.0.1", + "fetch-retry": "^5.0.2", + "fs-extra": "^11.1.0", + "isomorphic-unfetch": "^3.1.0", + "nanoid": "^3.3.1", + "read-pkg-up": "^7.0.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-outline": { - "version": "7.0.5", + "node_modules/@storybook/telemetry/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/types": "7.0.5", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "color-convert": "^2.0.1" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=8" }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", + "node_modules/@storybook/telemetry/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/channels": { - "version": "7.0.5", + "node_modules/@storybook/telemetry/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/client-logger": { - "version": "7.0.5", + "node_modules/@storybook/telemetry/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "has-flag": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/components": { - "version": "7.0.5", + "node_modules/@storybook/test-runner": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@storybook/test-runner/-/test-runner-0.10.0.tgz", + "integrity": "sha512-37xgdNcba5tJgEZa//S4ooh52hKgXoKvNWC+CZJRksKFlFObzhlCstTo4q9SSkX6LNTXiEj174eZBBa/Yd28JQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", + "@babel/core": "^7.20.7", + "@babel/generator": "^7.20.7", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/preset-typescript": "^7.18.6", + "@babel/template": "^7.20.7", + "@babel/types": "^7.20.7", + "@storybook/core-common": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@storybook/csf-tools": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", + "@storybook/preview-api": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", + "can-bind-to-host": "^1.1.1", + "commander": "^9.0.0", + "expect-playwright": "^0.8.0", + "glob": "^8.1.0", + "jest": "^28.0.0", + "jest-circus": "^28.0.0", + "jest-environment-node": "^28.0.0", + "jest-junit": "^14.0.0", + "jest-playwright-preset": "^2.0.0", + "jest-runner": "^28.0.0", + "jest-serializer-html": "^7.1.0", + "jest-watch-typeahead": "^2.0.0", + "node-fetch": "^2", + "playwright": "^1.14.0", + "read-pkg-up": "^7.0.1", + "regenerator-runtime": "^0.13.9", + "semver": "^7.3.7", + "tempy": "^1.0.1", + "ts-dedent": "^2.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "bin": { + "test-storybook": "bin/test-storybook.js" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/manager-api": { - "version": "7.0.5", + "node_modules/@storybook/test-runner/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "yallist": "^4.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/preview-api": { - "version": "7.0.5", + "node_modules/@storybook/test-runner/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "lru-cache": "^6.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/router": { - "version": "7.0.5", + "node_modules/@storybook/test-runner/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/testing-library": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@storybook/testing-library/-/testing-library-0.1.0.tgz", + "integrity": "sha512-g947f4LJZw3IluBhysMKLJXByAFiSxnGuooENqU+ZPt/GTrz1I9GDBlhmoTJahuFkVbwHvziAl/8riY2Re921g==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@storybook/client-logger": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", + "@storybook/instrumenter": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", + "@testing-library/dom": "^8.3.0", + "@testing-library/user-event": "^13.2.1", + "ts-dedent": "^2.2.0" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/theming": { - "version": "7.0.5", + "node_modules/@storybook/theming": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.10.tgz", + "integrity": "sha512-kKxIMElOUAyIAJOlhU6NS6/F6KpZLWvfGnUYC5V4f5Rsu+lKnbWI/TJ1rCIooz2wZBQ6dv+fjA3sOh5K+LRh2w==", "dev": true, - "license": "MIT", "dependencies": { "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", + "@storybook/client-logger": "7.0.10", "@storybook/global": "^5.0.0", "memoizerific": "^1.11.3" }, @@ -5903,12 +6713,13 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/types": { - "version": "7.0.5", + "node_modules/@storybook/types": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.10.tgz", + "integrity": "sha512-mFktvN8PjjDFJSjck4spikmjtr0AwfOhcEtIf4UCmUD5JHgGppkQmvO6483nGcprSFcWOvD2uYGs8Wp32wG/MQ==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.5", + "@storybook/channels": "7.0.10", "@types/babel__core": "^7.0.0", "@types/express": "^4.7.0", "file-system-cache": "^2.0.0" @@ -5918,2671 +6729,101 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-toolbars": { - "version": "7.0.5", + "node_modules/@swc/helpers": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz", + "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@testing-library/cypress": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@testing-library/cypress/-/cypress-9.0.0.tgz", + "integrity": "sha512-c1XiCGeHGGTWn0LAU12sFUfoX3qfId5gcSE2yHode+vsyHDWraxDPALjVnHd4/Fa3j4KBcc5k++Ccy6A9qnkMA==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/manager-api": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/theming": "7.0.5" + "@babel/runtime": "^7.14.6", + "@testing-library/dom": "^8.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=12", + "npm": ">=6" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } + "cypress": "^12.0.0" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", - "dev": true, - "license": "MIT", + "node_modules/@testing-library/dom": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", + "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "^5.0.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.4.4", + "pretty-format": "^27.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=12" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", + "node_modules/@testing-library/dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "@storybook/global": "^5.0.0" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/components": { - "version": "7.0.5", - "dev": true, - "license": "MIT", + "node_modules/@testing-library/dom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=10" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "node_modules/@testing-library/dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/manager-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", + "node_modules/@testing-library/dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "has-flag": "^4.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/preview-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/router": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/theming": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-viewport": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/theming": "7.0.5", - "memoizerific": "^1.11.3", - "prop-types": "^15.7.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } - } - }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/components": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/manager-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/preview-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/router": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/theming": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/docs-tools": "7.0.5", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "@types/lodash": "^4.14.167", - "color-convert": "^2.0.1", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "markdown-to-jsx": "^7.1.8", - "memoizerific": "^1.11.3", - "polished": "^4.2.2", - "react-colorful": "^5.1.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/components": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/manager-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.5", - "@storybook/theming": "7.0.5", - "@storybook/types": "7.0.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/preview-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/router": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/theming": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.5", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@storybook/blocks/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@storybook/builder-manager": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@fal-works/esbuild-plugin-global-externals": "^2.1.2", - "@storybook/core-common": "7.0.5", - "@storybook/manager": "7.0.5", - "@storybook/node-logger": "7.0.5", - "@types/ejs": "^3.1.1", - "@types/find-cache-dir": "^3.2.1", - "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", - "browser-assert": "^1.2.1", - "ejs": "^3.1.8", - "esbuild": "^0.17.0", - "esbuild-plugin-alias": "^0.2.1", - "express": "^4.17.3", - "find-cache-dir": "^3.0.0", - "fs-extra": "^11.1.0", - "process": "^0.11.10", - "util": "^0.12.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/builder-manager/node_modules/find-cache-dir": { - "version": "3.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" - } - }, - "node_modules/@storybook/builder-manager/node_modules/find-up": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/builder-manager/node_modules/locate-path": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/builder-manager/node_modules/p-limit": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/builder-manager/node_modules/p-locate": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/builder-manager/node_modules/pkg-dir": { - "version": "4.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/builder-vite": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channel-websocket": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-common": "7.0.5", - "@storybook/csf-plugin": "7.0.5", - "@storybook/mdx2-csf": "^1.0.0", - "@storybook/node-logger": "7.0.5", - "@storybook/preview": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/types": "7.0.5", - "browser-assert": "^1.2.1", - "es-module-lexer": "^0.9.3", - "express": "^4.17.3", - "fs-extra": "^11.1.0", - "glob": "^8.1.0", - "glob-promise": "^6.0.2", - "magic-string": "^0.27.0", - "remark-external-links": "^8.0.0", - "remark-slug": "^6.0.0", - "rollup": "^2.25.0 || ^3.3.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "@preact/preset-vite": "*", - "typescript": ">= 4.3.x", - "vite": "^3.0.0 || ^4.0.0", - "vite-plugin-glimmerx": "*" - }, - "peerDependenciesMeta": { - "@preact/preset-vite": { - "optional": true - }, - "typescript": { - "optional": true - }, - "vite-plugin-glimmerx": { - "optional": true - } - } - }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/preview-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/channel-postmessage": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.2", - "@storybook/client-logger": "7.0.2", - "@storybook/core-events": "7.0.2", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/channel-websocket": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/global": "^5.0.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/channel-websocket/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/channel-websocket/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/channels": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/cli": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.20.2", - "@babel/preset-env": "^7.20.2", - "@ndelangen/get-tarball": "^3.0.7", - "@storybook/codemod": "7.0.5", - "@storybook/core-common": "7.0.5", - "@storybook/core-server": "7.0.5", - "@storybook/csf-tools": "7.0.5", - "@storybook/node-logger": "7.0.5", - "@storybook/telemetry": "7.0.5", - "@storybook/types": "7.0.5", - "@types/semver": "^7.3.4", - "boxen": "^5.1.2", - "chalk": "^4.1.0", - "commander": "^6.2.1", - "cross-spawn": "^7.0.3", - "detect-indent": "^6.1.0", - "envinfo": "^7.7.3", - "execa": "^5.0.0", - "express": "^4.17.3", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "get-npm-tarball-url": "^2.0.3", - "get-port": "^5.1.1", - "giget": "^1.0.0", - "globby": "^11.0.2", - "jscodeshift": "^0.14.0", - "leven": "^3.1.0", - "prettier": "^2.8.0", - "prompts": "^2.4.0", - "puppeteer-core": "^2.1.1", - "read-pkg-up": "^7.0.1", - "semver": "^7.3.7", - "shelljs": "^0.8.5", - "simple-update-notifier": "^1.0.0", - "strip-json-comments": "^3.0.1", - "tempy": "^1.0.1", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "bin": { - "getstorybook": "bin/index.js", - "sb": "bin/index.js" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/cli/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/cli/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/cli/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@storybook/cli/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@storybook/cli/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@storybook/cli/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@storybook/cli/node_modules/commander": { - "version": "6.2.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/@storybook/cli/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/cli/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/client-logger": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/codemod": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "~7.21.0", - "@babel/preset-env": "~7.21.0", - "@babel/types": "~7.21.2", - "@storybook/csf": "^0.1.0", - "@storybook/csf-tools": "7.0.5", - "@storybook/node-logger": "7.0.5", - "@storybook/types": "7.0.5", - "cross-spawn": "^7.0.3", - "globby": "^11.0.2", - "jscodeshift": "^0.14.0", - "lodash": "^4.17.21", - "prettier": "^2.8.0", - "recast": "^0.23.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/codemod/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/codemod/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/components": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.2", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.2", - "@storybook/types": "7.0.2", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/core-client": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/preview-api": "7.0.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-client/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-client/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-client/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-client/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-client/node_modules/@storybook/preview-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-client/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-common": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/node-logger": "7.0.5", - "@storybook/types": "7.0.5", - "@types/node": "^16.0.0", - "@types/pretty-hrtime": "^1.0.0", - "chalk": "^4.1.0", - "esbuild": "^0.17.0", - "esbuild-register": "^3.4.0", - "file-system-cache": "^2.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^8.1.0", - "glob-promise": "^6.0.2", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-common/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-common/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-common/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@storybook/core-common/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@storybook/core-common/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@storybook/core-common/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@storybook/core-common/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/core-common/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/core-events": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-server": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@aw-web-design/x-default-browser": "1.4.88", - "@discoveryjs/json-ext": "^0.5.3", - "@storybook/builder-manager": "7.0.5", - "@storybook/core-common": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/csf-tools": "7.0.5", - "@storybook/docs-mdx": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/manager": "7.0.5", - "@storybook/node-logger": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/telemetry": "7.0.5", - "@storybook/types": "7.0.5", - "@types/detect-port": "^1.3.0", - "@types/node": "^16.0.0", - "@types/node-fetch": "^2.5.7", - "@types/pretty-hrtime": "^1.0.0", - "@types/semver": "^7.3.4", - "better-opn": "^2.1.1", - "boxen": "^5.1.2", - "chalk": "^4.1.0", - "cli-table3": "^0.6.1", - "compression": "^1.7.4", - "detect-port": "^1.3.0", - "express": "^4.17.3", - "fs-extra": "^11.1.0", - "globby": "^11.0.2", - "ip": "^2.0.0", - "lodash": "^4.17.21", - "node-fetch": "^2.6.7", - "open": "^8.4.0", - "pretty-hrtime": "^1.0.3", - "prompts": "^2.4.0", - "read-pkg-up": "^7.0.1", - "semver": "^7.3.7", - "serve-favicon": "^2.5.0", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2", - "watchpack": "^2.2.0", - "ws": "^8.2.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-server/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-server/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-server/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-server/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-server/node_modules/@storybook/preview-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-server/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-server/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@storybook/core-server/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@storybook/core-server/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@storybook/core-server/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@storybook/core-server/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/core-server/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/core-server/node_modules/watchpack": { - "version": "2.4.0", - "dev": true, - "license": "MIT", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/@storybook/csf": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^2.19.0" - } - }, - "node_modules/@storybook/csf-plugin": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/csf-tools": "7.0.5", - "unplugin": "^0.10.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/csf-tools": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/generator": "~7.21.1", - "@babel/parser": "~7.21.2", - "@babel/traverse": "~7.21.2", - "@babel/types": "~7.21.2", - "@storybook/csf": "^0.1.0", - "@storybook/types": "7.0.5", - "fs-extra": "^11.1.0", - "recast": "^0.23.1", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/csf-tools/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/csf-tools/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/docs-mdx": { - "version": "0.1.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@storybook/docs-tools": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.12.10", - "@storybook/core-common": "7.0.5", - "@storybook/preview-api": "7.0.5", - "@storybook/types": "7.0.5", - "@types/doctrine": "^0.0.3", - "doctrine": "^3.0.0", - "lodash": "^4.17.21" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/preview-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/global": { - "version": "5.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@storybook/instrumenter": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/instrumenter/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/instrumenter/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/instrumenter/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/instrumenter/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/instrumenter/node_modules/@storybook/preview-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/instrumenter/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/manager": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/manager-api": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.2", - "@storybook/client-logger": "7.0.2", - "@storybook/core-events": "7.0.2", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.2", - "@storybook/theming": "7.0.2", - "@storybook/types": "7.0.2", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/mdx2-csf": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@storybook/node-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/npmlog": "^4.1.2", - "chalk": "^4.1.0", - "npmlog": "^5.0.1", - "pretty-hrtime": "^1.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/node-logger/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@storybook/node-logger/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@storybook/node-logger/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@storybook/node-logger/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@storybook/node-logger/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/node-logger/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/postinstall": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/preview": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/preview-api": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.2", - "@storybook/channels": "7.0.2", - "@storybook/client-logger": "7.0.2", - "@storybook/core-events": "7.0.2", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.2", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/core-client": "7.0.5", - "@storybook/docs-tools": "7.0.5", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.5", - "@storybook/react-dom-shim": "7.0.5", - "@storybook/types": "7.0.5", - "@types/escodegen": "^0.0.6", - "@types/estree": "^0.0.51", - "@types/node": "^16.0.0", - "acorn": "^7.4.1", - "acorn-jsx": "^5.3.1", - "acorn-walk": "^7.2.0", - "escodegen": "^2.0.0", - "html-tags": "^3.1.0", - "lodash": "^4.17.21", - "prop-types": "^15.7.2", - "react-element-to-jsx-string": "^15.0.0", - "ts-dedent": "^2.0.0", - "type-fest": "^2.19.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@storybook/react-dom-shim": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/react-vite": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@joshwooding/vite-plugin-react-docgen-typescript": "0.2.1", - "@rollup/pluginutils": "^4.2.0", - "@storybook/builder-vite": "7.0.5", - "@storybook/react": "7.0.5", - "@vitejs/plugin-react": "^3.0.1", - "ast-types": "^0.14.2", - "magic-string": "^0.27.0", - "react-docgen": "6.0.0-alpha.3" - }, - "engines": { - "node": ">=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", - "vite": "^3.0.0 || ^4.0.0" - } - }, - "node_modules/@storybook/react-vite/node_modules/@joshwooding/vite-plugin-react-docgen-typescript": { - "version": "0.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "glob": "^7.2.0", - "glob-promise": "^4.2.0", - "magic-string": "^0.27.0", - "react-docgen-typescript": "^2.2.2" - }, - "peerDependencies": { - "typescript": ">= 4.3.x", - "vite": "^3.0.0 || ^4.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@storybook/react-vite/node_modules/@types/glob": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "node_modules/@storybook/react-vite/node_modules/ast-types": { - "version": "0.14.2", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@storybook/react-vite/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@storybook/react-vite/node_modules/glob": { - "version": "7.2.3", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@storybook/react-vite/node_modules/glob-promise": { - "version": "4.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/glob": "^7.1.3" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "individual", - "url": "https://github.com/sponsors/ahmadnassri" - }, - "peerDependencies": { - "glob": "^7.1.6" - } - }, - "node_modules/@storybook/react-vite/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/channel-postmessage": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/channels": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/core-events": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/preview-api": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channel-postmessage": "7.0.5", - "@storybook/channels": "7.0.5", - "@storybook/client-logger": "7.0.5", - "@storybook/core-events": "7.0.5", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.5", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/types": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.5", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/acorn": { - "version": "7.4.1", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/@storybook/router": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.2", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/telemetry": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "7.0.5", - "@storybook/core-common": "7.0.5", - "chalk": "^4.1.0", - "detect-package-manager": "^2.0.1", - "fetch-retry": "^5.0.2", - "fs-extra": "^11.1.0", - "isomorphic-unfetch": "^3.1.0", - "nanoid": "^3.3.1", - "read-pkg-up": "^7.0.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/telemetry/node_modules/@storybook/client-logger": { - "version": "7.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/telemetry/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@storybook/telemetry/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@storybook/telemetry/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@storybook/telemetry/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@storybook/telemetry/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/telemetry/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/test-runner": { - "version": "0.10.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.20.7", - "@babel/generator": "^7.20.7", - "@babel/preset-env": "^7.20.2", - "@babel/preset-react": "^7.18.6", - "@babel/preset-typescript": "^7.18.6", - "@babel/template": "^7.20.7", - "@babel/types": "^7.20.7", - "@storybook/core-common": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", - "@storybook/csf": "^0.1.0", - "@storybook/csf-tools": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", - "@storybook/preview-api": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", - "can-bind-to-host": "^1.1.1", - "commander": "^9.0.0", - "expect-playwright": "^0.8.0", - "glob": "^8.1.0", - "jest": "^28.0.0", - "jest-circus": "^28.0.0", - "jest-environment-node": "^28.0.0", - "jest-junit": "^14.0.0", - "jest-playwright-preset": "^2.0.0", - "jest-runner": "^28.0.0", - "jest-serializer-html": "^7.1.0", - "jest-watch-typeahead": "^2.0.0", - "node-fetch": "^2", - "playwright": "^1.14.0", - "read-pkg-up": "^7.0.1", - "regenerator-runtime": "^0.13.9", - "semver": "^7.3.7", - "tempy": "^1.0.1", - "ts-dedent": "^2.0.0" - }, - "bin": { - "test-storybook": "bin/test-storybook.js" - } - }, - "node_modules/@storybook/test-runner/node_modules/commander": { - "version": "9.5.0", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || >=14" - } - }, - "node_modules/@storybook/testing-library": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/client-logger": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", - "@storybook/instrumenter": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", - "@testing-library/dom": "^8.3.0", - "@testing-library/user-event": "^13.2.1", - "ts-dedent": "^2.2.0" - } - }, - "node_modules/@storybook/theming": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.2", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/types": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/channels": "7.0.2", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@swc/helpers": { - "version": "0.4.14", - "license": "MIT", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@testing-library/cypress": { - "version": "9.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.14.6", - "@testing-library/dom": "^8.1.0" - }, - "engines": { - "node": ">=12", - "npm": ">=6" - }, - "peerDependencies": { - "cypress": "^12.0.0" - } - }, - "node_modules/@testing-library/dom": { - "version": "8.20.0", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "^5.0.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.4.4", - "pretty-format": "^27.0.2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@testing-library/dom/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@testing-library/dom/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@testing-library/dom/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@testing-library/dom/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/@testing-library/dom/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/dom/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom": { - "version": "5.16.5", - "license": "MIT", + "node_modules/@testing-library/jest-dom": { + "version": "5.16.5", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz", + "integrity": "sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==", "dependencies": { "@adobe/css-tools": "^4.0.1", "@babel/runtime": "^7.9.2", @@ -8602,7 +6843,8 @@ }, "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": { "version": "4.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { "color-convert": "^2.0.1" }, @@ -8615,7 +6857,8 @@ }, "node_modules/@testing-library/jest-dom/node_modules/chalk": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -8624,30 +6867,18 @@ "node": ">=8" } }, - "node_modules/@testing-library/jest-dom/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, "node_modules/@testing-library/jest-dom/node_modules/has-flag": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, "node_modules/@testing-library/jest-dom/node_modules/supports-color": { "version": "7.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { "has-flag": "^4.0.0" }, @@ -8657,7 +6888,8 @@ }, "node_modules/@testing-library/react": { "version": "13.4.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz", + "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==", "dependencies": { "@babel/runtime": "^7.12.5", "@testing-library/dom": "^8.5.0", @@ -8673,7 +6905,8 @@ }, "node_modules/@testing-library/user-event": { "version": "13.5.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", + "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", "dependencies": { "@babel/runtime": "^7.12.5" }, @@ -8687,20 +6920,23 @@ }, "node_modules/@tootallnate/once": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/@types/aria-query": { "version": "5.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", + "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==" }, "node_modules/@types/babel__core": { "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", + "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", @@ -8711,42 +6947,47 @@ }, "node_modules/@types/babel__generator": { "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, - "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__traverse": { - "version": "7.18.3", + "version": "7.18.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.5.tgz", + "integrity": "sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.3.0" } }, "node_modules/@types/body-parser": { "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, - "license": "MIT", "dependencies": { "@types/connect": "*", "@types/node": "*" } }, "node_modules/@types/chai": { - "version": "4.3.4", - "dev": true, - "license": "MIT" + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.5.tgz", + "integrity": "sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==", + "dev": true }, "node_modules/@types/chai-as-promised": { "version": "7.1.5", @@ -8759,16 +7000,18 @@ }, "node_modules/@types/chai-subset": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@types/chai-subset/-/chai-subset-1.3.3.tgz", + "integrity": "sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==", "dev": true, - "license": "MIT", "dependencies": { "@types/chai": "*" } }, "node_modules/@types/connect": { "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } @@ -8790,33 +7033,39 @@ }, "node_modules/@types/detect-port": { "version": "1.3.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.2.tgz", + "integrity": "sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==", + "dev": true }, "node_modules/@types/doctrine": { "version": "0.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz", + "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==", + "dev": true }, "node_modules/@types/ejs": { "version": "3.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.2.tgz", + "integrity": "sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==", + "dev": true }, "node_modules/@types/escodegen": { "version": "0.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz", + "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==", + "dev": true }, "node_modules/@types/estree": { "version": "0.0.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true }, "node_modules/@types/express": { "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", "dev": true, - "license": "MIT", "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.33", @@ -8825,24 +7074,28 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.33", + "version": "4.17.34", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz", + "integrity": "sha512-fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*", "@types/qs": "*", - "@types/range-parser": "*" + "@types/range-parser": "*", + "@types/send": "*" } }, "node_modules/@types/find-cache-dir": { "version": "3.2.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz", + "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==", + "dev": true }, "node_modules/@types/glob": { "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==", "dev": true, - "license": "MIT", "dependencies": { "@types/minimatch": "^5.1.2", "@types/node": "*" @@ -8850,161 +7103,58 @@ }, "node_modules/@types/graceful-fs": { "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.4", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { "version": "3.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dependencies": { "@types/istanbul-lib-report": "*" } }, "node_modules/@types/jest": { - "version": "29.5.0", - "license": "MIT", + "version": "29.5.1", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.1.tgz", + "integrity": "sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ==", "dependencies": { "expect": "^29.0.0", "pretty-format": "^29.0.0" } }, "node_modules/@types/jest/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@types/jest/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/diff-sequences": { - "version": "29.4.3", - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/expect": { - "version": "29.5.0", - "license": "MIT", - "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@types/jest/node_modules/jest-diff": { - "version": "29.5.0", - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-get-type": { - "version": "29.4.3", - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-matcher-utils": { - "version": "29.5.0", - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-message-util": { - "version": "29.5.0", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/@types/jest/node_modules/pretty-format": { "version": "29.5.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", "dependencies": { "@jest/schemas": "^29.4.3", "ansi-styles": "^5.0.0", @@ -9014,29 +7164,10 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@types/jest/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/@types/jest/node_modules/react-is": { "version": "18.2.0", - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" }, "node_modules/@types/js-levenshtein": { "version": "1.1.1", @@ -9046,43 +7177,51 @@ }, "node_modules/@types/json-schema": { "version": "7.0.11", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true }, "node_modules/@types/json5": { "version": "0.0.29", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true }, "node_modules/@types/lodash": { "version": "4.14.194", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz", + "integrity": "sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g==", + "dev": true }, "node_modules/@types/mdx": { - "version": "2.0.4", - "dev": true, - "license": "MIT" + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.5.tgz", + "integrity": "sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==", + "dev": true }, "node_modules/@types/mime": { - "version": "3.0.1", - "dev": true, - "license": "MIT" + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true }, "node_modules/@types/mime-types": { "version": "2.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz", + "integrity": "sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==", + "dev": true }, "node_modules/@types/minimatch": { "version": "5.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true }, "node_modules/@types/minimist": { "version": "1.2.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true }, "node_modules/@types/ms": { "version": "0.7.31", @@ -9091,13 +7230,15 @@ "dev": true }, "node_modules/@types/node": { - "version": "16.18.12", - "license": "MIT" + "version": "16.18.28", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.28.tgz", + "integrity": "sha512-SNMfiPqsiPoYfmyi+2qnDO4nZyMIOCab/CW+Slcml0lhIzkOizYzWtt/A7tgB3TSitd+YJKi8fSC2Cpm/VCp7A==" }, "node_modules/@types/node-fetch": { "version": "2.6.3", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", + "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*", "form-data": "^3.0.0" @@ -9105,8 +7246,9 @@ }, "node_modules/@types/node-fetch/node_modules/form-data": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, - "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -9118,49 +7260,58 @@ }, "node_modules/@types/node-sass": { "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@types/node-sass/-/node-sass-4.11.3.tgz", + "integrity": "sha512-wXPCn3t9uu5rR4zXNSLasZHQMuRzUKBsdi4MsgT8uq4Lp1gQQo+T2G23tGj4SSgDHeNBle6vGseZtM2XV/X9bw==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/normalize-package-data": { "version": "2.4.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true }, "node_modules/@types/npmlog": { "version": "4.1.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.4.tgz", + "integrity": "sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==", + "dev": true }, "node_modules/@types/prettier": { "version": "2.7.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", + "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", + "dev": true }, "node_modules/@types/pretty-hrtime": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz", + "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==", + "dev": true }, "node_modules/@types/prop-types": { "version": "15.7.5", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" }, "node_modules/@types/qs": { "version": "6.9.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true }, "node_modules/@types/range-parser": { "version": "1.2.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true }, "node_modules/@types/react": { - "version": "18.0.27", - "license": "MIT", + "version": "18.2.6", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.6.tgz", + "integrity": "sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA==", "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -9168,32 +7319,47 @@ } }, "node_modules/@types/react-dom": { - "version": "18.0.10", - "license": "MIT", + "version": "18.2.4", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.4.tgz", + "integrity": "sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==", "dependencies": { "@types/react": "*" } }, "node_modules/@types/react-transition-group": { - "version": "4.4.5", - "license": "MIT", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", + "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", "dependencies": { "@types/react": "*" } }, "node_modules/@types/scheduler": { "version": "0.16.3", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" }, "node_modules/@types/semver": { - "version": "7.3.13", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==", + "dev": true + }, + "node_modules/@types/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", + "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", "dev": true, - "license": "MIT" + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } }, "node_modules/@types/serve-static": { "version": "1.15.1", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", + "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/mime": "*", "@types/node": "*" @@ -9210,42 +7376,49 @@ }, "node_modules/@types/sinon": { "version": "10.0.14", + "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.14.tgz", + "integrity": "sha512-mn72up6cjaMyMuaPaa/AwKf6WtsSRysQC7wxFkCm1XcOKXPM1z+5Y4H5wjIVBz4gdAkjvZxVVfjA6ba1nHr5WQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/sinonjs__fake-timers": "*" } }, "node_modules/@types/sinonjs__fake-timers": { - "version": "8.1.1", - "dev": true, - "license": "MIT" + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.2.tgz", + "integrity": "sha512-9GcLXF0/v3t80caGs5p2rRfkB+a8VBGLJZVih6CNFkx8IZ994wiKKLSRs9nuFwk1HevWs/1mnUmkApGrSGsShA==", + "dev": true }, "node_modules/@types/sizzle": { "version": "2.3.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", + "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "dev": true }, "node_modules/@types/stack-utils": { "version": "2.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" }, "node_modules/@types/testing-library__jest-dom": { "version": "5.14.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz", + "integrity": "sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==", "dependencies": { "@types/jest": "*" } }, "node_modules/@types/unist": { "version": "2.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", + "dev": true }, "node_modules/@types/vfile": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/vfile/-/vfile-3.0.2.tgz", + "integrity": "sha512-b3nLFGaGkJ9rzOcuXRfHkZMdjsawuDD0ENL9fzTophtBg8FJHSGbH7daXkEpcwy3v7Xol3pAvsmlYyFhR4pqJw==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*", "@types/unist": "*", @@ -9254,57 +7427,65 @@ }, "node_modules/@types/vfile-message": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/vfile-message/-/vfile-message-2.0.0.tgz", + "integrity": "sha512-GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw==", + "deprecated": "This is a stub types definition. vfile-message provides its own type definitions, so you do not need this installed.", "dev": true, - "license": "MIT", "dependencies": { "vfile-message": "*" } }, "node_modules/@types/wait-on": { "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@types/wait-on/-/wait-on-5.3.1.tgz", + "integrity": "sha512-2FFOKCF/YydrMUaqg+fkk49qf0e5rDgwt6aQsMzFQzbS419h2gNOXyiwp/o2yYy27bi/C1z+HgfncryjGzlvgQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/warning": { "version": "3.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" }, "node_modules/@types/yargs": { - "version": "17.0.22", - "license": "MIT", + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { "version": "21.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" }, "node_modules/@types/yauzl": { "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", "dev": true, - "license": "MIT", "optional": true, "dependencies": { "@types/node": "*" } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.51.0", + "version": "5.59.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", + "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", "dev": true, - "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "5.51.0", - "@typescript-eslint/type-utils": "5.51.0", - "@typescript-eslint/utils": "5.51.0", + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.59.5", + "@typescript-eslint/type-utils": "5.59.5", + "@typescript-eslint/utils": "5.59.5", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", "natural-compare-lite": "^1.4.0", - "regexpp": "^3.2.0", "semver": "^7.3.7", "tsutils": "^3.21.0" }, @@ -9325,14 +7506,48 @@ } } }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/@typescript-eslint/parser": { - "version": "5.51.0", + "version": "5.59.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", + "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/scope-manager": "5.51.0", - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/typescript-estree": "5.51.0", + "@typescript-eslint/scope-manager": "5.59.5", + "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.5", "debug": "^4.3.4" }, "engines": { @@ -9352,12 +7567,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "5.51.0", + "version": "5.59.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", + "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", "dev": true, - "license": "MIT", "dependencies": { - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/visitor-keys": "5.51.0" + "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/visitor-keys": "5.59.5" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -9368,12 +7584,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.51.0", + "version": "5.59.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", + "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", "dev": true, - "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "5.51.0", - "@typescript-eslint/utils": "5.51.0", + "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/utils": "5.59.5", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -9394,9 +7611,10 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "5.51.0", + "version": "5.59.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", + "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==", "dev": true, - "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -9406,12 +7624,13 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.51.0", + "version": "5.59.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", + "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/visitor-keys": "5.51.0", + "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/visitor-keys": "5.59.5", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -9431,18 +7650,52 @@ } } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/@typescript-eslint/utils": { - "version": "5.51.0", + "version": "5.59.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", + "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", "dev": true, - "license": "MIT", "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.51.0", - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/typescript-estree": "5.51.0", + "@typescript-eslint/scope-manager": "5.59.5", + "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.5", "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0", "semver": "^7.3.7" }, "engines": { @@ -9456,32 +7709,46 @@ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { - "version": "5.1.1", + "node_modules/@typescript-eslint/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "yallist": "^4.0.0" }, "engines": { - "node": ">=8.0.0" + "node": ">=10" } }, - "node_modules/@typescript-eslint/utils/node_modules/estraverse": { - "version": "4.3.0", + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, - "license": "BSD-2-Clause", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=4.0" + "node": ">=10" } }, + "node_modules/@typescript-eslint/utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.51.0", + "version": "5.59.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", + "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", "dev": true, - "license": "MIT", "dependencies": { - "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/types": "5.59.5", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -9494,8 +7761,9 @@ }, "node_modules/@vitejs/plugin-react": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-3.1.0.tgz", + "integrity": "sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.20.12", "@babel/plugin-transform-react-jsx-self": "^7.18.6", @@ -9511,9 +7779,10 @@ } }, "node_modules/@vitest/coverage-c8": { - "version": "0.29.2", + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/coverage-c8/-/coverage-c8-0.29.8.tgz", + "integrity": "sha512-y+sEMQMctWokjnSqm3FCQEYFkjLrYaznsxEZHxcx8z2aftpYg3A5tvI1S5himfdEFo7o+OeHzh40bPSWZHW4oQ==", "dev": true, - "license": "MIT", "dependencies": { "c8": "^7.13.0", "picocolors": "^1.0.0", @@ -9527,29 +7796,32 @@ } }, "node_modules/@vitest/expect": { - "version": "0.29.2", + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-0.29.8.tgz", + "integrity": "sha512-xlcVXn5I5oTq6NiZSY3ykyWixBxr5mG8HYtjvpgg6KaqHm0mvhX18xuwl5YGxIRNt/A5jidd7CWcNHrSvgaQqQ==", "dev": true, - "license": "MIT", "dependencies": { - "@vitest/spy": "0.29.2", - "@vitest/utils": "0.29.2", + "@vitest/spy": "0.29.8", + "@vitest/utils": "0.29.8", "chai": "^4.3.7" } }, "node_modules/@vitest/runner": { - "version": "0.29.2", + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-0.29.8.tgz", + "integrity": "sha512-FzdhnRDwEr/A3Oo1jtIk/B952BBvP32n1ObMEb23oEJNO+qO5cBet6M2XWIDQmA7BDKGKvmhUf2naXyp/2JEwQ==", "dev": true, - "license": "MIT", "dependencies": { - "@vitest/utils": "0.29.2", + "@vitest/utils": "0.29.8", "p-limit": "^4.0.0", "pathe": "^1.1.0" } }, "node_modules/@vitest/runner/node_modules/p-limit": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dev": true, - "license": "MIT", "dependencies": { "yocto-queue": "^1.0.0" }, @@ -9562,8 +7834,9 @@ }, "node_modules/@vitest/runner/node_modules/yocto-queue": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", "dev": true, - "license": "MIT", "engines": { "node": ">=12.20" }, @@ -9572,29 +7845,31 @@ } }, "node_modules/@vitest/spy": { - "version": "0.29.2", + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-0.29.8.tgz", + "integrity": "sha512-VdjBe9w34vOMl5I5mYEzNX8inTxrZ+tYUVk9jxaZJmHFwmDFC/GV3KBFTA/JKswr3XHvZL+FE/yq5EVhb6pSAw==", "dev": true, - "license": "MIT", "dependencies": { "tinyspy": "^1.0.2" } }, "node_modules/@vitest/utils": { - "version": "0.29.2", + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.29.8.tgz", + "integrity": "sha512-qGzuf3vrTbnoY+RjjVVIBYfuWMjn3UMUqyQtdGNZ6ZIIyte7B37exj6LaVkrZiUTvzSadVvO/tJm8AEgbGCBPg==", "dev": true, - "license": "MIT", "dependencies": { "cli-truncate": "^3.1.0", "diff": "^5.1.0", "loupe": "^2.3.6", - "picocolors": "^1.0.0", "pretty-format": "^27.5.1" } }, "node_modules/@vitest/utils/node_modules/ansi-regex": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, - "license": "MIT", "engines": { "node": ">=12" }, @@ -9604,8 +7879,9 @@ }, "node_modules/@vitest/utils/node_modules/ansi-styles": { "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, - "license": "MIT", "engines": { "node": ">=12" }, @@ -9615,8 +7891,9 @@ }, "node_modules/@vitest/utils/node_modules/cli-truncate": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", "dev": true, - "license": "MIT", "dependencies": { "slice-ansi": "^5.0.0", "string-width": "^5.0.0" @@ -9630,13 +7907,15 @@ }, "node_modules/@vitest/utils/node_modules/emoji-regex": { "version": "9.2.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true }, "node_modules/@vitest/utils/node_modules/is-fullwidth-code-point": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=12" }, @@ -9646,8 +7925,9 @@ }, "node_modules/@vitest/utils/node_modules/slice-ansi": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^6.0.0", "is-fullwidth-code-point": "^4.0.0" @@ -9661,8 +7941,9 @@ }, "node_modules/@vitest/utils/node_modules/string-width": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, - "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", @@ -9677,8 +7958,9 @@ }, "node_modules/@vitest/utils/node_modules/strip-ansi": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -9700,8 +7982,9 @@ }, "node_modules/@yarnpkg/esbuild-plugin-pnp": { "version": "3.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz", + "integrity": "sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "tslib": "^2.4.0" }, @@ -9721,13 +8004,15 @@ }, "node_modules/abab": { "version": "2.0.6", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true }, "node_modules/accepts": { "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, - "license": "MIT", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" @@ -9737,9 +8022,10 @@ } }, "node_modules/acorn": { - "version": "8.8.2", + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true, - "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -9749,49 +8035,67 @@ }, "node_modules/acorn-globals": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", "dev": true, - "license": "MIT", "dependencies": { "acorn": "^8.1.0", "acorn-walk": "^8.0.2" } }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/acorn-globals/node_modules/acorn-walk": { "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/acorn-jsx": { "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, - "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/address": { "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10.0.0" } }, "node_modules/agent-base": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, - "license": "MIT", "dependencies": { "debug": "4" }, @@ -9801,8 +8105,9 @@ }, "node_modules/aggregate-error": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, - "license": "MIT", "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" @@ -9813,8 +8118,9 @@ }, "node_modules/ajv": { "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, - "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -9828,24 +8134,27 @@ }, "node_modules/ansi-align": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", "dev": true, - "license": "ISC", "dependencies": { "string-width": "^4.1.0" } }, "node_modules/ansi-colors": { "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/ansi-escapes": { "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, - "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, @@ -9858,8 +8167,9 @@ }, "node_modules/ansi-escapes/node_modules/type-fest": { "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -9869,14 +8179,16 @@ }, "node_modules/ansi-regex": { "version": "5.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { "version": "3.2.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dependencies": { "color-convert": "^1.9.0" }, @@ -9884,9 +8196,23 @@ "node": ">=4" } }, + "node_modules/ansi-styles/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/ansi-styles/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, "node_modules/anymatch": { "version": "3.1.3", - "license": "ISC", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -9897,13 +8223,15 @@ }, "node_modules/app-root-dir": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", + "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==", + "dev": true }, "node_modules/append-transform": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz", + "integrity": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==", "dev": true, - "license": "MIT", "dependencies": { "default-require-extensions": "^3.0.0" }, @@ -9913,11 +8241,14 @@ }, "node_modules/aproba": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true }, "node_modules/arch": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", "dev": true, "funding": [ { @@ -9932,18 +8263,19 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/archy": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "dev": true }, "node_modules/are-we-there-yet": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", "dev": true, - "license": "ISC", "dependencies": { "delegates": "^1.0.0", "readable-stream": "^3.6.0" @@ -9954,47 +8286,52 @@ }, "node_modules/argparse": { "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, - "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/aria-query": { "version": "5.1.3", - "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", "dependencies": { "deep-equal": "^2.0.5" } }, "node_modules/arr-diff": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/arr-flatten": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/arr-union": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array-buffer-byte-length": { "version": "1.0.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", "dependencies": { "call-bind": "^1.0.2", "is-array-buffer": "^3.0.1" @@ -10005,21 +8342,24 @@ }, "node_modules/array-find-index": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array-flatten": { "version": "1.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true }, "node_modules/array-includes": { "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -10036,32 +8376,36 @@ }, "node_modules/array-union": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/array-uniq": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array-unique": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array.prototype.flat": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -10077,8 +8421,9 @@ }, "node_modules/array.prototype.flatmap": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -10094,8 +8439,9 @@ }, "node_modules/array.prototype.tosorted": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -10106,24 +8452,27 @@ }, "node_modules/arrify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/asn1": { "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "dev": true, - "license": "MIT", "dependencies": { "safer-buffer": "~2.1.0" } }, "node_modules/assert": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz", + "integrity": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==", "dev": true, - "license": "MIT", "dependencies": { "es6-object-assign": "^1.1.0", "is-nan": "^1.2.1", @@ -10133,32 +8482,36 @@ }, "node_modules/assert-plus": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/assertion-error": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", "dev": true, - "license": "MIT", "engines": { "node": "*" } }, "node_modules/assign-symbols": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/ast-types": { - "version": "0.16.1", + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", + "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.1" }, @@ -10168,39 +8521,45 @@ }, "node_modules/astral-regex": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/async": { "version": "3.2.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true }, "node_modules/async-limiter": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true }, "node_modules/asynckit": { "version": "0.4.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true }, "node_modules/at-least-node": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true, - "license": "ISC", "engines": { "node": ">= 4.0.0" } }, "node_modules/atob": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "dev": true, - "license": "(MIT OR Apache-2.0)", "bin": { "atob": "bin/atob.js" }, @@ -10210,8 +8569,9 @@ }, "node_modules/autoprefixer": { "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", "dev": true, - "license": "MIT", "dependencies": { "browserslist": "^4.12.0", "caniuse-lite": "^1.0.30001109", @@ -10231,13 +8591,15 @@ }, "node_modules/autoprefixer/node_modules/picocolors": { "version": "0.2.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true }, "node_modules/autoprefixer/node_modules/postcss": { "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dev": true, - "license": "MIT", "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" @@ -10252,7 +8614,8 @@ }, "node_modules/available-typed-arrays": { "version": "1.0.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", "engines": { "node": ">= 0.4" }, @@ -10262,29 +8625,33 @@ }, "node_modules/aws-sign2": { "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", "dev": true, - "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/aws4": { "version": "1.12.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", + "dev": true }, "node_modules/axe-core": { "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", "dev": true, - "license": "MPL-2.0", "engines": { "node": ">=4" } }, "node_modules/axe-html-reporter": { "version": "2.2.3", + "resolved": "https://registry.npmjs.org/axe-html-reporter/-/axe-html-reporter-2.2.3.tgz", + "integrity": "sha512-io8aCEt4fJvv43W+33n3zEa8rdplH5Ti2v5fOnth3GBKLhLHarNs7jj46xGfpnGnpaNrz23/tXPHC3HbwTzwwA==", "dev": true, - "license": "MIT", "dependencies": { "mustache": "^4.0.1", "rimraf": "^3.0.2" @@ -10298,8 +8665,9 @@ }, "node_modules/axe-playwright": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/axe-playwright/-/axe-playwright-1.2.3.tgz", + "integrity": "sha512-bTxCTNp3kx6sQRMjmuLv8pG3+v+kOCvFXATim1+XUXzW6ykulbbuJdQfgB+vQPNAF9uvYbW2qrv9pg81ZSFV/A==", "dev": true, - "license": "MIT", "dependencies": { "axe-core": "^4.5.1", "axe-html-reporter": "2.2.3", @@ -10310,25 +8678,50 @@ } }, "node_modules/axios": { - "version": "0.21.4", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", + "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", "dev": true, - "license": "MIT", "dependencies": { - "follow-redirects": "^1.14.0" + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/axios/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" } }, + "node_modules/axios/node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, "node_modules/babel-core": { "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", "dev": true, - "license": "MIT", "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/babel-jest": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-28.1.3.tgz", + "integrity": "sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==", "dev": true, - "license": "MIT", "dependencies": { "@jest/transform": "^28.1.3", "@types/babel__core": "^7.1.14", @@ -10347,8 +8740,9 @@ }, "node_modules/babel-jest/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -10358,8 +8752,9 @@ }, "node_modules/babel-jest/node_modules/@jest/transform": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz", + "integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^28.1.3", @@ -10383,8 +8778,9 @@ }, "node_modules/babel-jest/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -10399,13 +8795,15 @@ }, "node_modules/babel-jest/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/babel-jest/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -10418,8 +8816,9 @@ }, "node_modules/babel-jest/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -10431,34 +8830,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/babel-jest/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/babel-jest/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/babel-jest/node_modules/jest-haste-map": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", + "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/graceful-fs": "^4.1.3", @@ -10481,16 +8866,18 @@ }, "node_modules/babel-jest/node_modules/jest-regex-util": { "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "dev": true, - "license": "MIT", "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/babel-jest/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -10503,37 +8890,11 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/babel-jest/node_modules/jest-worker": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/babel-jest/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, "node_modules/babel-jest/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -10543,8 +8904,9 @@ }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", @@ -10558,8 +8920,9 @@ }, "node_modules/babel-plugin-jest-hoist": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.3.tgz", + "integrity": "sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", @@ -10572,34 +8935,29 @@ }, "node_modules/babel-plugin-named-exports-order": { "version": "0.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/babel-plugin-named-exports-order/-/babel-plugin-named-exports-order-0.0.2.tgz", + "integrity": "sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==", + "dev": true }, "node_modules/babel-plugin-polyfill-corejs2": { "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/babel-plugin-polyfill-corejs3": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.3", "core-js-compat": "^3.25.1" @@ -10610,8 +8968,9 @@ }, "node_modules/babel-plugin-polyfill-regenerator": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.3" }, @@ -10621,8 +8980,9 @@ }, "node_modules/babel-preset-current-node-syntax": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", @@ -10643,8 +9003,9 @@ }, "node_modules/babel-preset-jest": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz", + "integrity": "sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==", "dev": true, - "license": "MIT", "dependencies": { "babel-plugin-jest-hoist": "^28.1.3", "babel-preset-current-node-syntax": "^1.0.0" @@ -10658,8 +9019,9 @@ }, "node_modules/bail": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -10667,13 +9029,15 @@ }, "node_modules/balanced-match": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "node_modules/base": { "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "dev": true, - "license": "MIT", "dependencies": { "cache-base": "^1.0.1", "class-utils": "^0.3.5", @@ -10689,8 +9053,9 @@ }, "node_modules/base/node_modules/define-property": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^1.0.0" }, @@ -10698,43 +9063,10 @@ "node": ">=0.10.0" } }, - "node_modules/base/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/is-data-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/is-descriptor": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/base64-js": { "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, "funding": [ { @@ -10749,21 +9081,22 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "tweetnacl": "^0.14.3" } }, "node_modules/better-opn": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz", + "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==", "dev": true, - "license": "MIT", "dependencies": { "open": "^7.0.3" }, @@ -10771,21 +9104,11 @@ "node": ">8.0.0" } }, - "node_modules/better-opn/node_modules/is-wsl": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/better-opn/node_modules/open": { "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "dev": true, - "license": "MIT", "dependencies": { "is-docker": "^2.0.0", "is-wsl": "^2.1.1" @@ -10799,66 +9122,49 @@ }, "node_modules/big-integer": { "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", "dev": true, - "license": "Unlicense", "engines": { "node": ">=0.6" } }, "node_modules/binary-extensions": { "version": "2.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "engines": { "node": ">=8" } }, "node_modules/bl": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, - "license": "MIT", "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" } }, - "node_modules/bl/node_modules/buffer": { - "version": "5.7.1", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, "node_modules/blob-util": { "version": "2.0.2", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", + "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", + "dev": true }, "node_modules/bluebird": { "version": "3.7.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true }, "node_modules/body-parser": { "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "dev": true, - "license": "MIT", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", @@ -10880,21 +9186,24 @@ }, "node_modules/body-parser/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/body-parser/node_modules/qs": { "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.4" }, @@ -10907,6 +9216,8 @@ }, "node_modules/bootstrap": { "version": "5.2.3", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.3.tgz", + "integrity": "sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ==", "funding": [ { "type": "github", @@ -10917,15 +9228,15 @@ "url": "https://opencollective.com/bootstrap" } ], - "license": "MIT", "peerDependencies": { "@popperjs/core": "^2.11.6" } }, "node_modules/boxen": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-align": "^3.0.0", "camelcase": "^6.2.0", @@ -10945,8 +9256,9 @@ }, "node_modules/boxen/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -10959,8 +9271,9 @@ }, "node_modules/boxen/node_modules/camelcase": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -10970,8 +9283,9 @@ }, "node_modules/boxen/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -10983,34 +9297,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/boxen/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/boxen/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/boxen/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/boxen/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -11020,8 +9320,9 @@ }, "node_modules/boxen/node_modules/type-fest": { "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -11031,8 +9332,9 @@ }, "node_modules/bplist-parser": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", "dev": true, - "license": "MIT", "dependencies": { "big-integer": "^1.6.44" }, @@ -11041,16 +9343,19 @@ } }, "node_modules/brace-expansion": { - "version": "2.0.1", + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, "node_modules/braces": { "version": "3.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dependencies": { "fill-range": "^7.0.1" }, @@ -11060,10 +9365,23 @@ }, "node_modules/browser-assert": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz", + "integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==", "dev": true }, + "node_modules/browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", + "dev": true, + "dependencies": { + "pako": "~0.2.0" + } + }, "node_modules/browserslist": { "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "dev": true, "funding": [ { @@ -11075,7 +9393,6 @@ "url": "https://tidelift.com/funding/github/npm/browserslist" } ], - "license": "MIT", "dependencies": { "caniuse-lite": "^1.0.30001449", "electron-to-chromium": "^1.4.284", @@ -11091,37 +9408,66 @@ }, "node_modules/bser": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "node-int64": "^0.4.0" } }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, "node_modules/buffer-crc32": { "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "dev": true, - "license": "MIT", "engines": { "node": "*" } }, "node_modules/buffer-from": { "version": "1.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true }, "node_modules/bytes": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/c8": { "version": "7.13.0", + "resolved": "https://registry.npmjs.org/c8/-/c8-7.13.0.tgz", + "integrity": "sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==", "dev": true, - "license": "ISC", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@istanbuljs/schema": "^0.1.3", @@ -11145,16 +9491,18 @@ }, "node_modules/cac": { "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/cache-base": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "dev": true, - "license": "MIT", "dependencies": { "collection-visit": "^1.0.0", "component-emitter": "^1.2.1", @@ -11172,16 +9520,18 @@ }, "node_modules/cachedir": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", + "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/caching-transform": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz", + "integrity": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==", "dev": true, - "license": "MIT", "dependencies": { "hasha": "^5.0.0", "make-dir": "^3.0.0", @@ -11194,8 +9544,9 @@ }, "node_modules/caching-transform/node_modules/write-file-atomic": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, - "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", @@ -11205,7 +9556,8 @@ }, "node_modules/call-bind": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" @@ -11216,13 +9568,15 @@ }, "node_modules/call-me-maybe": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", + "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", + "dev": true }, "node_modules/caller-callsite": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", "dev": true, - "license": "MIT", "dependencies": { "callsites": "^2.0.0" }, @@ -11232,16 +9586,18 @@ }, "node_modules/caller-callsite/node_modules/callsites": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/caller-path": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", "dev": true, - "license": "MIT", "dependencies": { "caller-callsite": "^2.0.0" }, @@ -11251,24 +9607,27 @@ }, "node_modules/callsites": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/camelcase": { "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/camelcase-keys": { "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, - "license": "MIT", "dependencies": { "camelcase": "^5.3.1", "map-obj": "^4.0.0", @@ -11283,14 +9642,17 @@ }, "node_modules/can-bind-to-host": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/can-bind-to-host/-/can-bind-to-host-1.1.2.tgz", + "integrity": "sha512-CqsgmaqiyFRNtP17Ihqa/uHbZxRirntNVNl/kJz31DLKuNRfzvzionkLoUSkElQ6Cz+cpXKA3mhHq4tjbieujA==", "dev": true, - "license": "MIT", "bin": { "can-bind-to-host": "dist/bin/can-bind-to-host.js" } }, "node_modules/caniuse-lite": { - "version": "1.0.30001480", + "version": "1.0.30001486", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001486.tgz", + "integrity": "sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg==", "dev": true, "funding": [ { @@ -11305,18 +9667,19 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ], - "license": "CC-BY-4.0" + ] }, "node_modules/caseless": { "version": "0.12.0", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true }, "node_modules/ccount": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz", + "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -11324,8 +9687,9 @@ }, "node_modules/chai": { "version": "4.3.7", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz", + "integrity": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==", "dev": true, - "license": "MIT", "dependencies": { "assertion-error": "^1.1.0", "check-error": "^1.0.2", @@ -11353,7 +9717,8 @@ }, "node_modules/chalk": { "version": "2.4.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -11365,16 +9730,18 @@ }, "node_modules/char-regex": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/character-entities": { "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -11382,8 +9749,9 @@ }, "node_modules/character-entities-html4": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.4.tgz", + "integrity": "sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -11391,8 +9759,9 @@ }, "node_modules/character-entities-legacy": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -11400,8 +9769,9 @@ }, "node_modules/character-reference-invalid": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -11415,29 +9785,32 @@ }, "node_modules/check-error": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", + "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==", "dev": true, - "license": "MIT", "engines": { "node": "*" } }, "node_modules/check-more-types": { "version": "2.24.0", + "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8.0" } }, "node_modules/chokidar": { "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "funding": [ { "type": "individual", "url": "https://paulmillr.com/funding/" } ], - "license": "MIT", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -11454,80 +9827,158 @@ "fsevents": "~2.3.2" } }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "license": "ISC", + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "dev": true + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, "dependencies": { - "is-glob": "^4.0.1" + "kind-of": "^3.0.2" }, "engines": { - "node": ">= 6" + "node": ">=0.10.0" } }, - "node_modules/chownr": { - "version": "1.1.4", + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "license": "ISC" - }, - "node_modules/ci-info": { - "version": "3.7.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/cjs-module-lexer": { - "version": "1.2.2", - "dev": true, - "license": "MIT" - }, - "node_modules/class-utils": { - "version": "0.3.6", + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, - "license": "MIT", "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", + "node_modules/class-utils/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, "engines": { "node": ">=0.10.0" } }, "node_modules/classnames": { "version": "2.3.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" }, "node_modules/clean-stack": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/cli-boxes": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" }, @@ -11537,8 +9988,9 @@ }, "node_modules/cli-cursor": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, - "license": "MIT", "dependencies": { "restore-cursor": "^3.1.0" }, @@ -11560,8 +10012,9 @@ }, "node_modules/cli-table3": { "version": "0.6.3", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", + "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", "dev": true, - "license": "MIT", "dependencies": { "string-width": "^4.2.0" }, @@ -11574,8 +10027,9 @@ }, "node_modules/cli-truncate": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, - "license": "MIT", "dependencies": { "slice-ansi": "^3.0.0", "string-width": "^4.2.0" @@ -11598,8 +10052,9 @@ }, "node_modules/cliui": { "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, - "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", @@ -11617,8 +10072,9 @@ }, "node_modules/clone-deep": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, - "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4", "kind-of": "^6.0.2", @@ -11630,8 +10086,9 @@ }, "node_modules/clone-deep/node_modules/is-plain-object": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, - "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -11641,8 +10098,9 @@ }, "node_modules/clone-regexp": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.1.tgz", + "integrity": "sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw==", "dev": true, - "license": "MIT", "dependencies": { "is-regexp": "^1.0.0", "is-supported-regexp-flag": "^1.0.0" @@ -11653,8 +10111,9 @@ }, "node_modules/co": { "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, - "license": "MIT", "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" @@ -11662,8 +10121,9 @@ }, "node_modules/collapse-white-space": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz", + "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -11671,13 +10131,15 @@ }, "node_modules/collect-v8-coverage": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true }, "node_modules/collection-visit": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", "dev": true, - "license": "MIT", "dependencies": { "map-visit": "^1.0.0", "object-visit": "^1.0.0" @@ -11687,38 +10149,47 @@ } }, "node_modules/color-convert": { - "version": "1.9.3", - "license": "MIT", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": { - "color-name": "1.1.3" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/color-name": { - "version": "1.1.3", - "license": "MIT" + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/color-support": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true, - "license": "ISC", "bin": { "color-support": "bin.js" } }, "node_modules/colord": { "version": "2.9.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true }, "node_modules/colorette": { "version": "2.0.20", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true }, "node_modules/combined-stream": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, - "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" }, @@ -11727,32 +10198,40 @@ } }, "node_modules/commander": { - "version": "2.20.3", + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", "dev": true, - "license": "MIT" + "engines": { + "node": "^12.20.0 || >=14" + } }, "node_modules/common-tags": { "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4.0.0" } }, "node_modules/commondir": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true }, "node_modules/component-emitter": { "version": "1.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true }, "node_modules/compressible": { "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, - "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" }, @@ -11762,8 +10241,9 @@ }, "node_modules/compression": { "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", "dev": true, - "license": "MIT", "dependencies": { "accepts": "~1.3.5", "bytes": "3.0.0", @@ -11779,42 +10259,48 @@ }, "node_modules/compression/node_modules/bytes": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/compression/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/compression/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/compression/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, "node_modules/concat-map": { "version": "0.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true }, "node_modules/concat-stream": { "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, "engines": [ "node >= 0.8" ], - "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -11824,13 +10310,15 @@ }, "node_modules/concat-stream/node_modules/isarray": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true }, "node_modules/concat-stream/node_modules/readable-stream": { "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, - "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -11843,26 +10331,30 @@ }, "node_modules/concat-stream/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, "node_modules/concat-stream/node_modules/string_decoder": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/console-control-strings": { "version": "1.1.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true }, "node_modules/content-disposition": { "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "5.2.1" }, @@ -11872,42 +10364,48 @@ }, "node_modules/content-type": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/convert-source-map": { "version": "1.9.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true }, "node_modules/cookie": { "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { "version": "1.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true }, "node_modules/copy-descriptor": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/core-js-compat": { - "version": "3.30.1", + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.2.tgz", + "integrity": "sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA==", "dev": true, - "license": "MIT", "dependencies": { "browserslist": "^4.21.5" }, @@ -11917,21 +10415,98 @@ } }, "node_modules/core-util-is": { - "version": "1.0.3", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.1.3.tgz", + "integrity": "sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==", + "dev": true, + "dependencies": { + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + } + }, + "node_modules/cosmiconfig/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/cosmiconfig/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "license": "MIT" + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } }, "node_modules/cross-fetch": { "version": "3.1.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", + "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", "dependencies": { "node-fetch": "2.6.7" } }, + "node_modules/cross-fetch/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/cross-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/cross-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/cross-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/cross-spawn": { "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -11943,24 +10518,27 @@ }, "node_modules/crypto-random-string": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/css-functions-list": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.1.0.tgz", + "integrity": "sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==", "dev": true, - "license": "MIT", "engines": { "node": ">=12.22" } }, "node_modules/css-tree": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "dev": true, - "license": "MIT", "dependencies": { "mdn-data": "2.0.30", "source-map-js": "^1.0.1" @@ -11971,12 +10549,14 @@ }, "node_modules/css.escape": { "version": "1.5.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" }, "node_modules/cssesc": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, - "license": "MIT", "bin": { "cssesc": "bin/cssesc" }, @@ -11984,35 +10564,28 @@ "node": ">=4" } }, - "node_modules/cssom": { - "version": "0.5.0", - "dev": true, - "license": "MIT" - }, "node_modules/cssstyle": { - "version": "2.3.0", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-3.0.0.tgz", + "integrity": "sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==", "dev": true, - "license": "MIT", "dependencies": { - "cssom": "~0.3.6" + "rrweb-cssom": "^0.6.0" }, "engines": { - "node": ">=8" + "node": ">=14" } }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "dev": true, - "license": "MIT" - }, "node_modules/csstype": { "version": "3.1.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" }, "node_modules/currently-unhandled": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", "dev": true, - "license": "MIT", "dependencies": { "array-find-index": "^1.0.1" }, @@ -12022,8 +10595,9 @@ }, "node_modules/cwd": { "version": "0.10.0", + "resolved": "https://registry.npmjs.org/cwd/-/cwd-0.10.0.tgz", + "integrity": "sha512-YGZxdTTL9lmLkCUTpg4j0zQ7IhRB5ZmqNBbGCl3Tg6MP/d5/6sY7L5mmTjzbc6JKgVZYiqTQTNhPFsbXNGlRaA==", "dev": true, - "license": "MIT", "dependencies": { "find-pkg": "^0.1.2", "fs-exists-sync": "^0.1.0" @@ -12033,10 +10607,11 @@ } }, "node_modules/cypress": { - "version": "12.5.1", + "version": "12.12.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.12.0.tgz", + "integrity": "sha512-UU5wFQ7SMVCR/hyKok/KmzG6fpZgBHHfrXcHzDmPHWrT+UUetxFzQgt7cxCszlwfozckzwkd22dxMwl/vNkWRw==", "dev": true, "hasInstallScript": true, - "license": "MIT", "dependencies": { "@cypress/request": "^2.88.10", "@cypress/xvfb": "^1.2.4", @@ -12052,10 +10627,10 @@ "check-more-types": "^2.24.0", "cli-cursor": "^3.1.0", "cli-table3": "~0.6.1", - "commander": "^5.1.0", + "commander": "^6.2.1", "common-tags": "^1.8.0", "dayjs": "^1.10.4", - "debug": "^4.3.2", + "debug": "^4.3.4", "enquirer": "^2.3.6", "eventemitter2": "6.4.7", "execa": "4.1.0", @@ -12070,7 +10645,7 @@ "listr2": "^3.8.3", "lodash": "^4.17.21", "log-symbols": "^4.0.0", - "minimist": "^1.2.6", + "minimist": "^1.2.8", "ospath": "^1.2.2", "pretty-bytes": "^5.6.0", "proxy-from-env": "1.0.0", @@ -12089,10 +10664,12 @@ } }, "node_modules/cypress-vite": { - "version": "1.3.0", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cypress-vite/-/cypress-vite-1.4.0.tgz", + "integrity": "sha512-BHmOku8q6nRtDGPiBcE7zcAZs56/OsiX5SFoldHEMSQ+I6nnPUU2tcrRNeRsCArONQAvwTu2Da7R/rFGA/DSEg==", "dev": true, - "license": "MIT", "dependencies": { + "chokidar": "^3.5.3", "debug": "^4.3.4" }, "peerDependencies": { @@ -12100,14 +10677,22 @@ } }, "node_modules/cypress/node_modules/@types/node": { - "version": "14.18.42", - "dev": true, - "license": "MIT" + "version": "14.18.46", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.46.tgz", + "integrity": "sha512-n4yVT5FuY5NCcGHCosQSGvvCT74HhowymPN2OEcsHPw6U1NuxV9dvxWbrM2dnBukWjdMYzig1WfIkWdTTQJqng==", + "dev": true + }, + "node_modules/cypress/node_modules/@types/sinonjs__fake-timers": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", + "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", + "dev": true }, "node_modules/cypress/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -12118,33 +10703,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/cypress/node_modules/buffer": { - "version": "5.7.1", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, "node_modules/cypress/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -12158,65 +10721,30 @@ }, "node_modules/cypress/node_modules/chalk/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cypress/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/cypress/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/cypress/node_modules/commander": { - "version": "5.1.0", - "dev": true, - "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">= 6" + "node": ">=8" } }, - "node_modules/cypress/node_modules/execa": { - "version": "4.1.0", + "node_modules/cypress/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">= 6" } }, "node_modules/cypress/node_modules/fs-extra": { "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, - "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", @@ -12227,40 +10755,47 @@ "node": ">=10" } }, - "node_modules/cypress/node_modules/get-stream": { - "version": "5.2.0", + "node_modules/cypress/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", - "dependencies": { - "pump": "^3.0.0" - }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cypress/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/cypress/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "license": "MIT", + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/cypress/node_modules/human-signals": { - "version": "1.1.1", + "node_modules/cypress/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, - "license": "Apache-2.0", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=8.12.0" + "node": ">=10" } }, "node_modules/cypress/node_modules/supports-color": { "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -12271,10 +10806,17 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/cypress/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/dashdash": { "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "dev": true, - "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" }, @@ -12283,27 +10825,30 @@ } }, "node_modules/data-urls": { - "version": "3.0.2", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-4.0.0.tgz", + "integrity": "sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==", "dev": true, - "license": "MIT", "dependencies": { "abab": "^2.0.6", "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0" + "whatwg-url": "^12.0.0" }, "engines": { - "node": ">=12" + "node": ">=14" } }, "node_modules/dayjs": { "version": "1.11.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", + "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", + "dev": true }, "node_modules/debug": { "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -12318,16 +10863,18 @@ }, "node_modules/decamelize": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decamelize-keys": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", "dev": true, - "license": "MIT", "dependencies": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" @@ -12341,34 +10888,39 @@ }, "node_modules/decamelize-keys/node_modules/map-obj": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decimal.js": { "version": "10.4.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true }, "node_modules/decode-uri-component": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/dedent": { "version": "0.7.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true }, "node_modules/deep-eql": { "version": "4.1.3", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", + "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", "dev": true, - "license": "MIT", "dependencies": { "type-detect": "^4.0.0" }, @@ -12377,14 +10929,16 @@ } }, "node_modules/deep-equal": { - "version": "2.2.0", - "license": "MIT", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", + "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", "dependencies": { + "array-buffer-byte-length": "^1.0.0", "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.2", - "get-intrinsic": "^1.1.3", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.0", "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.1", + "is-array-buffer": "^3.0.2", "is-date-object": "^1.0.5", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", @@ -12392,7 +10946,7 @@ "object-is": "^1.1.5", "object-keys": "^1.1.1", "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", + "regexp.prototype.flags": "^1.5.0", "side-channel": "^1.0.4", "which-boxed-primitive": "^1.0.2", "which-collection": "^1.0.1", @@ -12404,21 +10958,24 @@ }, "node_modules/deep-is": { "version": "0.1.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true }, "node_modules/deepmerge": { "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/default-browser-id": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", "dev": true, - "license": "MIT", "dependencies": { "bplist-parser": "^0.2.0", "untildify": "^4.0.0" @@ -12432,8 +10989,9 @@ }, "node_modules/default-require-extensions": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz", + "integrity": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==", "dev": true, - "license": "MIT", "dependencies": { "strip-bom": "^4.0.0" }, @@ -12458,15 +11016,17 @@ }, "node_modules/define-lazy-prop": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/define-properties": { - "version": "1.1.4", - "license": "MIT", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", "dependencies": { "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" @@ -12480,8 +11040,9 @@ }, "node_modules/define-property": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^1.0.2", "isobject": "^3.0.1" @@ -12490,50 +11051,17 @@ "node": ">=0.10.0" } }, - "node_modules/define-property/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-property/node_modules/is-data-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-property/node_modules/is-descriptor": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/defu": { "version": "6.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.2.tgz", + "integrity": "sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==", + "dev": true }, "node_modules/del": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", "dev": true, - "license": "MIT", "dependencies": { "globby": "^11.0.1", "graceful-fs": "^4.2.4", @@ -12551,52 +11079,43 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/del/node_modules/p-map": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/delayed-stream": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/delegates": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true }, "node_modules/depd": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/dequal": { "version": "2.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "engines": { "node": ">=6" } }, "node_modules/destroy": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" @@ -12604,24 +11123,27 @@ }, "node_modules/detect-indent": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/detect-newline": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/detect-package-manager": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz", + "integrity": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==", "dev": true, - "license": "MIT", "dependencies": { "execa": "^5.1.1" }, @@ -12629,10 +11151,55 @@ "node": ">=12" } }, + "node_modules/detect-package-manager/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/detect-package-manager/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/detect-package-manager/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, "node_modules/detect-port": { "version": "1.5.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", + "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", "dev": true, - "license": "MIT", "dependencies": { "address": "^1.0.1", "debug": "4" @@ -12644,32 +11211,35 @@ }, "node_modules/diff": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", + "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } }, "node_modules/diff-sequences": { - "version": "28.1.1", - "dev": true, - "license": "MIT", + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/diffable-html": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/diffable-html/-/diffable-html-4.1.0.tgz", + "integrity": "sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g==", "dev": true, - "license": "MIT", "dependencies": { "htmlparser2": "^3.9.2" } }, "node_modules/dir-glob": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, - "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, @@ -12677,15 +11247,11 @@ "node": ">=8" } }, - "node_modules/dlv": { - "version": "1.1.3", - "dev": true, - "license": "MIT" - }, "node_modules/doctrine": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, - "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -12695,11 +11261,13 @@ }, "node_modules/dom-accessibility-api": { "version": "0.5.16", - "license": "MIT" + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==" }, "node_modules/dom-helpers": { "version": "5.2.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", "dependencies": { "@babel/runtime": "^7.8.7", "csstype": "^3.0.2" @@ -12707,8 +11275,9 @@ }, "node_modules/dom-serializer": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", "dev": true, - "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "entities": "^2.0.0" @@ -12716,32 +11285,36 @@ }, "node_modules/dom-serializer/node_modules/domelementtype": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } - ], - "license": "BSD-2-Clause" + ] }, "node_modules/dom-serializer/node_modules/entities": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true, - "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/domelementtype": { "version": "1.3.1", - "dev": true, - "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true }, "node_modules/domexception": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", "dev": true, - "license": "MIT", "dependencies": { "webidl-conversions": "^7.0.0" }, @@ -12751,16 +11324,18 @@ }, "node_modules/domhandler": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "domelementtype": "1" } }, "node_modules/domutils": { "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "0", "domelementtype": "1" @@ -12768,8 +11343,9 @@ }, "node_modules/dot-prop": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, - "license": "MIT", "dependencies": { "is-obj": "^2.0.0" }, @@ -12779,24 +11355,27 @@ }, "node_modules/dotenv": { "version": "16.0.3", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", + "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=12" } }, "node_modules/dotenv-expand": { "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", + "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=12" } }, "node_modules/duplexify": { "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", "dev": true, - "license": "MIT", "dependencies": { "end-of-stream": "^1.0.0", "inherits": "^2.0.1", @@ -12806,13 +11385,15 @@ }, "node_modules/duplexify/node_modules/isarray": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true }, "node_modules/duplexify/node_modules/readable-stream": { "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, - "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -12825,26 +11406,30 @@ }, "node_modules/duplexify/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, "node_modules/duplexify/node_modules/string_decoder": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/eastasianwidth": { "version": "0.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true }, "node_modules/ecc-jsbn": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "dev": true, - "license": "MIT", "dependencies": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" @@ -12852,13 +11437,15 @@ }, "node_modules/ee-first": { "version": "1.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true }, "node_modules/ejs": { "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "jake": "^10.8.5" }, @@ -12870,14 +11457,16 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.367", - "dev": true, - "license": "ISC" + "version": "1.4.388", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.388.tgz", + "integrity": "sha512-xZ0y4zjWZgp65okzwwt00f2rYibkFPHUv9qBz+Vzn8cB9UXIo9Zc6Dw81LJYhhNt0G/vR1OJEfStZ49NKl0YxQ==", + "dev": true }, "node_modules/emittery": { "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", "dev": true, - "license": "MIT", "engines": { "node": ">=12" }, @@ -12887,29 +11476,33 @@ }, "node_modules/emoji-regex": { "version": "8.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true }, "node_modules/encodeurl": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/end-of-stream": { "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, - "license": "MIT", "dependencies": { "once": "^1.4.0" } }, "node_modules/enquirer": { "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, - "license": "MIT", "dependencies": { "ansi-colors": "^4.1.1" }, @@ -12919,13 +11512,15 @@ }, "node_modules/entities": { "version": "1.1.2", - "dev": true, - "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true }, "node_modules/envinfo": { "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", "dev": true, - "license": "MIT", "bin": { "envinfo": "dist/cli.js" }, @@ -12935,16 +11530,18 @@ }, "node_modules/error-ex": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, - "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/es-abstract": { "version": "1.21.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", "dev": true, - "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.0", "available-typed-arrays": "^1.0.5", @@ -12973,42 +11570,16 @@ "object-keys": "^1.1.1", "object.assign": "^4.1.4", "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-abstract/node_modules/internal-slot": { - "version": "1.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" }, "engines": { "node": ">= 0.4" - } - }, - "node_modules/es-abstract/node_modules/is-array-buffer": { - "version": "3.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -13016,7 +11587,8 @@ }, "node_modules/es-get-iterator": { "version": "1.1.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", @@ -13034,13 +11606,15 @@ }, "node_modules/es-module-lexer": { "version": "0.9.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true }, "node_modules/es-set-tostringtag": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", "dev": true, - "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.3", "has": "^1.0.3", @@ -13052,16 +11626,18 @@ }, "node_modules/es-shim-unscopables": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", "dev": true, - "license": "MIT", "dependencies": { "has": "^1.0.3" } }, "node_modules/es-to-primitive": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, - "license": "MIT", "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -13076,19 +11652,22 @@ }, "node_modules/es6-error": { "version": "4.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "dev": true }, "node_modules/es6-object-assign": { "version": "1.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz", + "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==", + "dev": true }, "node_modules/esbuild": { - "version": "0.17.17", + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", + "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", "dev": true, "hasInstallScript": true, - "license": "MIT", "bin": { "esbuild": "bin/esbuild" }, @@ -13096,39 +11675,41 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.17.17", - "@esbuild/android-arm64": "0.17.17", - "@esbuild/android-x64": "0.17.17", - "@esbuild/darwin-arm64": "0.17.17", - "@esbuild/darwin-x64": "0.17.17", - "@esbuild/freebsd-arm64": "0.17.17", - "@esbuild/freebsd-x64": "0.17.17", - "@esbuild/linux-arm": "0.17.17", - "@esbuild/linux-arm64": "0.17.17", - "@esbuild/linux-ia32": "0.17.17", - "@esbuild/linux-loong64": "0.17.17", - "@esbuild/linux-mips64el": "0.17.17", - "@esbuild/linux-ppc64": "0.17.17", - "@esbuild/linux-riscv64": "0.17.17", - "@esbuild/linux-s390x": "0.17.17", - "@esbuild/linux-x64": "0.17.17", - "@esbuild/netbsd-x64": "0.17.17", - "@esbuild/openbsd-x64": "0.17.17", - "@esbuild/sunos-x64": "0.17.17", - "@esbuild/win32-arm64": "0.17.17", - "@esbuild/win32-ia32": "0.17.17", - "@esbuild/win32-x64": "0.17.17" + "@esbuild/android-arm": "0.17.18", + "@esbuild/android-arm64": "0.17.18", + "@esbuild/android-x64": "0.17.18", + "@esbuild/darwin-arm64": "0.17.18", + "@esbuild/darwin-x64": "0.17.18", + "@esbuild/freebsd-arm64": "0.17.18", + "@esbuild/freebsd-x64": "0.17.18", + "@esbuild/linux-arm": "0.17.18", + "@esbuild/linux-arm64": "0.17.18", + "@esbuild/linux-ia32": "0.17.18", + "@esbuild/linux-loong64": "0.17.18", + "@esbuild/linux-mips64el": "0.17.18", + "@esbuild/linux-ppc64": "0.17.18", + "@esbuild/linux-riscv64": "0.17.18", + "@esbuild/linux-s390x": "0.17.18", + "@esbuild/linux-x64": "0.17.18", + "@esbuild/netbsd-x64": "0.17.18", + "@esbuild/openbsd-x64": "0.17.18", + "@esbuild/sunos-x64": "0.17.18", + "@esbuild/win32-arm64": "0.17.18", + "@esbuild/win32-ia32": "0.17.18", + "@esbuild/win32-x64": "0.17.18" } }, "node_modules/esbuild-plugin-alias": { "version": "0.2.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz", + "integrity": "sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==", + "dev": true }, "node_modules/esbuild-register": { "version": "3.4.2", + "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.4.2.tgz", + "integrity": "sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==", "dev": true, - "license": "MIT", "dependencies": { "debug": "^4.3.4" }, @@ -13138,28 +11719,32 @@ }, "node_modules/escalade": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/escape-html": { "version": "1.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true }, "node_modules/escape-string-regexp": { "version": "1.0.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "engines": { "node": ">=0.8.0" } }, "node_modules/escodegen": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", @@ -13178,11 +11763,15 @@ } }, "node_modules/eslint": { - "version": "8.33.0", + "version": "8.40.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.40.0.tgz", + "integrity": "sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ==", "dev": true, - "license": "MIT", "dependencies": { - "@eslint/eslintrc": "^1.4.1", + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.3", + "@eslint/js": "8.40.0", "@humanwhocodes/config-array": "^0.11.8", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -13192,11 +11781,10 @@ "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.5.2", + "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", @@ -13217,7 +11805,6 @@ "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.1", - "regexpp": "^3.2.0", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", "text-table": "^0.2.0" @@ -13233,9 +11820,10 @@ } }, "node_modules/eslint-config-prettier": { - "version": "8.6.0", + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", + "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", "dev": true, - "license": "MIT", "bin": { "eslint-config-prettier": "bin/cli.js" }, @@ -13245,8 +11833,9 @@ }, "node_modules/eslint-import-resolver-node": { "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", "dev": true, - "license": "MIT", "dependencies": { "debug": "^3.2.7", "is-core-module": "^2.11.0", @@ -13255,16 +11844,18 @@ }, "node_modules/eslint-import-resolver-node/node_modules/debug": { "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/eslint-module-utils": { "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", "dev": true, - "license": "MIT", "dependencies": { "debug": "^3.2.7" }, @@ -13279,16 +11870,18 @@ }, "node_modules/eslint-module-utils/node_modules/debug": { "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/eslint-plugin-import": { "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", "dev": true, - "license": "MIT", "dependencies": { "array-includes": "^3.1.6", "array.prototype.flat": "^1.3.1", @@ -13313,27 +11906,20 @@ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/eslint-plugin-import/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/eslint-plugin-import/node_modules/debug": { "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/eslint-plugin-import/node_modules/doctrine": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, - "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -13341,29 +11927,11 @@ "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-import/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/eslint-plugin-prettier": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", "dev": true, - "license": "MIT", "dependencies": { "prettier-linter-helpers": "^1.0.0" }, @@ -13382,8 +11950,9 @@ }, "node_modules/eslint-plugin-react": { "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", "dev": true, - "license": "MIT", "dependencies": { "array-includes": "^3.1.6", "array.prototype.flatmap": "^1.3.1", @@ -13408,19 +11977,11 @@ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/eslint-plugin-react/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/eslint-plugin-react/node_modules/doctrine": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, - "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -13428,21 +11989,11 @@ "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-react/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/eslint-plugin-react/node_modules/resolve": { "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", "dev": true, - "license": "MIT", "dependencies": { "is-core-module": "^2.9.0", "path-parse": "^1.0.7", @@ -13455,26 +12006,20 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/eslint-plugin-simple-import-sort": { "version": "10.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-10.0.0.tgz", + "integrity": "sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==", "dev": true, - "license": "MIT", "peerDependencies": { "eslint": ">=5.0.0" } }, "node_modules/eslint-plugin-storybook": { - "version": "0.6.11", + "version": "0.6.12", + "resolved": "https://registry.npmjs.org/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.12.tgz", + "integrity": "sha512-XbIvrq6hNVG6rpdBr+eBw63QhOMLpZneQVSooEDow8aQCWGCk/5vqtap1yxpVydNfSxi3S/3mBBRLQqKUqQRww==", "dev": true, - "license": "MIT", "dependencies": { "@storybook/csf": "^0.0.1", "@typescript-eslint/utils": "^5.45.0", @@ -13490,16 +12035,18 @@ }, "node_modules/eslint-plugin-storybook/node_modules/@storybook/csf": { "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz", + "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==", "dev": true, - "license": "MIT", "dependencies": { "lodash": "^4.17.15" } }, "node_modules/eslint-plugin-unused-imports": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-2.0.0.tgz", + "integrity": "sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==", "dev": true, - "license": "MIT", "dependencies": { "eslint-rule-composer": "^0.3.0" }, @@ -13518,8 +12065,9 @@ }, "node_modules/eslint-plugin-vitest": { "version": "0.0.53", + "resolved": "https://registry.npmjs.org/eslint-plugin-vitest/-/eslint-plugin-vitest-0.0.53.tgz", + "integrity": "sha512-OvPAPp7P9xr+3VLM8eHcenYOT3rdyWQb0naZ+ZeAjpDwYcyQWfOofS6Foq1Hh+ilEM94GegxuduJLLEEM94nQg==", "dev": true, - "license": "MIT", "dependencies": { "@typescript-eslint/utils": "^5.53.0" }, @@ -13530,105 +12078,20 @@ "eslint": ">=8.0.0" } }, - "node_modules/eslint-plugin-vitest/node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/visitor-keys": "5.59.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/eslint-plugin-vitest/node_modules/@typescript-eslint/types": { - "version": "5.59.0", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/eslint-plugin-vitest/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.0", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/visitor-keys": "5.59.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-vitest/node_modules/@typescript-eslint/utils": { - "version": "5.59.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.0", - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/typescript-estree": "5.59.0", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/eslint-plugin-vitest/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.0", + "node_modules/eslint-rule-composer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz", + "integrity": "sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==", "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "5.59.0", - "eslint-visitor-keys": "^3.3.0" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=4.0.0" } }, - "node_modules/eslint-plugin-vitest/node_modules/eslint-scope": { + "node_modules/eslint-scope": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" @@ -13637,51 +12100,20 @@ "node": ">=8.0.0" } }, - "node_modules/eslint-plugin-vitest/node_modules/estraverse": { + "node_modules/eslint-scope/node_modules/estraverse": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, - "node_modules/eslint-rule-composer": { - "version": "0.3.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^2.0.0" - }, - "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" - } - }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10" - } - }, "node_modules/eslint-visitor-keys": { - "version": "3.4.0", + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", "dev": true, - "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -13691,8 +12123,9 @@ }, "node_modules/eslint/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -13705,22 +12138,15 @@ }, "node_modules/eslint/node_modules/argparse": { "version": "2.0.1", - "dev": true, - "license": "Python-2.0" - }, - "node_modules/eslint/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true }, "node_modules/eslint/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -13732,26 +12158,11 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/eslint/node_modules/escape-string-regexp": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -13761,8 +12172,9 @@ }, "node_modules/eslint/node_modules/eslint-scope": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" @@ -13776,8 +12188,9 @@ }, "node_modules/eslint/node_modules/glob-parent": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, - "license": "ISC", "dependencies": { "is-glob": "^4.0.3" }, @@ -13787,8 +12200,9 @@ }, "node_modules/eslint/node_modules/globals": { "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", "dev": true, - "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, @@ -13801,50 +12215,30 @@ }, "node_modules/eslint/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/eslint/node_modules/js-yaml": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/eslint/node_modules/levn": { - "version": "0.4.1", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/eslint/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, "node_modules/eslint/node_modules/optionator": { "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, - "license": "MIT", "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", @@ -13857,18 +12251,11 @@ "node": ">= 0.8.0" } }, - "node_modules/eslint/node_modules/prelude-ls": { - "version": "1.2.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/eslint/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -13876,21 +12263,11 @@ "node": ">=8" } }, - "node_modules/eslint/node_modules/type-check": { - "version": "0.4.0", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/eslint/node_modules/type-fest": { "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -13899,13 +12276,14 @@ } }, "node_modules/espree": { - "version": "9.5.1", + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", + "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "acorn": "^8.8.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.0" + "eslint-visitor-keys": "^3.4.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -13914,10 +12292,23 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/espree/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/esprima": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, - "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -13928,8 +12319,9 @@ }, "node_modules/esquery": { "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, @@ -13939,8 +12331,9 @@ }, "node_modules/esrecurse": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, @@ -13950,16 +12343,18 @@ }, "node_modules/estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/estree-to-babel": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz", + "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/traverse": "^7.1.6", "@babel/types": "^7.2.0", @@ -13971,29 +12366,33 @@ }, "node_modules/estree-walker": { "version": "2.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true }, "node_modules/esutils": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/etag": { "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/eventemitter2": { "version": "6.4.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", + "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", + "dev": true }, "node_modules/events": { "version": "3.3.0", @@ -14005,18 +12404,19 @@ } }, "node_modules/execa": { - "version": "5.1.1", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", "dev": true, - "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", "strip-final-newline": "^2.0.0" }, "engines": { @@ -14028,8 +12428,9 @@ }, "node_modules/execall": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execall/-/execall-1.0.0.tgz", + "integrity": "sha512-/J0Q8CvOvlAdpvhfkD/WnTQ4H1eU0exze2nFGPj/RSC7jpQ0NkKe2r28T5eMkhEEs+fzepMZNy1kVRKNlC04nQ==", "dev": true, - "license": "MIT", "dependencies": { "clone-regexp": "^1.0.0" }, @@ -14039,8 +12440,9 @@ }, "node_modules/executable": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", "dev": true, - "license": "MIT", "dependencies": { "pify": "^2.2.0" }, @@ -14048,16 +12450,10 @@ "node": ">=4" } }, - "node_modules/executable/node_modules/pify": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/exit": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, "engines": { "node": ">= 0.8.0" @@ -14065,8 +12461,9 @@ }, "node_modules/expand-brackets": { "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", "dev": true, - "license": "MIT", "dependencies": { "debug": "^2.3.3", "define-property": "^0.2.5", @@ -14082,16 +12479,18 @@ }, "node_modules/expand-brackets/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/expand-brackets/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -14101,8 +12500,9 @@ }, "node_modules/expand-brackets/node_modules/extend-shallow": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, - "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -14110,169 +12510,136 @@ "node": ">=0.10.0" } }, - "node_modules/expand-brackets/node_modules/ms": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/expand-tilde": { - "version": "1.2.2", + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", "dev": true, - "license": "MIT", "dependencies": { - "os-homedir": "^1.0.1" + "kind-of": "^3.0.2" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/expect": { - "version": "28.1.3", + "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/expect-utils": "^28.1.3", - "jest-get-type": "^28.0.2", - "jest-matcher-utils": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3" + "is-buffer": "^1.1.5" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=0.10.0" } }, - "node_modules/expect-playwright": { - "version": "0.8.0", - "dev": true, - "license": "MIT" - }, - "node_modules/expect/node_modules/@jest/expect-utils": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-get-type": "^28.0.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } + "node_modules/expand-brackets/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true }, - "node_modules/expect/node_modules/@jest/schemas": { - "version": "28.1.3", + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", "dev": true, - "license": "MIT", "dependencies": { - "@sinclair/typebox": "^0.24.1" + "kind-of": "^3.0.2" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=0.10.0" } }, - "node_modules/expect/node_modules/@jest/types": { - "version": "28.1.3", + "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/schemas": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" + "is-buffer": "^1.1.5" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=0.10.0" } }, - "node_modules/expect/node_modules/@sinclair/typebox": { - "version": "0.24.51", - "dev": true, - "license": "MIT" - }, - "node_modules/expect/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, - "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/expect/node_modules/chalk": { - "version": "4.1.2", + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/expect/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/expand-brackets/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/expect/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/expect/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, - "node_modules/expect/node_modules/jest-util": { - "version": "28.1.3", + "node_modules/expand-tilde": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz", + "integrity": "sha512-rtmc+cjLZqnu9dSYosX9EWmSJhTwpACgJQTfj4hgg2JjOD/6SIQalZrt4a3aQeh++oNxkazcaxrhPUj6+g5G/Q==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "os-homedir": "^1.0.1" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=0.10.0" } }, - "node_modules/expect/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", + "node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", "dependencies": { - "has-flag": "^4.0.0" + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/expect-playwright": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/expect-playwright/-/expect-playwright-0.8.0.tgz", + "integrity": "sha512-+kn8561vHAY+dt+0gMqqj1oY+g5xWrsuGMk4QGxotT2WS545nVqqjs37z6hrYfIuucwqthzwJfCJUEYqixyljg==", + "dev": true + }, "node_modules/express": { "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dev": true, - "license": "MIT", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", @@ -14312,21 +12679,24 @@ }, "node_modules/express/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/express/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/express/node_modules/qs": { "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.4" }, @@ -14339,13 +12709,15 @@ }, "node_modules/extend": { "version": "3.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true }, "node_modules/extend-shallow": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, - "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -14354,28 +12726,6 @@ "node": ">=0.10.0" } }, - "node_modules/extend-shallow/node_modules/is-extendable": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extend-shallow/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/external-editor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", @@ -14404,83 +12754,61 @@ }, "node_modules/extglob": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, - "license": "MIT", "dependencies": { "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/extglob/node_modules/is-accessor-descriptor": { + "node_modules/extglob/node_modules/define-property": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, - "license": "MIT", "dependencies": { - "kind-of": "^6.0.0" + "is-descriptor": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/extglob/node_modules/is-data-descriptor": { - "version": "1.0.0", + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, - "license": "MIT", "dependencies": { - "kind-of": "^6.0.0" + "is-extendable": "^0.1.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/extglob/node_modules/is-descriptor": { - "version": "1.0.2", + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, "engines": { "node": ">=0.10.0" } }, "node_modules/extract-zip": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "debug": "^4.1.1", "get-stream": "^5.1.0", @@ -14496,42 +12824,32 @@ "@types/yauzl": "^2.9.1" } }, - "node_modules/extract-zip/node_modules/get-stream": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/extsprintf": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "dev": true, "engines": [ "node >=0.6.0" - ], - "license": "MIT" + ] }, "node_modules/fast-deep-equal": { "version": "3.1.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true }, "node_modules/fast-diff": { "version": "1.2.0", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true }, "node_modules/fast-glob": { "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, - "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -14543,68 +12861,65 @@ "node": ">=8.6.0" } }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true }, "node_modules/fastest-levenshtein": { "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 4.9.1" } }, "node_modules/fastq": { "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, - "license": "ISC", "dependencies": { "reusify": "^1.0.4" } }, "node_modules/fb-watchman": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, - "license": "Apache-2.0", "dependencies": { "bser": "2.1.1" } }, "node_modules/fd-slicer": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "dev": true, - "license": "MIT", "dependencies": { "pend": "~1.2.0" } }, "node_modules/fetch-retry": { - "version": "5.0.4", - "dev": true, - "license": "MIT" + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.5.tgz", + "integrity": "sha512-q9SvpKH5Ka6h7X2C6r1sP31pQoeDb3o6/R9cg21ahfPAqbIOkW9tus1dXfwYb6G6dOI4F7nVS4Q+LSssBGIz0A==", + "dev": true }, "node_modules/figures": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, - "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5" }, @@ -14617,8 +12932,9 @@ }, "node_modules/file-entry-cache": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, - "license": "MIT", "dependencies": { "flat-cache": "^3.0.4" }, @@ -14627,9 +12943,10 @@ } }, "node_modules/file-system-cache": { - "version": "2.0.2", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.1.1.tgz", + "integrity": "sha512-vgZ1uDsK29DM4pptUOv47zdJO2tYM5M/ERyAE9Jk0QBN6e64Md+a+xJSOp68dCCDH4niFMVD8nC8n8A5ic0bmg==", "dev": true, - "license": "MIT", "dependencies": { "fs-extra": "^11.1.0", "ramda": "^0.28.0" @@ -14637,15 +12954,38 @@ }, "node_modules/filelist": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dev": true, - "license": "Apache-2.0", "dependencies": { "minimatch": "^5.0.1" } }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/fill-range": { "version": "7.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -14655,8 +12995,9 @@ }, "node_modules/finalhandler": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, - "license": "MIT", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -14672,69 +13013,66 @@ }, "node_modules/finalhandler/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/find-cache-dir": { - "version": "2.1.0", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, - "license": "MIT", "dependencies": { "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" }, "engines": { - "node": ">=6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, "node_modules/find-cache-dir/node_modules/find-up": { - "version": "3.0.0", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "license": "MIT", "dependencies": { - "locate-path": "^3.0.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, "node_modules/find-cache-dir/node_modules/locate-path": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/find-cache-dir/node_modules/make-dir": { - "version": "2.1.0", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "license": "MIT", "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "p-locate": "^4.1.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, "node_modules/find-cache-dir/node_modules/p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -14746,47 +13084,34 @@ } }, "node_modules/find-cache-dir/node_modules/p-locate": { - "version": "3.0.0", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "license": "MIT", "dependencies": { - "p-limit": "^2.0.0" + "p-limit": "^2.2.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/find-cache-dir/node_modules/path-exists": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/find-cache-dir/node_modules/pkg-dir": { - "version": "3.0.0", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, - "license": "MIT", "dependencies": { - "find-up": "^3.0.0" + "find-up": "^4.0.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/find-cache-dir/node_modules/semver": { - "version": "5.7.1", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" + "node": ">=8" } }, "node_modules/find-file-up": { "version": "0.1.3", + "resolved": "https://registry.npmjs.org/find-file-up/-/find-file-up-0.1.3.tgz", + "integrity": "sha512-mBxmNbVyjg1LQIIpgO8hN+ybWBgDQK8qjht+EbrTCGmmPV/sc7RF1i9stPTD6bpvXZywBdrwRYxhSdJv867L6A==", "dev": true, - "license": "MIT", "dependencies": { "fs-exists-sync": "^0.1.0", "resolve-dir": "^0.1.0" @@ -14797,8 +13122,9 @@ }, "node_modules/find-pkg": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/find-pkg/-/find-pkg-0.1.2.tgz", + "integrity": "sha512-0rnQWcFwZr7eO0513HahrWafsc3CTFioEB7DRiEYCUM/70QXSY8f3mCST17HXLcPvEhzH/Ty/Bxd72ZZsr/yvw==", "dev": true, - "license": "MIT", "dependencies": { "find-file-up": "^0.1.2" }, @@ -14808,8 +13134,9 @@ }, "node_modules/find-process": { "version": "1.4.7", + "resolved": "https://registry.npmjs.org/find-process/-/find-process-1.4.7.tgz", + "integrity": "sha512-/U4CYp1214Xrp3u3Fqr9yNynUrr5Le4y0SsJh2lMDDSbpwYSz3M2SMWQC+wqcx79cN8PQtHQIL8KnuY9M66fdg==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^4.0.0", "commander": "^5.1.0", @@ -14821,8 +13148,9 @@ }, "node_modules/find-process/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -14835,8 +13163,9 @@ }, "node_modules/find-process/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -14848,42 +13177,29 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/find-process/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/find-process/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/find-process/node_modules/commander": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/find-process/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/find-process/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -14893,8 +13209,9 @@ }, "node_modules/find-up": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -14908,8 +13225,9 @@ }, "node_modules/flat-cache": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, - "license": "MIT", "dependencies": { "flatted": "^3.1.0", "rimraf": "^3.0.2" @@ -14920,19 +13238,23 @@ }, "node_modules/flatted": { "version": "3.2.7", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true }, "node_modules/flow-parser": { - "version": "0.204.0", + "version": "0.205.1", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.205.1.tgz", + "integrity": "sha512-+RF/e1Et6ZX2I/UG7SGAz3Z8+ulj9xKYLu5AD7Wi8H2llzncU8ZpdKfLR50pPvj4g2a/FbZWkXYL7qHc+zXJNA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/follow-redirects": { "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "dev": true, "funding": [ { @@ -14940,7 +13262,6 @@ "url": "https://github.com/sponsors/RubenVerborgh" } ], - "license": "MIT", "engines": { "node": ">=4.0" }, @@ -14952,23 +13273,26 @@ }, "node_modules/for-each": { "version": "0.3.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dependencies": { "is-callable": "^1.1.3" } }, "node_modules/for-in": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/foreground-child": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", + "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", "dev": true, - "license": "ISC", "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^3.0.2" @@ -14979,16 +13303,18 @@ }, "node_modules/forever-agent": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", "dev": true, - "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/form-data": { "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "dev": true, - "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.6", @@ -15000,16 +13326,18 @@ }, "node_modules/forwarded": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/fragment-cache": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", "dev": true, - "license": "MIT", "dependencies": { "map-cache": "^0.2.2" }, @@ -15019,14 +13347,17 @@ }, "node_modules/fresh": { "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/fromentries": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz", + "integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==", "dev": true, "funding": [ { @@ -15041,26 +13372,28 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/fs-constants": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true }, "node_modules/fs-exists-sync": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz", + "integrity": "sha512-cR/vflFyPZtrN6b38ZyWxpWdhlXrzZEBawlpBQMq7033xVY7/kg0GDMBK5jg8lDYQckdJ5x/YC88lM3C7VMsLg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/fs-extra": { "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", "dev": true, - "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -15072,8 +13405,9 @@ }, "node_modules/fs-minipass": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, - "license": "ISC", "dependencies": { "minipass": "^3.0.0" }, @@ -15083,8 +13417,9 @@ }, "node_modules/fs-minipass/node_modules/minipass": { "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, @@ -15092,14 +13427,23 @@ "node": ">=8" } }, + "node_modules/fs-minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/fs.realpath": { "version": "1.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true }, "node_modules/fsevents": { "version": "2.3.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, "optional": true, "os": [ "darwin" @@ -15110,12 +13454,14 @@ }, "node_modules/function-bind": { "version": "1.1.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "node_modules/function.prototype.name": { "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", @@ -15131,15 +13477,17 @@ }, "node_modules/functions-have-names": { "version": "1.2.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/gauge": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", "dev": true, - "license": "ISC", "dependencies": { "aproba": "^1.0.3 || ^2.0.0", "color-support": "^1.1.2", @@ -15157,31 +13505,35 @@ }, "node_modules/gensync": { "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/get-caller-file": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, - "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-func-name": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==", "dev": true, - "license": "MIT", "engines": { "node": "*" } }, "node_modules/get-intrinsic": { "version": "1.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -15193,24 +13545,27 @@ }, "node_modules/get-npm-tarball-url": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.0.3.tgz", + "integrity": "sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==", "dev": true, - "license": "MIT", "engines": { "node": ">=12.17" } }, "node_modules/get-package-type": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.0.0" } }, "node_modules/get-port": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -15220,18 +13575,23 @@ }, "node_modules/get-stdin": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", + "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/get-stream": { - "version": "6.0.1", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, - "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -15239,8 +13599,9 @@ }, "node_modules/get-symbol-description": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -15254,32 +13615,36 @@ }, "node_modules/get-value": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/getos": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", + "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", "dev": true, - "license": "MIT", "dependencies": { "async": "^3.2.0" } }, "node_modules/getpass": { "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dev": true, - "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" } }, "node_modules/giget": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/giget/-/giget-1.1.2.tgz", + "integrity": "sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==", "dev": true, - "license": "MIT", "dependencies": { "colorette": "^2.0.19", "defu": "^6.1.2", @@ -15295,13 +13660,15 @@ }, "node_modules/github-slugger": { "version": "1.5.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", + "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==", + "dev": true }, "node_modules/glob": { "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -15317,29 +13684,21 @@ } }, "node_modules/glob-parent": { - "version": "3.1.0", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "dev": true, - "license": "MIT", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dependencies": { - "is-extglob": "^2.1.0" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 6" } }, "node_modules/glob-promise": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-6.0.2.tgz", + "integrity": "sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/glob": "^8.0.0" }, @@ -15354,15 +13713,38 @@ "glob": "^8.0.3" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, - "license": "BSD-2-Clause" + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } }, "node_modules/global-dirs": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dev": true, - "license": "MIT", "dependencies": { "ini": "2.0.0" }, @@ -15373,18 +13755,11 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, "node_modules/global-modules": { "version": "0.2.3", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz", + "integrity": "sha512-JeXuCbvYzYXcwE6acL9V2bAOeSIGl4dD+iwLY9iUx2VBJJ80R18HCn+JCwHM9Oegdfya3lEkGCdaRkSyc10hDA==", "dev": true, - "license": "MIT", "dependencies": { "global-prefix": "^0.1.4", "is-windows": "^0.2.0" @@ -15393,18 +13768,11 @@ "node": ">=0.10.0" } }, - "node_modules/global-modules/node_modules/is-windows": { - "version": "0.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/global-prefix": { "version": "0.1.5", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz", + "integrity": "sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw==", "dev": true, - "license": "MIT", "dependencies": { "homedir-polyfill": "^1.0.0", "ini": "^1.3.4", @@ -15415,18 +13783,17 @@ "node": ">=0.10.0" } }, - "node_modules/global-prefix/node_modules/is-windows": { - "version": "0.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } + "node_modules/global-prefix/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true }, "node_modules/global-prefix/node_modules/which": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -15436,16 +13803,18 @@ }, "node_modules/globals": { "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/globalthis": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, - "license": "MIT", "dependencies": { "define-properties": "^1.1.3" }, @@ -15458,8 +13827,9 @@ }, "node_modules/globby": { "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, - "license": "MIT", "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", @@ -15477,13 +13847,15 @@ }, "node_modules/globjoin": { "version": "0.1.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", + "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", + "dev": true }, "node_modules/gonzales-pe": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/gonzales-pe/-/gonzales-pe-4.3.0.tgz", + "integrity": "sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==", "dev": true, - "license": "MIT", "dependencies": { "minimist": "^1.2.5" }, @@ -15496,7 +13868,8 @@ }, "node_modules/gopd": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dependencies": { "get-intrinsic": "^1.1.3" }, @@ -15505,13 +13878,15 @@ } }, "node_modules/graceful-fs": { - "version": "4.2.10", - "license": "ISC" + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, "node_modules/grapheme-splitter": { "version": "1.0.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true }, "node_modules/graphql": { "version": "16.6.0", @@ -15524,8 +13899,9 @@ }, "node_modules/gunzip-maybe": { "version": "1.4.2", + "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", + "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", "dev": true, - "license": "MIT", "dependencies": { "browserify-zlib": "^0.1.4", "is-deflate": "^1.0.0", @@ -15538,23 +13914,11 @@ "gunzip-maybe": "bin.js" } }, - "node_modules/gunzip-maybe/node_modules/browserify-zlib": { - "version": "0.1.4", - "dev": true, - "license": "MIT", - "dependencies": { - "pako": "~0.2.0" - } - }, - "node_modules/gunzip-maybe/node_modules/pako": { - "version": "0.2.9", - "dev": true, - "license": "MIT" - }, "node_modules/handlebars": { "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", "dev": true, - "license": "MIT", "dependencies": { "minimist": "^1.2.5", "neo-async": "^2.6.0", @@ -15573,15 +13937,17 @@ }, "node_modules/hard-rejection": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/has": { "version": "1.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dependencies": { "function-bind": "^1.1.1" }, @@ -15591,21 +13957,24 @@ }, "node_modules/has-bigints": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-flag": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "engines": { "node": ">=4" } }, "node_modules/has-property-descriptors": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", "dependencies": { "get-intrinsic": "^1.1.1" }, @@ -15615,8 +13984,9 @@ }, "node_modules/has-proto": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -15626,7 +13996,8 @@ }, "node_modules/has-symbols": { "version": "1.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "engines": { "node": ">= 0.4" }, @@ -15636,7 +14007,8 @@ }, "node_modules/has-tostringtag": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dependencies": { "has-symbols": "^1.0.2" }, @@ -15649,13 +14021,15 @@ }, "node_modules/has-unicode": { "version": "2.0.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true }, "node_modules/has-value": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", "dev": true, - "license": "MIT", "dependencies": { "get-value": "^2.0.6", "has-values": "^1.0.0", @@ -15667,8 +14041,9 @@ }, "node_modules/has-values": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", "dev": true, - "license": "MIT", "dependencies": { "is-number": "^3.0.0", "kind-of": "^4.0.0" @@ -15677,10 +14052,17 @@ "node": ">=0.10.0" } }, + "node_modules/has-values/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, "node_modules/has-values/node_modules/is-number": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -15690,8 +14072,9 @@ }, "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -15701,8 +14084,9 @@ }, "node_modules/has-values/node_modules/kind-of": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -15712,8 +14096,9 @@ }, "node_modules/hasha": { "version": "5.2.2", + "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", + "integrity": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==", "dev": true, - "license": "MIT", "dependencies": { "is-stream": "^2.0.0", "type-fest": "^0.8.0" @@ -15727,8 +14112,9 @@ }, "node_modules/hasha/node_modules/type-fest": { "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } @@ -15741,8 +14127,9 @@ }, "node_modules/homedir-polyfill": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", "dev": true, - "license": "MIT", "dependencies": { "parse-passwd": "^1.0.0" }, @@ -15752,13 +14139,15 @@ }, "node_modules/hosted-git-info": { "version": "2.8.9", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true }, "node_modules/html-encoding-sniffer": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", "dev": true, - "license": "MIT", "dependencies": { "whatwg-encoding": "^2.0.0" }, @@ -15768,20 +14157,23 @@ }, "node_modules/html-escaper": { "version": "2.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true }, "node_modules/html-parse-stringify": { "version": "3.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz", + "integrity": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==", "dependencies": { "void-elements": "3.1.0" } }, "node_modules/html-tags": { "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -15791,8 +14183,9 @@ }, "node_modules/htmlparser2": { "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", "dev": true, - "license": "MIT", "dependencies": { "domelementtype": "^1.3.1", "domhandler": "^2.3.0", @@ -15804,8 +14197,9 @@ }, "node_modules/http-errors": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, - "license": "MIT", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", @@ -15819,8 +14213,9 @@ }, "node_modules/http-proxy-agent": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, - "license": "MIT", "dependencies": { "@tootallnate/once": "2", "agent-base": "6", @@ -15832,8 +14227,9 @@ }, "node_modules/http-signature": { "version": "1.3.6", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", + "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", "dev": true, - "license": "MIT", "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^2.0.2", @@ -15845,8 +14241,9 @@ }, "node_modules/https-proxy-agent": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "6", "debug": "4" @@ -15856,15 +14253,18 @@ } }, "node_modules/human-signals": { - "version": "2.1.0", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true, - "license": "Apache-2.0", "engines": { - "node": ">=10.17.0" + "node": ">=8.12.0" } }, "node_modules/i18next": { - "version": "22.4.9", + "version": "22.4.15", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-22.4.15.tgz", + "integrity": "sha512-yYudtbFrrmWKLEhl6jvKUYyYunj4bTBCe2qIUYAxbXoPusY7YmdwPvOE6fx6UIfWvmlbCWDItr7wIs8KEBZ5Zg==", "funding": [ { "type": "individual", @@ -15879,29 +14279,31 @@ "url": "https://www.i18next.com/how-to/faq#i18next-is-awesome.-how-can-i-support-the-project" } ], - "license": "MIT", "dependencies": { "@babel/runtime": "^7.20.6" } }, "node_modules/i18next-browser-languagedetector": { "version": "7.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/i18next-browser-languagedetector/-/i18next-browser-languagedetector-7.0.1.tgz", + "integrity": "sha512-Pa5kFwaczXJAeHE56CHG2aWzFBMJNUNghf0Pm4SwSrEMps/PTKqW90EYWlIvhuYStf3Sn1K0vw+gH3+TLdkH1g==", "dependencies": { "@babel/runtime": "^7.19.4" } }, "node_modules/i18next-http-backend": { - "version": "2.1.1", - "license": "MIT", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/i18next-http-backend/-/i18next-http-backend-2.2.0.tgz", + "integrity": "sha512-Z4sM7R6tzdLknSPER9GisEBxKPg5FkI07UrQniuroZmS15PHQrcCPLyuGKj8SS68tf+O2aEDYSUnmy1TZqZSbw==", "dependencies": { "cross-fetch": "3.1.5" } }, "node_modules/iconv-lite": { "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, - "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -15911,6 +14313,8 @@ }, "node_modules/ieee754": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, "funding": [ { @@ -15925,25 +14329,27 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "BSD-3-Clause" + ] }, "node_modules/ignore": { "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/immutable": { "version": "4.3.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", + "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==" }, "node_modules/import-fresh": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, - "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -15957,24 +14363,27 @@ }, "node_modules/import-fresh/node_modules/resolve-from": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/import-lazy": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/import-local": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, - "license": "MIT", "dependencies": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" @@ -15991,8 +14400,9 @@ }, "node_modules/import-local/node_modules/find-up": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -16003,8 +14413,9 @@ }, "node_modules/import-local/node_modules/locate-path": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -16014,8 +14425,9 @@ }, "node_modules/import-local/node_modules/p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -16028,8 +14440,9 @@ }, "node_modules/import-local/node_modules/p-locate": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -16039,8 +14452,9 @@ }, "node_modules/import-local/node_modules/pkg-dir": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, - "license": "MIT", "dependencies": { "find-up": "^4.0.0" }, @@ -16050,28 +14464,32 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.19" } }, "node_modules/indent-string": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "engines": { "node": ">=8" } }, "node_modules/indexes-of": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==", + "dev": true }, "node_modules/inflight": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, - "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -16079,13 +14497,18 @@ }, "node_modules/inherits": { "version": "2.0.4", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, "node_modules/ini": { - "version": "1.3.8", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "dev": true, - "license": "ISC" + "engines": { + "node": ">=10" + } }, "node_modules/inquirer": { "version": "8.2.5", @@ -16144,24 +14567,6 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/inquirer/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/inquirer/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/inquirer/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -16171,15 +14576,6 @@ "node": ">=8" } }, - "node_modules/inquirer/node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, "node_modules/inquirer/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -16193,10 +14589,11 @@ } }, "node_modules/internal-slot": { - "version": "1.0.4", - "license": "MIT", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", "dependencies": { - "get-intrinsic": "^1.1.3", + "get-intrinsic": "^1.2.0", "has": "^1.0.3", "side-channel": "^1.0.4" }, @@ -16204,51 +14601,54 @@ "node": ">= 0.4" } }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/invariant": { "version": "2.2.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dependencies": { "loose-envify": "^1.0.0" } }, "node_modules/ip": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true }, "node_modules/ipaddr.js": { "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/is-absolute-url": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, - "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" + "kind-of": "^6.0.0" }, "engines": { "node": ">=0.10.0" @@ -16256,8 +14656,9 @@ }, "node_modules/is-alphabetical": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -16265,16 +14666,18 @@ }, "node_modules/is-alphanumeric": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz", + "integrity": "sha512-ZmRL7++ZkcMOfDuWZuMJyIVLr2keE1o/DeNWh1EmgqGhUcV+9BIVsx0BcSBOHTZqzjs4+dISzr2KAeBEWGgXeA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-alphanumerical": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", "dev": true, - "license": "MIT", "dependencies": { "is-alphabetical": "^1.0.0", "is-decimal": "^1.0.0" @@ -16286,7 +14689,8 @@ }, "node_modules/is-arguments": { "version": "1.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -16299,11 +14703,12 @@ } }, "node_modules/is-array-buffer": { - "version": "3.0.1", - "license": "MIT", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", "dependencies": { "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", + "get-intrinsic": "^1.2.0", "is-typed-array": "^1.1.10" }, "funding": { @@ -16312,12 +14717,14 @@ }, "node_modules/is-arrayish": { "version": "0.2.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true }, "node_modules/is-bigint": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dependencies": { "has-bigints": "^1.0.1" }, @@ -16327,7 +14734,8 @@ }, "node_modules/is-binary-path": { "version": "2.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dependencies": { "binary-extensions": "^2.0.0" }, @@ -16337,7 +14745,8 @@ }, "node_modules/is-boolean-object": { "version": "1.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -16350,13 +14759,32 @@ } }, "node_modules/is-buffer": { - "version": "1.1.6", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", "dev": true, - "license": "MIT" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } }, "node_modules/is-callable": { "version": "1.2.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "engines": { "node": ">= 0.4" }, @@ -16366,8 +14794,9 @@ }, "node_modules/is-ci": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, - "license": "MIT", "dependencies": { "ci-info": "^3.2.0" }, @@ -16377,8 +14806,9 @@ }, "node_modules/is-core-module": { "version": "2.12.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", "dev": true, - "license": "MIT", "dependencies": { "has": "^1.0.3" }, @@ -16387,22 +14817,12 @@ } }, "node_modules/is-data-descriptor": { - "version": "0.1.4", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, - "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" + "kind-of": "^6.0.0" }, "engines": { "node": ">=0.10.0" @@ -16410,7 +14830,8 @@ }, "node_modules/is-date-object": { "version": "1.0.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -16423,8 +14844,9 @@ }, "node_modules/is-decimal": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -16432,42 +14854,38 @@ }, "node_modules/is-deflate": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", + "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==", + "dev": true }, "node_modules/is-descriptor": { - "version": "0.1.6", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, - "license": "MIT", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-directory": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-docker": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, - "license": "MIT", "bin": { "is-docker": "cli.js" }, @@ -16479,40 +14897,60 @@ } }, "node_modules/is-extendable": { - "version": "0.1.1", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, - "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-extglob": { "version": "2.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "engines": { "node": ">=0.10.0" } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-generator-fn": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/is-generator-function": { "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dev": true, - "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -16525,7 +14963,8 @@ }, "node_modules/is-glob": { "version": "4.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dependencies": { "is-extglob": "^2.1.1" }, @@ -16535,16 +14974,18 @@ }, "node_modules/is-gzip": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", + "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-hexadecimal": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -16552,8 +14993,9 @@ }, "node_modules/is-installed-globally": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", "dev": true, - "license": "MIT", "dependencies": { "global-dirs": "^3.0.0", "is-path-inside": "^3.0.2" @@ -16576,15 +15018,17 @@ }, "node_modules/is-map": { "version": "2.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-nan": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.0", "define-properties": "^1.1.3" @@ -16598,8 +15042,9 @@ }, "node_modules/is-negative-zero": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -16615,14 +15060,16 @@ }, "node_modules/is-number": { "version": "7.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "engines": { "node": ">=0.12.0" } }, "node_modules/is-number-object": { "version": "1.0.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -16635,44 +15082,59 @@ }, "node_modules/is-obj": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-path-cwd": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/is-path-inside": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-plain-object": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true }, "node_modules/is-regex": { "version": "1.1.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -16686,22 +15148,25 @@ }, "node_modules/is-regexp": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-set": { "version": "2.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-shared-array-buffer": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dependencies": { "call-bind": "^1.0.2" }, @@ -16711,8 +15176,9 @@ }, "node_modules/is-stream": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -16722,7 +15188,8 @@ }, "node_modules/is-string": { "version": "1.0.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -16735,15 +15202,17 @@ }, "node_modules/is-supported-regexp-flag": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz", + "integrity": "sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-symbol": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dependencies": { "has-symbols": "^1.0.2" }, @@ -16756,7 +15225,8 @@ }, "node_modules/is-typed-array": { "version": "1.1.10", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -16773,13 +15243,15 @@ }, "node_modules/is-typedarray": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true }, "node_modules/is-unicode-supported": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -16789,15 +15261,17 @@ }, "node_modules/is-weakmap": { "version": "2.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-weakref": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2" }, @@ -16807,7 +15281,8 @@ }, "node_modules/is-weakset": { "version": "2.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -16818,51 +15293,70 @@ }, "node_modules/is-whitespace-character": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz", + "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, "node_modules/is-windows": { - "version": "1.0.2", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz", + "integrity": "sha512-n67eJYmXbniZB7RF4I/FTjK1s6RPOCTxhYrVYLRaCt3lF0mpWZPKr3T2LSZAqyjQsxR2qMmGYXXzK0YWwcPM1Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-word-character": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz", + "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/isarray": { "version": "2.0.5", - "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/isexe": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true }, "node_modules/isobject": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/isomorphic-unfetch": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz", + "integrity": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==", "dev": true, - "license": "MIT", "dependencies": { "node-fetch": "^2.6.1", "unfetch": "^4.2.0" @@ -16870,21 +15364,24 @@ }, "node_modules/isstream": { "version": "0.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "dev": true }, "node_modules/istanbul-lib-coverage": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-hook": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz", + "integrity": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "append-transform": "^2.0.0" }, @@ -16894,8 +15391,9 @@ }, "node_modules/istanbul-lib-instrument": { "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", @@ -16907,18 +15405,11 @@ "node": ">=8" } }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/istanbul-lib-processinfo": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz", + "integrity": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==", "dev": true, - "license": "ISC", "dependencies": { "archy": "^1.0.0", "cross-spawn": "^7.0.3", @@ -16931,10 +15422,32 @@ "node": ">=8" } }, + "node_modules/istanbul-lib-processinfo/node_modules/p-map": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-processinfo/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, "node_modules/istanbul-lib-report": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^3.0.0", @@ -16946,16 +15459,18 @@ }, "node_modules/istanbul-lib-report/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-report/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -16965,8 +15480,9 @@ }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", @@ -16978,8 +15494,9 @@ }, "node_modules/istanbul-reports": { "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" @@ -16990,8 +15507,9 @@ }, "node_modules/jake": { "version": "10.8.5", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", + "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", "dev": true, - "license": "Apache-2.0", "dependencies": { "async": "^3.2.3", "chalk": "^4.0.2", @@ -17002,13 +15520,214 @@ "jake": "bin/cli.js" }, "engines": { - "node": ">=10" + "node": ">=10" + } + }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest/-/jest-28.1.3.tgz", + "integrity": "sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==", + "dev": true, + "dependencies": { + "@jest/core": "^28.1.3", + "@jest/types": "^28.1.3", + "import-local": "^3.0.2", + "jest-cli": "^28.1.3" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-28.1.3.tgz", + "integrity": "sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/jest-changed-files/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-changed-files/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/jest-circus": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-28.1.3.tgz", + "integrity": "sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==", + "dev": true, + "dependencies": { + "@jest/environment": "^28.1.3", + "@jest/expect": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^28.1.3", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-runtime": "^28.1.3", + "jest-snapshot": "^28.1.3", + "jest-util": "^28.1.3", + "p-limit": "^3.1.0", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jake/node_modules/ansi-styles": { + "node_modules/jest-circus/node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true + }, + "node_modules/jest-circus/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -17019,19 +15738,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jake/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/jake/node_modules/chalk": { + "node_modules/jest-circus/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -17043,122 +15754,184 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jake/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/jest-circus/node_modules/diff-sequences": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.1.1.tgz", + "integrity": "sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==", "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jake/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jake/node_modules/has-flag": { + "node_modules/jest-circus/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/jake/node_modules/minimatch": { - "version": "3.1.2", + "node_modules/jest-circus/node_modules/jest-diff": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.3.tgz", + "integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==", "dev": true, - "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" + "chalk": "^4.0.0", + "diff-sequences": "^28.1.1", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" }, "engines": { - "node": "*" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jake/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/jest-circus/node_modules/jest-get-type": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz", + "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-matcher-utils": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz", + "integrity": "sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==", "dev": true, - "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "chalk": "^4.0.0", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" }, "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest": { + "node_modules/jest-circus/node_modules/jest-message-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/core": "^28.1.3", + "@babel/code-frame": "^7.12.13", "@jest/types": "^28.1.3", - "import-local": "^3.0.2", - "jest-cli": "^28.1.3" - }, - "bin": { - "jest": "bin/jest.js" + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-changed-files": { + "node_modules/jest-circus/node_modules/pretty-format": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dev": true, - "license": "MIT", "dependencies": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-circus": { + "node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-28.1.3.tgz", + "integrity": "sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/environment": "^28.1.3", - "@jest/expect": "^28.1.3", + "@jest/core": "^28.1.3", "@jest/test-result": "^28.1.3", "@jest/types": "^28.1.3", - "@types/node": "*", "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^28.1.3", - "jest-matcher-utils": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-runtime": "^28.1.3", - "jest-snapshot": "^28.1.3", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^28.1.3", "jest-util": "^28.1.3", - "p-limit": "^3.1.0", - "pretty-format": "^28.1.3", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "jest-validate": "^28.1.3", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/jest-circus/node_modules/@jest/schemas": { + "node_modules/jest-cli/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -17166,10 +15939,11 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-circus/node_modules/@jest/types": { + "node_modules/jest-cli/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -17182,15 +15956,17 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-circus/node_modules/@sinclair/typebox": { + "node_modules/jest-cli/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, - "node_modules/jest-circus/node_modules/ansi-styles": { + "node_modules/jest-cli/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -17201,10 +15977,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-circus/node_modules/chalk": { + "node_modules/jest-cli/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -17216,34 +15993,34 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/jest-cli/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, - "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=12" } }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-circus/node_modules/has-flag": { + "node_modules/jest-cli/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/jest-circus/node_modules/jest-util": { + "node_modules/jest-cli/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -17256,51 +16033,50 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-circus/node_modules/pretty-format": { - "version": "28.1.3", + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=8" } }, - "node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", + "node_modules/jest-cli/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": ">=12" } }, - "node_modules/jest-circus/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/jest-cli/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=12" } }, "node_modules/jest-config": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-28.1.3.tgz", + "integrity": "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/test-sequencer": "^28.1.3", @@ -17343,8 +16119,9 @@ }, "node_modules/jest-config/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -17354,8 +16131,9 @@ }, "node_modules/jest-config/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -17370,13 +16148,15 @@ }, "node_modules/jest-config/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest-config/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -17387,19 +16167,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-config/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/jest-config/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -17411,26 +16183,11 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-config/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-config/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-config/node_modules/glob": { "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -17448,24 +16205,36 @@ }, "node_modules/jest-config/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, + "node_modules/jest-config/node_modules/jest-get-type": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz", + "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, "node_modules/jest-config/node_modules/jest-regex-util": { "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "dev": true, - "license": "MIT", "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-config/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -17478,21 +16247,11 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-config/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/jest-config/node_modules/pretty-format": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "ansi-regex": "^5.0.1", @@ -17505,8 +16264,9 @@ }, "node_modules/jest-config/node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -17516,13 +16276,15 @@ }, "node_modules/jest-config/node_modules/react-is": { "version": "18.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, "node_modules/jest-config/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -17531,39 +16293,23 @@ } }, "node_modules/jest-diff": { - "version": "28.1.3", - "dev": true, - "license": "MIT", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^28.1.1", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-diff/node_modules/@jest/schemas": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.24.1" + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-diff/node_modules/@sinclair/typebox": { - "version": "0.24.51", - "dev": true, - "license": "MIT" - }, "node_modules/jest-diff/node_modules/ansi-styles": { "version": "4.3.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { "color-convert": "^2.0.1" }, @@ -17576,8 +16322,8 @@ }, "node_modules/jest-diff/node_modules/chalk": { "version": "4.1.2", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -17589,48 +16335,31 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-diff/node_modules/has-flag": { "version": "4.0.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, "node_modules/jest-diff/node_modules/pretty-format": { - "version": "28.1.3", - "dev": true, - "license": "MIT", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", "dependencies": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", + "@jest/schemas": "^29.4.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "engines": { "node": ">=10" }, @@ -17640,13 +16369,13 @@ }, "node_modules/jest-diff/node_modules/react-is": { "version": "18.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" }, "node_modules/jest-diff/node_modules/supports-color": { "version": "7.2.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { "has-flag": "^4.0.0" }, @@ -17656,8 +16385,9 @@ }, "node_modules/jest-docblock": { "version": "28.1.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-28.1.1.tgz", + "integrity": "sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==", "dev": true, - "license": "MIT", "dependencies": { "detect-newline": "^3.0.0" }, @@ -17667,8 +16397,9 @@ }, "node_modules/jest-each": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-28.1.3.tgz", + "integrity": "sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "chalk": "^4.0.0", @@ -17682,8 +16413,9 @@ }, "node_modules/jest-each/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -17693,8 +16425,9 @@ }, "node_modules/jest-each/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -17709,13 +16442,15 @@ }, "node_modules/jest-each/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest-each/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -17728,8 +16463,9 @@ }, "node_modules/jest-each/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -17741,34 +16477,29 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-each/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/jest-each/node_modules/jest-get-type": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz", + "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", "dev": true, - "license": "MIT", "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-each/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -17783,8 +16514,9 @@ }, "node_modules/jest-each/node_modules/pretty-format": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "ansi-regex": "^5.0.1", @@ -17797,8 +16529,9 @@ }, "node_modules/jest-each/node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -17808,13 +16541,15 @@ }, "node_modules/jest-each/node_modules/react-is": { "version": "18.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, "node_modules/jest-each/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -17824,8 +16559,9 @@ }, "node_modules/jest-environment-node": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-28.1.3.tgz", + "integrity": "sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==", "dev": true, - "license": "MIT", "dependencies": { "@jest/environment": "^28.1.3", "@jest/fake-timers": "^28.1.3", @@ -17840,8 +16576,9 @@ }, "node_modules/jest-environment-node/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -17851,8 +16588,9 @@ }, "node_modules/jest-environment-node/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -17867,13 +16605,15 @@ }, "node_modules/jest-environment-node/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest-environment-node/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -17886,8 +16626,9 @@ }, "node_modules/jest-environment-node/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -17899,34 +16640,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-environment-node/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-environment-node/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-environment-node/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-environment-node/node_modules/jest-mock": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.3.tgz", + "integrity": "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*" @@ -17937,8 +16664,9 @@ }, "node_modules/jest-environment-node/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -17953,8 +16681,9 @@ }, "node_modules/jest-environment-node/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -17963,17 +16692,18 @@ } }, "node_modules/jest-get-type": { - "version": "28.0.2", - "dev": true, - "license": "MIT", + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-haste-map": { "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^29.5.0", "@types/graceful-fs": "^4.1.3", @@ -17994,10 +16724,50 @@ "fsevents": "^2.3.2" } }, + "node_modules/jest-haste-map/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-haste-map/node_modules/jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, "node_modules/jest-junit": { "version": "14.0.1", + "resolved": "https://registry.npmjs.org/jest-junit/-/jest-junit-14.0.1.tgz", + "integrity": "sha512-h7/wwzPbllgpQhhVcRzRC76/cc89GlazThoV1fDxcALkf26IIlRsu/AcTG64f4nR2WPE3Cbd+i/sVf+NCUHrWQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "mkdirp": "^1.0.4", "strip-ansi": "^6.0.1", @@ -18008,21 +16778,20 @@ "node": ">=10.12.0" } }, - "node_modules/jest-junit/node_modules/mkdirp": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" + "node_modules/jest-junit/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" } }, "node_modules/jest-leak-detector": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-28.1.3.tgz", + "integrity": "sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==", "dev": true, - "license": "MIT", "dependencies": { "jest-get-type": "^28.0.2", "pretty-format": "^28.1.3" @@ -18033,8 +16802,9 @@ }, "node_modules/jest-leak-detector/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -18044,13 +16814,15 @@ }, "node_modules/jest-leak-detector/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest-leak-detector/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -18058,10 +16830,20 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/jest-leak-detector/node_modules/jest-get-type": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz", + "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, "node_modules/jest-leak-detector/node_modules/pretty-format": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "ansi-regex": "^5.0.1", @@ -18074,43 +16856,28 @@ }, "node_modules/jest-leak-detector/node_modules/react-is": { "version": "18.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, "node_modules/jest-matcher-utils": { - "version": "28.1.3", - "dev": true, - "license": "MIT", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^28.1.3", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/@jest/schemas": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.24.1" + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-matcher-utils/node_modules/@sinclair/typebox": { - "version": "0.24.51", - "dev": true, - "license": "MIT" - }, "node_modules/jest-matcher-utils/node_modules/ansi-styles": { "version": "4.3.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { "color-convert": "^2.0.1" }, @@ -18123,8 +16890,8 @@ }, "node_modules/jest-matcher-utils/node_modules/chalk": { "version": "4.1.2", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18136,48 +16903,31 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-matcher-utils/node_modules/has-flag": { "version": "4.0.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, "node_modules/jest-matcher-utils/node_modules/pretty-format": { - "version": "28.1.3", - "dev": true, - "license": "MIT", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", "dependencies": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", + "@jest/schemas": "^29.4.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "engines": { "node": ">=10" }, @@ -18187,13 +16937,13 @@ }, "node_modules/jest-matcher-utils/node_modules/react-is": { "version": "18.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" }, "node_modules/jest-matcher-utils/node_modules/supports-color": { "version": "7.2.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { "has-flag": "^4.0.0" }, @@ -18202,60 +16952,28 @@ } }, "node_modules/jest-message-util": { - "version": "28.1.3", - "dev": true, - "license": "MIT", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.3", + "@jest/types": "^29.5.0", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^28.1.3", + "pretty-format": "^29.5.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-message-util/node_modules/@jest/schemas": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.24.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-message-util/node_modules/@jest/types": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-message-util/node_modules/@sinclair/typebox": { - "version": "0.24.51", - "dev": true, - "license": "MIT" - }, "node_modules/jest-message-util/node_modules/ansi-styles": { "version": "4.3.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { "color-convert": "^2.0.1" }, @@ -18268,8 +16986,8 @@ }, "node_modules/jest-message-util/node_modules/chalk": { "version": "4.1.2", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18281,48 +16999,31 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-message-util/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-message-util/node_modules/has-flag": { "version": "4.0.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, "node_modules/jest-message-util/node_modules/pretty-format": { - "version": "28.1.3", - "dev": true, - "license": "MIT", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", "dependencies": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", + "@jest/schemas": "^29.4.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "engines": { "node": ">=10" }, @@ -18332,13 +17033,13 @@ }, "node_modules/jest-message-util/node_modules/react-is": { "version": "18.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" }, "node_modules/jest-message-util/node_modules/supports-color": { "version": "7.2.0", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { "has-flag": "^4.0.0" }, @@ -18348,8 +17049,9 @@ }, "node_modules/jest-mock": { "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*" @@ -18360,8 +17062,9 @@ }, "node_modules/jest-mock/node_modules/@jest/types": { "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, - "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", @@ -18375,16 +17078,18 @@ }, "node_modules/jest-mock/node_modules/@types/yargs": { "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/jest-mock/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18397,8 +17102,9 @@ }, "node_modules/jest-mock/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18410,34 +17116,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-mock/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-mock/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-mock/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-mock/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18447,8 +17139,9 @@ }, "node_modules/jest-playwright-preset": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jest-playwright-preset/-/jest-playwright-preset-2.0.0.tgz", + "integrity": "sha512-pV5ruTJJMen3lwshUL4dlSqLlP8z4q9MXqWJkmy+sB6HYfzXoqBHzhl+5hslznhnSVTe4Dwu+reiiwcUJpYUbw==", "dev": true, - "license": "MIT", "dependencies": { "expect-playwright": "^0.8.0", "jest-process-manager": "^0.3.1", @@ -18464,21 +17157,20 @@ "jest-runner": "^28.0.0" } }, - "node_modules/jest-playwright-preset/node_modules/playwright-core": { - "version": "1.32.3", + "node_modules/jest-playwright-preset/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, - "license": "Apache-2.0", "bin": { - "playwright": "cli.js" - }, - "engines": { - "node": ">=14" + "uuid": "dist/bin/uuid" } }, "node_modules/jest-pnp-resolver": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" }, @@ -18493,8 +17185,9 @@ }, "node_modules/jest-process-manager": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/jest-process-manager/-/jest-process-manager-0.3.1.tgz", + "integrity": "sha512-x9W54UgZ7IkzUHgXtnI1x4GKOVjxtwW0CA/7yGbTHtT/YhENO0Lic2yfVyC/gekn7OIEMcQmy0L1r9WLQABfqw==", "dev": true, - "license": "MIT", "dependencies": { "@types/wait-on": "^5.2.0", "chalk": "^4.1.0", @@ -18510,8 +17203,9 @@ }, "node_modules/jest-process-manager/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18524,8 +17218,9 @@ }, "node_modules/jest-process-manager/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18537,34 +17232,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-process-manager/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-process-manager/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-process-manager/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-process-manager/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18574,16 +17255,18 @@ }, "node_modules/jest-regex-util": { "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", "dev": true, - "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-28.1.3.tgz", + "integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", @@ -18601,8 +17284,9 @@ }, "node_modules/jest-resolve-dependencies": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz", + "integrity": "sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==", "dev": true, - "license": "MIT", "dependencies": { "jest-regex-util": "^28.0.2", "jest-snapshot": "^28.1.3" @@ -18613,16 +17297,18 @@ }, "node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": { "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "dev": true, - "license": "MIT", "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-resolve/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -18632,8 +17318,9 @@ }, "node_modules/jest-resolve/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -18648,13 +17335,15 @@ }, "node_modules/jest-resolve/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest-resolve/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18667,8 +17356,9 @@ }, "node_modules/jest-resolve/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18680,34 +17370,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-resolve/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-resolve/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-resolve/node_modules/jest-haste-map": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", + "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/graceful-fs": "^4.1.3", @@ -18730,16 +17406,18 @@ }, "node_modules/jest-resolve/node_modules/jest-regex-util": { "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "dev": true, - "license": "MIT", "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-resolve/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -18752,37 +17430,11 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-resolve/node_modules/jest-worker": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-resolve/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, "node_modules/jest-resolve/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18792,8 +17444,9 @@ }, "node_modules/jest-runner": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-28.1.3.tgz", + "integrity": "sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/console": "^28.1.3", "@jest/environment": "^28.1.3", @@ -18823,8 +17476,9 @@ }, "node_modules/jest-runner/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -18834,8 +17488,9 @@ }, "node_modules/jest-runner/node_modules/@jest/transform": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz", + "integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^28.1.3", @@ -18859,8 +17514,9 @@ }, "node_modules/jest-runner/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -18875,13 +17531,15 @@ }, "node_modules/jest-runner/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest-runner/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18894,8 +17552,9 @@ }, "node_modules/jest-runner/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18907,34 +17566,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-runner/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runner/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-runner/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-runner/node_modules/jest-haste-map": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", + "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/graceful-fs": "^4.1.3", @@ -18955,18 +17600,40 @@ "fsevents": "^2.3.2" } }, + "node_modules/jest-runner/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, "node_modules/jest-runner/node_modules/jest-regex-util": { "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "dev": true, - "license": "MIT", "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-runner/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -18979,46 +17646,44 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-runner/node_modules/jest-worker": { + "node_modules/jest-runner/node_modules/pretty-format": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dev": true, - "license": "MIT", "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-runner/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", + "node_modules/jest-runner/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } + "node_modules/jest-runner/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, "node_modules/jest-runner/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19028,8 +17693,9 @@ }, "node_modules/jest-runtime": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-28.1.3.tgz", + "integrity": "sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==", "dev": true, - "license": "MIT", "dependencies": { "@jest/environment": "^28.1.3", "@jest/fake-timers": "^28.1.3", @@ -19060,8 +17726,9 @@ }, "node_modules/jest-runtime/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -19071,8 +17738,9 @@ }, "node_modules/jest-runtime/node_modules/@jest/transform": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz", + "integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^28.1.3", @@ -19096,8 +17764,9 @@ }, "node_modules/jest-runtime/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -19112,13 +17781,15 @@ }, "node_modules/jest-runtime/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest-runtime/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -19129,19 +17800,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-runtime/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/jest-runtime/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -19153,26 +17816,46 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/jest-runtime/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", + "node_modules/jest-runtime/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "license": "MIT" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/jest-runtime/node_modules/glob": { "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -19190,16 +17873,27 @@ }, "node_modules/jest-runtime/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, + "node_modules/jest-runtime/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, "node_modules/jest-runtime/node_modules/jest-haste-map": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", + "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/graceful-fs": "^4.1.3", @@ -19220,10 +17914,31 @@ "fsevents": "^2.3.2" } }, + "node_modules/jest-runtime/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, "node_modules/jest-runtime/node_modules/jest-mock": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.3.tgz", + "integrity": "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*" @@ -19234,16 +17949,18 @@ }, "node_modules/jest-runtime/node_modules/jest-regex-util": { "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "dev": true, - "license": "MIT", "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-runtime/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -19256,48 +17973,44 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-runtime/node_modules/jest-worker": { + "node_modules/jest-runtime/node_modules/pretty-format": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dev": true, - "license": "MIT", "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-runtime/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", + "node_modules/jest-runtime/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-runtime/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } + "node_modules/jest-runtime/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, "node_modules/jest-runtime/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19307,16 +18020,18 @@ }, "node_modules/jest-serializer-html": { "version": "7.1.0", + "resolved": "https://registry.npmjs.org/jest-serializer-html/-/jest-serializer-html-7.1.0.tgz", + "integrity": "sha512-xYL2qC7kmoYHJo8MYqJkzrl/Fdlx+fat4U1AqYg+kafqwcKPiMkOcjWHPKhueuNEgr+uemhGc+jqXYiwCyRyLA==", "dev": true, - "license": "MIT", "dependencies": { "diffable-html": "^4.1.0" } }, "node_modules/jest-snapshot": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.3.tgz", + "integrity": "sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", @@ -19348,8 +18063,9 @@ }, "node_modules/jest-snapshot/node_modules/@jest/expect-utils": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.3.tgz", + "integrity": "sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==", "dev": true, - "license": "MIT", "dependencies": { "jest-get-type": "^28.0.2" }, @@ -19359,8 +18075,9 @@ }, "node_modules/jest-snapshot/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -19370,8 +18087,9 @@ }, "node_modules/jest-snapshot/node_modules/@jest/transform": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz", + "integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^28.1.3", @@ -19395,8 +18113,9 @@ }, "node_modules/jest-snapshot/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -19411,13 +18130,15 @@ }, "node_modules/jest-snapshot/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest-snapshot/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -19430,8 +18151,9 @@ }, "node_modules/jest-snapshot/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -19443,34 +18165,69 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-snapshot/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/jest-snapshot/node_modules/diff-sequences": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.1.1.tgz", + "integrity": "sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/expect": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/expect/-/expect-28.1.3.tgz", + "integrity": "sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==", "dev": true, - "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@jest/expect-utils": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/jest-diff": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.3.tgz", + "integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^28.1.1", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" }, "engines": { - "node": ">=7.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-snapshot/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-snapshot/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/jest-snapshot/node_modules/jest-get-type": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz", + "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", "dev": true, - "license": "MIT", "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-snapshot/node_modules/jest-haste-map": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", + "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/graceful-fs": "^4.1.3", @@ -19491,61 +18248,84 @@ "fsevents": "^2.3.2" } }, - "node_modules/jest-snapshot/node_modules/jest-regex-util": { - "version": "28.0.2", + "node_modules/jest-snapshot/node_modules/jest-matcher-utils": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz", + "integrity": "sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==", "dev": true, - "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-snapshot/node_modules/jest-util": { + "node_modules/jest-snapshot/node_modules/jest-message-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", "dev": true, - "license": "MIT", "dependencies": { + "@babel/code-frame": "^7.12.13", "@jest/types": "^28.1.3", - "@types/node": "*", + "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", - "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-snapshot/node_modules/jest-worker": { + "node_modules/jest-snapshot/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { + "@jest/types": "^28.1.3", "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-snapshot/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "yallist": "^4.0.0" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/jest-snapshot/node_modules/pretty-format": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "ansi-regex": "^5.0.1", @@ -19558,8 +18338,9 @@ }, "node_modules/jest-snapshot/node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -19569,13 +18350,30 @@ }, "node_modules/jest-snapshot/node_modules/react-is": { "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, - "license": "MIT" + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } }, "node_modules/jest-snapshot/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19583,9 +18381,16 @@ "node": ">=8" } }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/jest-util": { "version": "29.5.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", "dependencies": { "@jest/types": "^29.5.0", "@types/node": "*", @@ -19600,7 +18405,8 @@ }, "node_modules/jest-util/node_modules/ansi-styles": { "version": "4.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { "color-convert": "^2.0.1" }, @@ -19613,7 +18419,8 @@ }, "node_modules/jest-util/node_modules/chalk": { "version": "4.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -19625,30 +18432,18 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, "node_modules/jest-util/node_modules/has-flag": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, "node_modules/jest-util/node_modules/supports-color": { "version": "7.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { "has-flag": "^4.0.0" }, @@ -19658,8 +18453,9 @@ }, "node_modules/jest-validate": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-28.1.3.tgz", + "integrity": "sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "camelcase": "^6.2.0", @@ -19674,8 +18470,9 @@ }, "node_modules/jest-validate/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -19685,8 +18482,9 @@ }, "node_modules/jest-validate/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -19701,13 +18499,15 @@ }, "node_modules/jest-validate/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest-validate/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -19720,8 +18520,9 @@ }, "node_modules/jest-validate/node_modules/camelcase": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -19731,8 +18532,9 @@ }, "node_modules/jest-validate/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -19744,34 +18546,29 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-validate/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/jest-validate/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-validate/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/jest-validate/node_modules/jest-get-type": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz", + "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", "dev": true, - "license": "MIT", "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-validate/node_modules/pretty-format": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "ansi-regex": "^5.0.1", @@ -19784,8 +18581,9 @@ }, "node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -19795,13 +18593,15 @@ }, "node_modules/jest-validate/node_modules/react-is": { "version": "18.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, "node_modules/jest-validate/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19811,8 +18611,9 @@ }, "node_modules/jest-watch-typeahead": { "version": "2.2.2", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-2.2.2.tgz", + "integrity": "sha512-+QgOFW4o5Xlgd6jGS5X37i08tuuXNW8X0CV9WNFi+3n8ExCIP+E1melYhvYLjv5fE6D0yyzk74vsSO8I6GqtvQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-escapes": "^6.0.0", "chalk": "^5.2.0", @@ -19831,8 +18632,9 @@ }, "node_modules/jest-watch-typeahead/node_modules/@jest/console": { "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^29.5.0", "@types/node": "*", @@ -19847,8 +18649,9 @@ }, "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -19862,16 +18665,18 @@ }, "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/console": "^29.5.0", "@jest/types": "^29.5.0", @@ -19883,9 +18688,10 @@ } }, "node_modules/jest-watch-typeahead/node_modules/ansi-escapes": { - "version": "6.1.0", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", + "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", "dev": true, - "license": "MIT", "dependencies": { "type-fest": "^3.0.0" }, @@ -19896,10 +18702,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/jest-watch-typeahead/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -19912,8 +18731,9 @@ }, "node_modules/jest-watch-typeahead/node_modules/chalk": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", + "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", "dev": true, - "license": "MIT", "engines": { "node": "^12.17.0 || ^14.13 || >=16.0.0" }, @@ -19921,26 +18741,11 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-watch-typeahead/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-watch-typeahead/node_modules/emittery": { "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=12" }, @@ -19950,58 +18755,18 @@ }, "node_modules/jest-watch-typeahead/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { - "version": "29.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { - "version": "3.0.0", - "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/test-result": "^29.5.0", "@jest/types": "^29.5.0", @@ -20018,8 +18783,9 @@ }, "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/ansi-escapes": { "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, - "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, @@ -20030,10 +18796,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -20047,8 +18823,9 @@ }, "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, - "license": "MIT", "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" @@ -20059,59 +18836,33 @@ }, "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/type-fest": { - "version": "0.21.3", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-watch-typeahead/node_modules/pretty-format": { - "version": "29.5.0", - "dev": true, - "license": "MIT", "dependencies": { - "@jest/schemas": "^29.4.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-watch-typeahead/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, "node_modules/jest-watch-typeahead/node_modules/slash": { - "version": "5.0.0", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, - "license": "MIT", "engines": { "node": ">=14.16" }, @@ -20121,8 +18872,9 @@ }, "node_modules/jest-watch-typeahead/node_modules/string-length": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", "dev": true, - "license": "MIT", "dependencies": { "char-regex": "^2.0.0", "strip-ansi": "^7.0.1" @@ -20136,16 +18888,18 @@ }, "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", "dev": true, - "license": "MIT", "engines": { "node": ">=12.20" } }, "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -20156,21 +18910,11 @@ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, "node_modules/jest-watch-typeahead/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -20179,20 +18923,25 @@ } }, "node_modules/jest-watch-typeahead/node_modules/type-fest": { - "version": "3.8.0", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.10.0.tgz", + "integrity": "sha512-hmAPf1datm+gt3c2mvu0sJyhFy6lTkIGf0GzyaZWxRLnabQfPUqg6tF95RPg6sLxKI7nFLGdFxBcf2/7+GXI+A==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" + }, + "peerDependencies": { + "typescript": ">=4.7.0" } }, "node_modules/jest-watcher": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", "dev": true, - "license": "MIT", "dependencies": { "@jest/test-result": "^28.1.3", "@jest/types": "^28.1.3", @@ -20209,8 +18958,9 @@ }, "node_modules/jest-watcher/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -20220,8 +18970,9 @@ }, "node_modules/jest-watcher/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -20236,13 +18987,15 @@ }, "node_modules/jest-watcher/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest-watcher/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -20255,8 +19008,9 @@ }, "node_modules/jest-watcher/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -20268,34 +19022,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-watcher/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-watcher/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest-watcher/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-watcher/node_modules/jest-util": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^28.1.3", "@types/node": "*", @@ -20310,8 +19050,9 @@ }, "node_modules/jest-watcher/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -20320,31 +19061,33 @@ } }, "node_modules/jest-worker": { - "version": "29.5.0", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*", - "jest-util": "^29.5.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-worker/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -20357,8 +19100,9 @@ }, "node_modules/jest/node_modules/@jest/schemas": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dev": true, - "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.24.1" }, @@ -20368,8 +19112,9 @@ }, "node_modules/jest/node_modules/@jest/types": { "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -20384,13 +19129,15 @@ }, "node_modules/jest/node_modules/@sinclair/typebox": { "version": "0.24.51", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true }, "node_modules/jest/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -20403,8 +19150,9 @@ }, "node_modules/jest/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -20416,96 +19164,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest/node_modules/cliui": { - "version": "8.0.1", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/jest/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jest/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/jest/node_modules/jest-cli": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/core": "^28.1.3", - "@jest/test-result": "^28.1.3", - "@jest/types": "^28.1.3", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^28.1.3", - "jest-util": "^28.1.3", - "jest-validate": "^28.1.3", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest/node_modules/jest-util": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, "node_modules/jest/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -20513,35 +19185,11 @@ "node": ">=8" } }, - "node_modules/jest/node_modules/yargs": { - "version": "17.7.1", - "dev": true, - "license": "MIT", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/jest/node_modules/yargs-parser": { - "version": "21.1.1", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=12" - } - }, "node_modules/joi": { - "version": "17.9.1", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -20553,7 +19201,7 @@ "node_modules/js-dataverse": { "version": "2.0.0", "resolved": "file:js-dataverse-2.0.0.tgz", - "integrity": "sha512-MokNQ/nVgB3J+hDVFxFlV9O/gZELh66sMcKPzLQ+bKhBLHdv8yAUeLQBRBEA5y7ycqEQL3bwMOuc2mqNGNRq0Q==", + "integrity": "sha512-a/eExE2FtWjs2CetthAJpq1uxZwrQkcKN/7nCjr1FJNLlPNf2G9h1bZvb7k91zlM0H5sYbR5hZNknoZDx8uxlg==", "dev": true, "license": "MIT", "dependencies": { @@ -20563,40 +19211,9 @@ } }, "node_modules/js-dataverse/node_modules/@types/node": { - "version": "18.16.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.0.tgz", - "integrity": "sha512-BsAaKhB+7X+H4GnSjGhJG9Qi8Tw+inU9nJDwmD5CgOmBLEI6ArdhikpLX7DjbjDRDTbqZzU2LSQNZg8WGPiSZQ==", - "dev": true - }, - "node_modules/js-dataverse/node_modules/axios": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.3.6.tgz", - "integrity": "sha512-PEcdkk7JcdPiMDkvM4K6ZBRYq9keuVJsToxm2zQIM70Qqo2WHTdJZMXcG9X+RmRp2VPNUQC8W1RAGbgt6b1yMg==", - "dev": true, - "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/js-dataverse/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/js-dataverse/node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "version": "18.16.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.7.tgz", + "integrity": "sha512-MFg7ua/bRtnA1hYE3pVyWxGd/r7aMqjNOdHvlSsXV3n8iaeGKkOaPzpJh6/ovf4bEXWcojkeMJpTsq3mzXW4IQ==", "dev": true }, "node_modules/js-levenshtein": { @@ -20610,8 +19227,9 @@ }, "node_modules/js-sdsl": { "version": "4.4.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", + "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/js-sdsl" @@ -20619,12 +19237,14 @@ }, "node_modules/js-tokens": { "version": "4.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "node_modules/js-yaml": { "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, - "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -20635,13 +19255,15 @@ }, "node_modules/jsbn": { "version": "0.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "dev": true }, "node_modules/jscodeshift": { "version": "0.14.0", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", + "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.13.16", "@babel/parser": "^7.13.16", @@ -20672,8 +19294,9 @@ }, "node_modules/jscodeshift/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -20686,8 +19309,9 @@ }, "node_modules/jscodeshift/node_modules/ast-types": { "version": "0.15.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", + "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.1" }, @@ -20697,8 +19321,9 @@ }, "node_modules/jscodeshift/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -20710,34 +19335,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jscodeshift/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jscodeshift/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/jscodeshift/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jscodeshift/node_modules/recast": { "version": "0.21.5", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", + "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", "dev": true, - "license": "MIT", "dependencies": { "ast-types": "0.15.2", "esprima": "~4.0.0", @@ -20750,8 +19361,9 @@ }, "node_modules/jscodeshift/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -20761,8 +19373,9 @@ }, "node_modules/jscodeshift/node_modules/write-file-atomic": { "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", "dev": true, - "license": "ISC", "dependencies": { "graceful-fs": "^4.1.11", "imurmurhash": "^0.1.4", @@ -20770,17 +19383,17 @@ } }, "node_modules/jsdom": { - "version": "21.1.0", + "version": "21.1.2", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-21.1.2.tgz", + "integrity": "sha512-sCpFmK2jv+1sjff4u7fzft+pUh2KSUbUrEHYHyfSIbGTIcmnjyp83qg6qLwdJ/I3LpTXx33ACxeRL7Lsyc6lGQ==", "dev": true, - "license": "MIT", "dependencies": { "abab": "^2.0.6", - "acorn": "^8.8.1", + "acorn": "^8.8.2", "acorn-globals": "^7.0.0", - "cssom": "^0.5.0", - "cssstyle": "^2.3.0", - "data-urls": "^3.0.2", - "decimal.js": "^10.4.2", + "cssstyle": "^3.0.0", + "data-urls": "^4.0.0", + "decimal.js": "^10.4.3", "domexception": "^4.0.0", "escodegen": "^2.0.0", "form-data": "^4.0.0", @@ -20788,8 +19401,9 @@ "http-proxy-agent": "^5.0.0", "https-proxy-agent": "^5.0.1", "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.2", - "parse5": "^7.1.1", + "nwsapi": "^2.2.4", + "parse5": "^7.1.2", + "rrweb-cssom": "^0.6.0", "saxes": "^6.0.0", "symbol-tree": "^3.2.4", "tough-cookie": "^4.1.2", @@ -20797,8 +19411,8 @@ "webidl-conversions": "^7.0.0", "whatwg-encoding": "^2.0.0", "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0", - "ws": "^8.11.0", + "whatwg-url": "^12.0.1", + "ws": "^8.13.0", "xml-name-validator": "^4.0.0" }, "engines": { @@ -20813,21 +19427,23 @@ } } }, - "node_modules/jsdom/node_modules/entities": { - "version": "4.5.0", + "node_modules/jsdom/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, "node_modules/jsdom/node_modules/form-data": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, - "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -20837,21 +19453,11 @@ "node": ">= 6" } }, - "node_modules/jsdom/node_modules/parse5": { - "version": "7.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, "node_modules/jsdom/node_modules/tough-cookie": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", @@ -20864,16 +19470,18 @@ }, "node_modules/jsdom/node_modules/universalify": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 4.0.0" } }, "node_modules/jsesc": { "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, - "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, @@ -20883,38 +19491,45 @@ }, "node_modules/json-parse-better-errors": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true }, "node_modules/json-schema": { "version": "0.4.0", - "dev": true, - "license": "(AFL-2.1 OR BSD-3-Clause)" + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true }, "node_modules/json-schema-traverse": { "version": "0.4.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true }, "node_modules/json-stringify-safe": { "version": "5.0.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true }, "node_modules/json5": { "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "license": "MIT", "bin": { "json5": "lib/cli.js" }, @@ -20924,13 +19539,15 @@ }, "node_modules/jsonc-parser": { "version": "3.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true }, "node_modules/jsonfile": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, - "license": "MIT", "dependencies": { "universalify": "^2.0.0" }, @@ -20940,11 +19557,12 @@ }, "node_modules/jsprim": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", + "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", "dev": true, "engines": [ "node >=0.6.0" ], - "license": "MIT", "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", @@ -20954,8 +19572,9 @@ }, "node_modules/jsx-ast-utils": { "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", "dev": true, - "license": "MIT", "dependencies": { "array-includes": "^3.1.5", "object.assign": "^4.1.3" @@ -20966,42 +19585,48 @@ }, "node_modules/just-extend": { "version": "4.2.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-4.2.1.tgz", + "integrity": "sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==", + "dev": true }, "node_modules/kind-of": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/kleur": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/known-css-properties": { - "version": "0.26.0", - "dev": true, - "license": "MIT" + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.27.0.tgz", + "integrity": "sha512-uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg==", + "dev": true }, "node_modules/lazy-ass": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", "dev": true, - "license": "MIT", "engines": { "node": "> 0.8" } }, "node_modules/lazy-universal-dotenv": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz", + "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==", "dev": true, - "license": "Apache-2.0", "dependencies": { "app-root-dir": "^1.0.2", "dotenv": "^16.0.0", @@ -21013,19 +19638,21 @@ }, "node_modules/leven": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/levn": { - "version": "0.3.0", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, - "license": "MIT", "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { "node": ">= 0.8.0" @@ -21033,13 +19660,15 @@ }, "node_modules/lines-and-columns": { "version": "1.2.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true }, "node_modules/listr2": { "version": "3.14.0", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", + "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", "dev": true, - "license": "MIT", "dependencies": { "cli-truncate": "^2.1.0", "colorette": "^2.0.16", @@ -21062,32 +19691,11 @@ } } }, - "node_modules/listr2/node_modules/p-map": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/listr2/node_modules/rxjs": { - "version": "7.8.0", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.1.0" - } - }, "node_modules/load-json-file": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", "dev": true, - "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^4.0.0", @@ -21100,8 +19708,9 @@ }, "node_modules/load-json-file/node_modules/parse-json": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, - "license": "MIT", "dependencies": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" @@ -21112,24 +19721,27 @@ }, "node_modules/load-json-file/node_modules/pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/load-json-file/node_modules/strip-bom": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/local-pkg": { "version": "0.4.3", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz", + "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", "dev": true, - "license": "MIT", "engines": { "node": ">=14" }, @@ -21139,8 +19751,9 @@ }, "node_modules/locate-path": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, @@ -21153,42 +19766,50 @@ }, "node_modules/lodash": { "version": "4.17.21", - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "node_modules/lodash.debounce": { "version": "4.0.8", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true }, "node_modules/lodash.flattendeep": { "version": "4.4.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==", + "dev": true }, "node_modules/lodash.get": { "version": "4.4.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", + "dev": true }, "node_modules/lodash.merge": { "version": "4.6.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true }, "node_modules/lodash.once": { "version": "4.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", + "dev": true }, "node_modules/lodash.truncate": { "version": "4.4.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "dev": true }, "node_modules/log-symbols": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" @@ -21202,8 +19823,9 @@ }, "node_modules/log-symbols/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -21216,8 +19838,9 @@ }, "node_modules/log-symbols/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -21229,34 +19852,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/log-symbols/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/log-symbols/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -21266,8 +19875,9 @@ }, "node_modules/log-update": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", "dev": true, - "license": "MIT", "dependencies": { "ansi-escapes": "^4.3.0", "cli-cursor": "^3.1.0", @@ -21283,8 +19893,9 @@ }, "node_modules/log-update/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -21295,26 +19906,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/log-update/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/log-update/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/log-update/node_modules/slice-ansi": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", @@ -21329,8 +19925,9 @@ }, "node_modules/log-update/node_modules/wrap-ansi": { "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -21342,8 +19939,9 @@ }, "node_modules/longest-streak": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -21351,7 +19949,8 @@ }, "node_modules/loose-envify": { "version": "1.4.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, @@ -21361,8 +19960,9 @@ }, "node_modules/loud-rejection": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==", "dev": true, - "license": "MIT", "dependencies": { "currently-unhandled": "^0.4.1", "signal-exit": "^3.0.0" @@ -21373,34 +19973,35 @@ }, "node_modules/loupe": { "version": "2.3.6", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz", + "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==", "dev": true, - "license": "MIT", "dependencies": { "get-func-name": "^2.0.0" } }, "node_modules/lru-cache": { - "version": "6.0.0", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, - "license": "ISC", "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "yallist": "^3.0.2" } }, "node_modules/lz-string": { "version": "1.5.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", "bin": { "lz-string": "bin/bin.js" } }, "node_modules/magic-string": { "version": "0.27.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", + "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", "dev": true, - "license": "MIT", "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.13" }, @@ -21410,8 +20011,9 @@ }, "node_modules/make-dir": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, - "license": "MIT", "dependencies": { "semver": "^6.0.0" }, @@ -21422,34 +20024,29 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/makeerror": { "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "tmpl": "1.0.5" } }, "node_modules/map-cache": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/map-obj": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -21459,13 +20056,15 @@ }, "node_modules/map-or-similar": { "version": "1.5.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", + "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==", + "dev": true }, "node_modules/map-visit": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", "dev": true, - "license": "MIT", "dependencies": { "object-visit": "^1.0.0" }, @@ -21475,8 +20074,9 @@ }, "node_modules/markdown-escapes": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz", + "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -21484,13 +20084,15 @@ }, "node_modules/markdown-table": { "version": "1.1.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.3.tgz", + "integrity": "sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==", + "dev": true }, "node_modules/markdown-to-jsx": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz", + "integrity": "sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10" }, @@ -21500,8 +20102,9 @@ }, "node_modules/mathml-tag-names": { "version": "2.1.3", + "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", + "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -21509,8 +20112,9 @@ }, "node_modules/mdast-util-compact": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mdast-util-compact/-/mdast-util-compact-1.0.4.tgz", + "integrity": "sha512-3YDMQHI5vRiS2uygEFYaqckibpJtKq5Sj2c8JioeOQBU6INpKbdWzfyLqFFnDwEcEnRFIdMsguzs5pC1Jp4Isg==", "dev": true, - "license": "MIT", "dependencies": { "unist-util-visit": "^1.1.0" }, @@ -21521,29 +20125,33 @@ }, "node_modules/mdast-util-compact/node_modules/unist-util-is": { "version": "3.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz", + "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==", + "dev": true }, "node_modules/mdast-util-compact/node_modules/unist-util-visit": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz", + "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==", "dev": true, - "license": "MIT", "dependencies": { "unist-util-visit-parents": "^2.0.0" } }, "node_modules/mdast-util-compact/node_modules/unist-util-visit-parents": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz", + "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==", "dev": true, - "license": "MIT", "dependencies": { "unist-util-is": "^3.0.0" } }, "node_modules/mdast-util-definitions": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", + "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", "dev": true, - "license": "MIT", "dependencies": { "unist-util-visit": "^2.0.0" }, @@ -21554,8 +20162,9 @@ }, "node_modules/mdast-util-to-string": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -21563,29 +20172,33 @@ }, "node_modules/mdn-data": { "version": "2.0.30", - "dev": true, - "license": "CC0-1.0" + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true }, "node_modules/media-typer": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/memoizerific": { "version": "1.11.3", + "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", + "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", "dev": true, - "license": "MIT", "dependencies": { "map-or-similar": "^1.5.0" } }, "node_modules/meow": { "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", @@ -21609,8 +20222,9 @@ }, "node_modules/meow/node_modules/hosted-git-info": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, - "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" }, @@ -21618,10 +20232,23 @@ "node": ">=10" } }, + "node_modules/meow/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/meow/node_modules/normalize-package-data": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^4.0.1", "is-core-module": "^2.5.0", @@ -21632,10 +20259,26 @@ "node": ">=10" } }, + "node_modules/meow/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/meow/node_modules/type-fest": { "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -21643,35 +20286,46 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/meow/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/merge-descriptors": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true }, "node_modules/merge-stream": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true }, "node_modules/merge2": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/methods": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/micromatch": { "version": "4.0.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dependencies": { "braces": "^3.0.2", "picomatch": "^2.3.1" @@ -21682,8 +20336,9 @@ }, "node_modules/mime": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, - "license": "MIT", "bin": { "mime": "cli.js" }, @@ -21693,16 +20348,18 @@ }, "node_modules/mime-db": { "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, - "license": "MIT", "dependencies": { "mime-db": "1.52.0" }, @@ -21712,42 +20369,47 @@ }, "node_modules/mimic-fn": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/min-indent": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "engines": { "node": ">=4" } }, "node_modules/minimatch": { - "version": "5.1.6", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "license": "ISC", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=10" + "node": "*" } }, "node_modules/minimist": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, - "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/minimist-options": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, - "license": "MIT", "dependencies": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0", @@ -21757,26 +20419,20 @@ "node": ">= 6" } }, - "node_modules/minimist-options/node_modules/is-plain-obj": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/minipass": { - "version": "4.2.8", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, - "license": "ISC", "engines": { "node": ">=8" } }, "node_modules/minizlib": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, - "license": "MIT", "dependencies": { "minipass": "^3.0.0", "yallist": "^4.0.0" @@ -21787,8 +20443,9 @@ }, "node_modules/minizlib/node_modules/minipass": { "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, @@ -21796,10 +20453,17 @@ "node": ">=8" } }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/mixin-deep": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, - "license": "MIT", "dependencies": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" @@ -21808,48 +20472,29 @@ "node": ">=0.10.0" } }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/mkdirp": { - "version": "0.5.6", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.6" - }, "bin": { "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/mkdirp-classic": { "version": "0.5.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true }, "node_modules/mlly": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.2.0.tgz", + "integrity": "sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==", "dev": true, - "license": "MIT", "dependencies": { "acorn": "^8.8.2", "pathe": "^1.1.0", @@ -21857,18 +20502,32 @@ "ufo": "^1.1.1" } }, + "node_modules/mlly/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/mri": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/ms": { "version": "2.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "node_modules/msw": { "version": "1.2.1", @@ -21973,24 +20632,6 @@ "node": ">=12" } }, - "node_modules/msw/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/msw/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/msw/node_modules/cookie": { "version": "0.4.2", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", @@ -22056,8 +20697,9 @@ }, "node_modules/mustache": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", + "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", "dev": true, - "license": "MIT", "bin": { "mustache": "bin/mustache" } @@ -22070,6 +20712,8 @@ }, "node_modules/nanoid": { "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", "dev": true, "funding": [ { @@ -22077,7 +20721,6 @@ "url": "https://github.com/sponsors/ai" } ], - "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -22087,8 +20730,9 @@ }, "node_modules/nanomatch": { "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, - "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -22106,33 +20750,47 @@ "node": ">=0.10.0" } }, + "node_modules/nanomatch/node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/natural-compare": { "version": "1.4.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true }, "node_modules/natural-compare-lite": { "version": "1.4.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true }, "node_modules/negotiator": { "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/neo-async": { "version": "2.6.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true }, "node_modules/nise": { "version": "5.1.4", + "resolved": "https://registry.npmjs.org/nise/-/nise-5.1.4.tgz", + "integrity": "sha512-8+Ib8rRJ4L0o3kfmyVCL7gzrohyDe0cMFTBa2d364yIrEGMEoetznKJx899YxjybU6bL9SQkYPSBBs1gyYs8Xg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^2.0.0", "@sinonjs/fake-timers": "^10.0.2", @@ -22143,37 +20801,42 @@ }, "node_modules/nise/node_modules/@sinonjs/commons": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } }, "node_modules/nise/node_modules/@sinonjs/fake-timers": { "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz", + "integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^2.0.0" } }, "node_modules/nise/node_modules/isarray": { "version": "0.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true }, "node_modules/nise/node_modules/path-to-regexp": { "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", "dev": true, - "license": "MIT", "dependencies": { "isarray": "0.0.1" } }, "node_modules/node-dir": { "version": "0.1.17", + "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", + "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", "dev": true, - "license": "MIT", "dependencies": { "minimatch": "^3.0.2" }, @@ -22181,29 +20844,11 @@ "node": ">= 0.10.5" } }, - "node_modules/node-dir/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/node-dir/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/node-fetch": { - "version": "2.6.7", - "license": "MIT", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", + "dev": true, "dependencies": { "whatwg-url": "^5.0.0" }, @@ -22220,21 +20865,28 @@ } }, "node_modules/node-fetch-native": { - "version": "1.1.0", - "dev": true, - "license": "MIT" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.1.1.tgz", + "integrity": "sha512-9VvspTSUp2Sxbl+9vbZTlFGq9lHwE8GDVVekxx6YsNd1YH59sb3Ba8v3Y3cD8PkLNcileGGcA21PFjVl0jzDaw==", + "dev": true }, "node_modules/node-fetch/node_modules/tr46": { "version": "0.0.3", - "license": "MIT" + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true }, "node_modules/node-fetch/node_modules/webidl-conversions": { "version": "3.0.1", - "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true }, "node_modules/node-fetch/node_modules/whatwg-url": { "version": "5.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" @@ -22242,13 +20894,15 @@ }, "node_modules/node-int64": { "version": "0.4.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true }, "node_modules/node-preload": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz", + "integrity": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==", "dev": true, - "license": "MIT", "dependencies": { "process-on-spawn": "^1.0.0" }, @@ -22258,13 +20912,15 @@ }, "node_modules/node-releases": { "version": "2.0.10", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", + "dev": true }, "node_modules/normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -22274,36 +20930,41 @@ }, "node_modules/normalize-package-data/node_modules/semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/normalize-path": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-range": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-selector": { "version": "0.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz", + "integrity": "sha512-dxvWdI8gw6eAvk9BlPffgEoGfM7AdijoCwOEJge3e3ulT2XLgmU7KvvxprOaCu05Q1uGRHmOhHe1r6emZoKyFw==", + "dev": true }, "node_modules/npm-run-path": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^3.0.0" }, @@ -22313,8 +20974,9 @@ }, "node_modules/npmlog": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", "dev": true, - "license": "ISC", "dependencies": { "are-we-there-yet": "^2.0.0", "console-control-strings": "^1.1.0", @@ -22324,18 +20986,21 @@ }, "node_modules/num2fraction": { "version": "1.2.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==", + "dev": true }, "node_modules/nwsapi": { "version": "2.2.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.4.tgz", + "integrity": "sha512-NHj4rzRo0tQdijE9ZqAx6kYDcoRwYwSYzCA8MY3JzfxlrvEU0jhnhJT9BhqhJs7I/dKcrDm6TyulaRqZPIhN5g==", + "dev": true }, "node_modules/nyc": { "version": "15.1.0", + "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz", + "integrity": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==", "dev": true, - "license": "ISC", "dependencies": { "@istanbuljs/load-nyc-config": "^1.0.0", "@istanbuljs/schema": "^0.1.2", @@ -22374,8 +21039,9 @@ }, "node_modules/nyc/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -22386,61 +21052,22 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/nyc/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/nyc/node_modules/cliui": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", "dev": true, - "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^6.2.0" } }, - "node_modules/nyc/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/nyc/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/nyc/node_modules/find-cache-dir": { - "version": "3.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" - } - }, "node_modules/nyc/node_modules/find-up": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -22451,8 +21078,9 @@ }, "node_modules/nyc/node_modules/glob": { "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -22470,8 +21098,9 @@ }, "node_modules/nyc/node_modules/istanbul-lib-instrument": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.7.5", "@istanbuljs/schema": "^0.1.2", @@ -22484,8 +21113,9 @@ }, "node_modules/nyc/node_modules/locate-path": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -22493,21 +21123,11 @@ "node": ">=8" } }, - "node_modules/nyc/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/nyc/node_modules/p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -22520,8 +21140,9 @@ }, "node_modules/nyc/node_modules/p-locate": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -22529,29 +21150,23 @@ "node": ">=8" } }, - "node_modules/nyc/node_modules/pkg-dir": { - "version": "4.2.0", + "node_modules/nyc/node_modules/p-map": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", "dev": true, - "license": "MIT", "dependencies": { - "find-up": "^4.0.0" + "aggregate-error": "^3.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/nyc/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/nyc/node_modules/wrap-ansi": { "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -22563,13 +21178,15 @@ }, "node_modules/nyc/node_modules/y18n": { "version": "4.0.3", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true }, "node_modules/nyc/node_modules/yargs": { "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", "dev": true, - "license": "MIT", "dependencies": { "cliui": "^6.0.0", "decamelize": "^1.2.0", @@ -22589,8 +21206,9 @@ }, "node_modules/nyc/node_modules/yargs-parser": { "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", "dev": true, - "license": "ISC", "dependencies": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" @@ -22601,15 +21219,17 @@ }, "node_modules/object-assign": { "version": "4.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { "node": ">=0.10.0" } }, "node_modules/object-copy": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", "dev": true, - "license": "MIT", "dependencies": { "copy-descriptor": "^0.1.0", "define-property": "^0.2.5", @@ -22621,8 +21241,9 @@ }, "node_modules/object-copy/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -22630,10 +21251,64 @@ "node": ">=0.10.0" } }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/object-copy/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -22643,14 +21318,16 @@ }, "node_modules/object-inspect": { "version": "1.12.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object-is": { "version": "1.1.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -22664,15 +21341,17 @@ }, "node_modules/object-keys": { "version": "1.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "engines": { "node": ">= 0.4" } }, "node_modules/object-visit": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", "dev": true, - "license": "MIT", "dependencies": { "isobject": "^3.0.0" }, @@ -22682,7 +21361,8 @@ }, "node_modules/object.assign": { "version": "4.1.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -22698,8 +21378,9 @@ }, "node_modules/object.entries": { "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -22711,8 +21392,9 @@ }, "node_modules/object.fromentries": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -22727,8 +21409,9 @@ }, "node_modules/object.hasown": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", "dev": true, - "license": "MIT", "dependencies": { "define-properties": "^1.1.4", "es-abstract": "^1.20.4" @@ -22739,8 +21422,9 @@ }, "node_modules/object.pick": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "dev": true, - "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -22750,8 +21434,9 @@ }, "node_modules/object.values": { "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -22766,8 +21451,9 @@ }, "node_modules/on-finished": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, - "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -22777,24 +21463,27 @@ }, "node_modules/on-headers": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/once": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "license": "ISC", "dependencies": { "wrappy": "1" } }, "node_modules/onetime": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, - "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" }, @@ -22807,8 +21496,9 @@ }, "node_modules/open": { "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, - "license": "MIT", "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", @@ -22821,21 +21511,11 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/open/node_modules/is-wsl": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/optionator": { "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, - "license": "MIT", "dependencies": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", @@ -22848,6 +21528,40 @@ "node": ">= 0.8.0" } }, + "node_modules/optionator/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/optionator/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/optionator/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/ora": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", @@ -22902,24 +21616,6 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/ora/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -22943,14 +21639,17 @@ }, "node_modules/os-homedir": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/os-shim": { "version": "0.1.3", + "resolved": "https://registry.npmjs.org/os-shim/-/os-shim-0.1.3.tgz", + "integrity": "sha512-jd0cvB8qQ5uVt0lvCIexBaROw1KyKm5sbulg2fWOHjETisuCzWyt+eTZKEMs8v6HwzoGs8xik26jg7eCM6pS+A==", "dev": true, "engines": { "node": ">= 0.4.0" @@ -22967,8 +21666,9 @@ }, "node_modules/ospath": { "version": "1.2.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", + "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", + "dev": true }, "node_modules/outvariant": { "version": "1.4.0", @@ -22978,8 +21678,9 @@ }, "node_modules/p-limit": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -22992,8 +21693,9 @@ }, "node_modules/p-locate": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, @@ -23005,28 +21707,34 @@ } }, "node_modules/p-map": { - "version": "3.0.0", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dev": true, - "license": "MIT", "dependencies": { "aggregate-error": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-try": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/package-hash": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz", + "integrity": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==", "dev": true, - "license": "ISC", "dependencies": { "graceful-fs": "^4.1.15", "hasha": "^5.0.0", @@ -23037,10 +21745,17 @@ "node": ">=8" } }, + "node_modules/pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "dev": true + }, "node_modules/parent-module": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, @@ -23048,10 +21763,25 @@ "node": ">=6" } }, + "node_modules/parse-entities": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.2.tgz", + "integrity": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==", + "dev": true, + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, "node_modules/parse-json": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -23067,92 +21797,129 @@ }, "node_modules/parse-passwd": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/parseurl": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/pascalcase": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/path-dirname": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true }, "node_modules/path-exists": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-is-absolute": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/path-key": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-parse": { "version": "1.0.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true }, "node_modules/path-to-regexp": { "version": "0.1.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true }, "node_modules/path-type": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/pathe": { "version": "1.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz", + "integrity": "sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==", + "dev": true }, "node_modules/pathval": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", "dev": true, - "license": "MIT", "engines": { "node": "*" } }, "node_modules/peek-stream": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", + "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", "dev": true, - "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "duplexify": "^3.5.0", @@ -23161,22 +21928,26 @@ }, "node_modules/pend": { "version": "1.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true }, "node_modules/performance-now": { "version": "2.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "dev": true }, "node_modules/picocolors": { "version": "1.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true }, "node_modules/picomatch": { "version": "2.3.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "engines": { "node": ">=8.6" }, @@ -23185,25 +21956,28 @@ } }, "node_modules/pify": { - "version": "4.0.1", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, - "license": "MIT", "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, "node_modules/pirates": { "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/pkg-dir": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", + "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", "dev": true, - "license": "MIT", "dependencies": { "find-up": "^5.0.0" }, @@ -23212,22 +21986,24 @@ } }, "node_modules/pkg-types": { - "version": "1.0.2", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.3.tgz", + "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", "dev": true, - "license": "MIT", "dependencies": { "jsonc-parser": "^3.2.0", - "mlly": "^1.1.1", + "mlly": "^1.2.0", "pathe": "^1.1.0" } }, "node_modules/playwright": { - "version": "1.32.3", + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.33.0.tgz", + "integrity": "sha512-+zzU3V2TslRX2ETBRgQKsKytYBkJeLZ2xzUj4JohnZnxQnivoUvOvNbRBYWSYykQTO0Y4zb8NwZTYFUO+EpPBQ==", "dev": true, "hasInstallScript": true, - "license": "Apache-2.0", "dependencies": { - "playwright-core": "1.32.3" + "playwright-core": "1.33.0" }, "bin": { "playwright": "cli.js" @@ -23236,10 +22012,11 @@ "node": ">=14" } }, - "node_modules/playwright/node_modules/playwright-core": { - "version": "1.32.3", + "node_modules/playwright-core": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.33.0.tgz", + "integrity": "sha512-aizyPE1Cj62vAECdph1iaMILpT0WUDCq3E6rW6I+dleSbBoGbktvJtzS6VHkZ4DKNEOG9qJpiom/ZxO+S15LAw==", "dev": true, - "license": "Apache-2.0", "bin": { "playwright": "cli.js" }, @@ -23249,8 +22026,9 @@ }, "node_modules/polished": { "version": "4.2.2", + "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", + "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/runtime": "^7.17.8" }, @@ -23260,14 +22038,17 @@ }, "node_modules/posix-character-classes": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/postcss": { - "version": "8.4.22", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "dev": true, "funding": [ { @@ -23283,7 +22064,6 @@ "url": "https://github.com/sponsors/ai" } ], - "license": "MIT", "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", @@ -23295,8 +22075,9 @@ }, "node_modules/postcss-html": { "version": "0.36.0", + "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-0.36.0.tgz", + "integrity": "sha512-HeiOxGcuwID0AFsNAL0ox3mW6MHH5cstWN1Z3Y+n6H+g12ih7LHdYxWwEA/QmrebctLjo79xz9ouK3MroHwOJw==", "dev": true, - "license": "MIT", "dependencies": { "htmlparser2": "^3.10.0" }, @@ -23307,8 +22088,9 @@ }, "node_modules/postcss-jsx": { "version": "0.36.4", + "resolved": "https://registry.npmjs.org/postcss-jsx/-/postcss-jsx-0.36.4.tgz", + "integrity": "sha512-jwO/7qWUvYuWYnpOb0+4bIIgJt7003pgU3P6nETBLaOyBXuTD55ho21xnals5nBrlpTIFodyd3/jBi6UO3dHvA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": ">=7.2.2" }, @@ -23319,8 +22101,9 @@ }, "node_modules/postcss-less": { "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-less/-/postcss-less-3.1.4.tgz", + "integrity": "sha512-7TvleQWNM2QLcHqvudt3VYjULVB49uiW6XzEUFmvwHzvsOEF5MwBrIXZDJQvJNFGjJQTzSzZnDoCJ8h/ljyGXA==", "dev": true, - "license": "MIT", "dependencies": { "postcss": "^7.0.14" }, @@ -23330,13 +22113,15 @@ }, "node_modules/postcss-less/node_modules/picocolors": { "version": "0.2.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true }, "node_modules/postcss-less/node_modules/postcss": { "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dev": true, - "license": "MIT", "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" @@ -23351,8 +22136,9 @@ }, "node_modules/postcss-markdown": { "version": "0.36.0", + "resolved": "https://registry.npmjs.org/postcss-markdown/-/postcss-markdown-0.36.0.tgz", + "integrity": "sha512-rl7fs1r/LNSB2bWRhyZ+lM/0bwKv9fhl38/06gF6mKMo/NPnp55+K1dSTosSVjFZc0e1ppBlu+WT91ba0PMBfQ==", "dev": true, - "license": "MIT", "dependencies": { "remark": "^10.0.1", "unist-util-find-all-after": "^1.0.2" @@ -23364,13 +22150,15 @@ }, "node_modules/postcss-media-query-parser": { "version": "0.2.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", + "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", + "dev": true }, "node_modules/postcss-reporter": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-6.0.1.tgz", + "integrity": "sha512-LpmQjfRWyabc+fRygxZjpRxfhRf9u/fdlKf4VHG4TSPbV2XNsuISzYW1KL+1aQzx53CAppa1bKG4APIB/DOXXw==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^2.4.1", "lodash": "^4.17.11", @@ -23383,8 +22171,9 @@ }, "node_modules/postcss-reporter/node_modules/log-symbols": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^2.0.1" }, @@ -23394,13 +22183,15 @@ }, "node_modules/postcss-reporter/node_modules/picocolors": { "version": "0.2.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true }, "node_modules/postcss-reporter/node_modules/postcss": { "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dev": true, - "license": "MIT", "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" @@ -23415,13 +22206,15 @@ }, "node_modules/postcss-resolve-nested-selector": { "version": "0.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", + "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", + "dev": true }, "node_modules/postcss-safe-parser": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", + "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=12.0" }, @@ -23435,8 +22228,9 @@ }, "node_modules/postcss-sass": { "version": "0.3.5", + "resolved": "https://registry.npmjs.org/postcss-sass/-/postcss-sass-0.3.5.tgz", + "integrity": "sha512-B5z2Kob4xBxFjcufFnhQ2HqJQ2y/Zs/ic5EZbCywCkxKd756Q40cIQ/veRDwSrw1BF6+4wUgmpm0sBASqVi65A==", "dev": true, - "license": "MIT", "dependencies": { "gonzales-pe": "^4.2.3", "postcss": "^7.0.1" @@ -23444,13 +22238,15 @@ }, "node_modules/postcss-sass/node_modules/picocolors": { "version": "0.2.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true }, "node_modules/postcss-sass/node_modules/postcss": { "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dev": true, - "license": "MIT", "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" @@ -23464,41 +22260,32 @@ } }, "node_modules/postcss-scss": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "postcss": "^7.0.6" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/postcss-scss/node_modules/picocolors": { - "version": "0.2.1", - "dev": true, - "license": "ISC" - }, - "node_modules/postcss-scss/node_modules/postcss": { - "version": "7.0.39", + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.6.tgz", + "integrity": "sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ==", "dev": true, - "license": "MIT", - "dependencies": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - }, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss-scss" + } + ], "engines": { - "node": ">=6.0.0" + "node": ">=12.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "peerDependencies": { + "postcss": "^8.4.19" } }, "node_modules/postcss-selector-parser": { - "version": "6.0.11", + "version": "6.0.12", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz", + "integrity": "sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg==", "dev": true, - "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -23508,56 +22295,35 @@ } }, "node_modules/postcss-sorting": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash": "^4.17.4", - "postcss": "^7.0.0" - }, - "engines": { - "node": ">=6.14.3" - } - }, - "node_modules/postcss-sorting/node_modules/picocolors": { - "version": "0.2.1", - "dev": true, - "license": "ISC" - }, - "node_modules/postcss-sorting/node_modules/postcss": { - "version": "7.0.39", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-8.0.2.tgz", + "integrity": "sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==", "dev": true, - "license": "MIT", - "dependencies": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "peerDependencies": { + "postcss": "^8.4.20" } }, "node_modules/postcss-syntax": { "version": "0.36.2", + "resolved": "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz", + "integrity": "sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w==", "dev": true, - "license": "MIT", "peerDependencies": { "postcss": ">=5.0.0" } }, "node_modules/postcss-value-parser": { "version": "4.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true }, "node_modules/pre-commit": { "version": "1.2.2", + "resolved": "https://registry.npmjs.org/pre-commit/-/pre-commit-1.2.2.tgz", + "integrity": "sha512-qokTiqxD6GjODy5ETAIgzsRgnBWWQHQH2ghy86PU7mIn/wuWeTwF3otyNQZxWBwVn8XNr8Tdzj/QfUXpH+gRZA==", "dev": true, "hasInstallScript": true, - "license": "MIT", "dependencies": { "cross-spawn": "^5.0.1", "spawn-sync": "^1.0.15", @@ -23566,8 +22332,9 @@ }, "node_modules/pre-commit/node_modules/cross-spawn": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "dev": true, - "license": "MIT", "dependencies": { "lru-cache": "^4.0.1", "shebang-command": "^1.2.0", @@ -23576,8 +22343,9 @@ }, "node_modules/pre-commit/node_modules/lru-cache": { "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "dev": true, - "license": "ISC", "dependencies": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" @@ -23585,8 +22353,9 @@ }, "node_modules/pre-commit/node_modules/shebang-command": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, - "license": "MIT", "dependencies": { "shebang-regex": "^1.0.0" }, @@ -23596,16 +22365,18 @@ }, "node_modules/pre-commit/node_modules/shebang-regex": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/pre-commit/node_modules/which": { "version": "1.2.14", + "resolved": "https://registry.npmjs.org/which/-/which-1.2.14.tgz", + "integrity": "sha512-16uPglFkRPzgiUXYMi1Jf8Z5EzN1iB4V0ZtMXcHZnwsBtQhhHeCqoWw7tsUY42hJGNDWtUsVLTjakIa5BgAxCw==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -23615,20 +22386,24 @@ }, "node_modules/pre-commit/node_modules/yallist": { "version": "2.1.2", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true }, "node_modules/prelude-ls": { - "version": "1.1.2", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/prettier": { - "version": "2.8.4", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", "dev": true, - "license": "MIT", "bin": { "prettier": "bin-prettier.js" }, @@ -23641,8 +22416,9 @@ }, "node_modules/prettier-linter-helpers": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, - "license": "MIT", "dependencies": { "fast-diff": "^1.1.2" }, @@ -23652,8 +22428,9 @@ }, "node_modules/pretty-bytes": { "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" }, @@ -23663,7 +22440,8 @@ }, "node_modules/pretty-format": { "version": "27.5.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", @@ -23675,7 +22453,8 @@ }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "engines": { "node": ">=10" }, @@ -23685,29 +22464,33 @@ }, "node_modules/pretty-hrtime": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/process": { "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6.0" } }, "node_modules/process-nextick-args": { "version": "2.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true }, "node_modules/process-on-spawn": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz", + "integrity": "sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==", "dev": true, - "license": "MIT", "dependencies": { "fromentries": "^1.2.0" }, @@ -23717,16 +22500,18 @@ }, "node_modules/progress": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/prompts": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, - "license": "MIT", "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" @@ -23737,7 +22522,8 @@ }, "node_modules/prop-types": { "version": "15.8.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", @@ -23746,7 +22532,8 @@ }, "node_modules/prop-types-extra": { "version": "1.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", "dependencies": { "react-is": "^16.3.2", "warning": "^4.0.0" @@ -23757,16 +22544,19 @@ }, "node_modules/prop-types-extra/node_modules/react-is": { "version": "16.13.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, "node_modules/prop-types/node_modules/react-is": { "version": "16.13.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, "node_modules/proxy-addr": { "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, - "license": "MIT", "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" @@ -23777,23 +22567,27 @@ }, "node_modules/proxy-from-env": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", + "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", + "dev": true }, "node_modules/pseudomap": { "version": "1.0.2", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true }, "node_modules/psl": { "version": "1.9.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true }, "node_modules/pump": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, - "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -23801,8 +22595,9 @@ }, "node_modules/pumpify": { "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", "dev": true, - "license": "MIT", "dependencies": { "duplexify": "^3.6.0", "inherits": "^2.0.3", @@ -23811,8 +22606,9 @@ }, "node_modules/pumpify/node_modules/pump": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", "dev": true, - "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -23820,16 +22616,18 @@ }, "node_modules/punycode": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/puppeteer-core": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-2.1.1.tgz", + "integrity": "sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==", "dev": true, - "license": "Apache-2.0", "dependencies": { "@types/mime-types": "^2.1.0", "debug": "^4.1.0", @@ -23848,25 +22646,18 @@ }, "node_modules/puppeteer-core/node_modules/agent-base": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz", + "integrity": "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6.0.0" } }, - "node_modules/puppeteer-core/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/puppeteer-core/node_modules/extract-zip": { "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "concat-stream": "^1.6.2", "debug": "^2.6.9", @@ -23879,16 +22670,18 @@ }, "node_modules/puppeteer-core/node_modules/extract-zip/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/puppeteer-core/node_modules/glob": { "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -23906,8 +22699,9 @@ }, "node_modules/puppeteer-core/node_modules/https-proxy-agent": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz", + "integrity": "sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "5", "debug": "4" @@ -23918,8 +22712,9 @@ }, "node_modules/puppeteer-core/node_modules/mime": { "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "dev": true, - "license": "MIT", "bin": { "mime": "cli.js" }, @@ -23927,26 +22722,29 @@ "node": ">=4.0.0" } }, - "node_modules/puppeteer-core/node_modules/minimatch": { - "version": "3.1.2", + "node_modules/puppeteer-core/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, - "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" + "minimist": "^1.2.6" }, - "engines": { - "node": "*" + "bin": { + "mkdirp": "bin/cmd.js" } }, "node_modules/puppeteer-core/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/puppeteer-core/node_modules/rimraf": { "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", "dev": true, - "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -23956,16 +22754,18 @@ }, "node_modules/puppeteer-core/node_modules/ws": { "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", "dev": true, - "license": "MIT", "dependencies": { "async-limiter": "~1.0.0" } }, "node_modules/qs": { "version": "6.11.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", + "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.4" }, @@ -23978,11 +22778,14 @@ }, "node_modules/querystringify": { "version": "2.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true }, "node_modules/queue-microtask": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { @@ -23997,21 +22800,22 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/quick-lru": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ramda": { "version": "0.28.0", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.28.0.tgz", + "integrity": "sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/ramda" @@ -24019,16 +22823,18 @@ }, "node_modules/range-parser": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, - "license": "MIT", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", @@ -24041,8 +22847,9 @@ }, "node_modules/react": { "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", "dev": true, - "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" }, @@ -24051,19 +22858,20 @@ } }, "node_modules/react-bootstrap": { - "version": "2.7.2", - "license": "MIT", + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.7.4.tgz", + "integrity": "sha512-EPKPwhfbxsKsNBhJBitJwqul9fvmlYWSft6jWE2EpqhEyjhqIqNihvQo2onE5XtS+QHOavUSNmA+8Lnv5YeAyg==", "dependencies": { - "@babel/runtime": "^7.17.2", - "@restart/hooks": "^0.4.6", - "@restart/ui": "^1.4.1", - "@types/react-transition-group": "^4.4.4", - "classnames": "^2.3.1", + "@babel/runtime": "^7.21.0", + "@restart/hooks": "^0.4.9", + "@restart/ui": "^1.6.3", + "@types/react-transition-group": "^4.4.5", + "classnames": "^2.3.2", "dom-helpers": "^5.2.1", "invariant": "^2.2.4", "prop-types": "^15.8.1", "prop-types-extra": "^1.1.0", - "react-transition-group": "^4.4.2", + "react-transition-group": "^4.4.5", "uncontrollable": "^7.2.1", "warning": "^4.0.3" }, @@ -24091,8 +22899,9 @@ }, "node_modules/react-colorful": { "version": "5.6.1", + "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz", + "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==", "dev": true, - "license": "MIT", "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" @@ -24100,8 +22909,9 @@ }, "node_modules/react-docgen": { "version": "6.0.0-alpha.3", + "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-6.0.0-alpha.3.tgz", + "integrity": "sha512-DDLvB5EV9As1/zoUsct6Iz2Cupw9FObEGD3DMcIs3EDFIoSKyz8FZtoWj3Wj+oodrU4/NfidN0BL5yrapIcTSA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.7.5", "@babel/generator": "^7.12.11", @@ -24123,27 +22933,24 @@ }, "node_modules/react-docgen-typescript": { "version": "2.2.2", + "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", + "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==", "dev": true, - "license": "MIT", "peerDependencies": { "typescript": ">= 4.3.x" } }, - "node_modules/react-docgen/node_modules/ast-types": { - "version": "0.14.2", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } + "node_modules/react-docgen/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true }, "node_modules/react-dom": { "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", "dev": true, - "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", "scheduler": "^0.23.0" @@ -24154,8 +22961,9 @@ }, "node_modules/react-element-to-jsx-string": { "version": "15.0.0", + "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz", + "integrity": "sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==", "dev": true, - "license": "MIT", "dependencies": { "@base2/pretty-print-object": "1.0.1", "is-plain-object": "5.0.0", @@ -24168,12 +22976,14 @@ }, "node_modules/react-element-to-jsx-string/node_modules/react-is": { "version": "18.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", + "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==", + "dev": true }, "node_modules/react-i18next": { - "version": "12.1.5", - "license": "MIT", + "version": "12.2.2", + "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-12.2.2.tgz", + "integrity": "sha512-KBB6buBmVKXUWNxXHdnthp+38gPyBT46hJCAIQ8rX19NFL/m2ahte2KARfIDf2tMnSAL7wwck6eDOd/9zn6aFg==", "dependencies": { "@babel/runtime": "^7.20.6", "html-parse-stringify": "^3.0.1" @@ -24193,32 +23003,37 @@ }, "node_modules/react-inspector": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/react-inspector/-/react-inspector-6.0.1.tgz", + "integrity": "sha512-cxKSeFTf7jpSSVddm66sKdolG90qURAX3g1roTeaN6x0YEbtWc8JpmFN9+yIqLNH2uEkYerWLtJZIXRIFuBKrg==", "dev": true, - "license": "MIT", "peerDependencies": { "react": "^16.8.4 || ^17.0.0 || ^18.0.0" } }, "node_modules/react-is": { "version": "17.0.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, "node_modules/react-lifecycles-compat": { "version": "3.0.4", - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" }, "node_modules/react-refresh": { "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/react-resize-detector": { "version": "7.1.2", + "resolved": "https://registry.npmjs.org/react-resize-detector/-/react-resize-detector-7.1.2.tgz", + "integrity": "sha512-zXnPJ2m8+6oq9Nn8zsep/orts9vQv3elrpA+R8XTcW7DVVUJ9vwDwMXaBtykAYjMnkCIaOoK9vObyR7ZgFNlOw==", "dev": true, - "license": "MIT", "dependencies": { "lodash": "^4.17.21" }, @@ -24228,10 +23043,11 @@ } }, "node_modules/react-router": { - "version": "6.8.1", - "license": "MIT", + "version": "6.11.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.11.1.tgz", + "integrity": "sha512-OZINSdjJ2WgvAi7hgNLazrEV8SGn6xrKA+MkJe9wVDMZ3zQ6fdJocUjpCUCI0cNrelWjcvon0S/QK/j0NzL3KA==", "dependencies": { - "@remix-run/router": "1.3.2" + "@remix-run/router": "1.6.1" }, "engines": { "node": ">=14" @@ -24241,11 +23057,12 @@ } }, "node_modules/react-router-dom": { - "version": "6.8.1", - "license": "MIT", + "version": "6.11.1", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.11.1.tgz", + "integrity": "sha512-dPC2MhoPeTQ1YUOt5uIK376SMNWbwUxYRWk2ZmTT4fZfwlOvabF8uduRKKJIyfkCZvMgiF0GSCQckmkGGijIrg==", "dependencies": { - "@remix-run/router": "1.3.2", - "react-router": "6.8.1" + "@remix-run/router": "1.6.1", + "react-router": "6.11.1" }, "engines": { "node": ">=14" @@ -24255,9 +23072,21 @@ "react-dom": ">=16.8" } }, + "node_modules/react-topbar-progress-indicator": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/react-topbar-progress-indicator/-/react-topbar-progress-indicator-4.1.1.tgz", + "integrity": "sha512-Oy3ENNKfymt16zoz5SYy/WOepMurB0oeZEyvuHm8JZ3jrTCe1oAUD7fG6HhYt5sg8Wcg5gdkzSWItaFF6c6VhA==", + "dependencies": { + "topbar": "^0.1.3" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, "node_modules/react-transition-group": { "version": "4.4.5", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", "dependencies": { "@babel/runtime": "^7.5.5", "dom-helpers": "^5.0.1", @@ -24271,8 +23100,9 @@ }, "node_modules/read-pkg": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, - "license": "MIT", "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", @@ -24285,8 +23115,9 @@ }, "node_modules/read-pkg-up": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, - "license": "MIT", "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", @@ -24301,8 +23132,9 @@ }, "node_modules/read-pkg-up/node_modules/find-up": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -24313,8 +23145,9 @@ }, "node_modules/read-pkg-up/node_modules/locate-path": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -24324,8 +23157,9 @@ }, "node_modules/read-pkg-up/node_modules/p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -24338,8 +23172,9 @@ }, "node_modules/read-pkg-up/node_modules/p-locate": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -24349,24 +23184,27 @@ }, "node_modules/read-pkg-up/node_modules/type-fest": { "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/read-pkg/node_modules/type-fest": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/readable-stream": { "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, - "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -24378,7 +23216,8 @@ }, "node_modules/readdirp": { "version": "3.6.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dependencies": { "picomatch": "^2.2.1" }, @@ -24388,8 +23227,9 @@ }, "node_modules/recast": { "version": "0.23.1", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.1.tgz", + "integrity": "sha512-RokaBcoxSjXUDzz1TXSZmZsSW6ZpLmlA3GGqJ8uuTrQ9hZhEz+4Tpsc+gRvYRJ2BU4H+ZyUlg91eSGDw7bwy7g==", "dev": true, - "license": "MIT", "dependencies": { "assert": "^2.0.0", "ast-types": "^0.16.1", @@ -24401,8 +23241,22 @@ "node": ">= 4" } }, + "node_modules/recast/node_modules/ast-types": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", + "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/rechoir": { "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", "dev": true, "dependencies": { "resolve": "^1.1.6" @@ -24413,7 +23267,8 @@ }, "node_modules/redent": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" @@ -24424,13 +23279,15 @@ }, "node_modules/regenerate": { "version": "1.4.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true }, "node_modules/regenerate-unicode-properties": { "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", "dev": true, - "license": "MIT", "dependencies": { "regenerate": "^1.4.2" }, @@ -24440,20 +23297,23 @@ }, "node_modules/regenerator-runtime": { "version": "0.13.11", - "license": "MIT" + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" }, "node_modules/regenerator-transform": { "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/runtime": "^7.8.4" } }, "node_modules/regex-not": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "dev": true, - "license": "MIT", "dependencies": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" @@ -24463,12 +23323,13 @@ } }, "node_modules/regexp.prototype.flags": { - "version": "1.4.3", - "license": "MIT", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" }, "engines": { "node": ">= 0.4" @@ -24477,21 +23338,11 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/regexpp": { - "version": "3.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, "node_modules/regexpu-core": { "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", @@ -24506,8 +23357,9 @@ }, "node_modules/regjsparser": { "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "jsesc": "~0.5.0" }, @@ -24517,6 +23369,8 @@ }, "node_modules/regjsparser/node_modules/jsesc": { "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", "dev": true, "bin": { "jsesc": "bin/jsesc" @@ -24524,8 +23378,9 @@ }, "node_modules/release-zalgo": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz", + "integrity": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==", "dev": true, - "license": "ISC", "dependencies": { "es6-error": "^4.0.1" }, @@ -24535,8 +23390,9 @@ }, "node_modules/remark": { "version": "10.0.1", + "resolved": "https://registry.npmjs.org/remark/-/remark-10.0.1.tgz", + "integrity": "sha512-E6lMuoLIy2TyiokHprMjcWNJ5UxfGQjaMSMhV+f4idM625UjjK4j798+gPs5mfjzDE6vL0oFKVeZM6gZVSVrzQ==", "dev": true, - "license": "MIT", "dependencies": { "remark-parse": "^6.0.0", "remark-stringify": "^6.0.0", @@ -24545,8 +23401,9 @@ }, "node_modules/remark-external-links": { "version": "8.0.0", + "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz", + "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==", "dev": true, - "license": "MIT", "dependencies": { "extend": "^3.0.0", "is-absolute-url": "^3.0.0", @@ -24559,10 +23416,34 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/remark-parse": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-6.0.3.tgz", + "integrity": "sha512-QbDXWN4HfKTUC0hHa4teU463KclLAnwpn/FBn87j9cKYJWWawbiLgMfP2Q4XwhxxuuuOxHlw+pSN0OKuJwyVvg==", + "dev": true, + "dependencies": { + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^1.1.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^1.0.0", + "vfile-location": "^2.0.0", + "xtend": "^4.0.1" + } + }, "node_modules/remark-slug": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz", + "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==", "dev": true, - "license": "MIT", "dependencies": { "github-slugger": "^1.0.0", "mdast-util-to-string": "^1.0.0", @@ -24575,8 +23456,9 @@ }, "node_modules/remark-stringify": { "version": "6.0.4", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-6.0.4.tgz", + "integrity": "sha512-eRWGdEPMVudijE/psbIDNcnJLRVx3xhfuEsTDGgH4GsFF91dVhw5nhmnBppafJ7+NWINW6C7ZwWbi30ImJzqWg==", "dev": true, - "license": "MIT", "dependencies": { "ccount": "^1.0.0", "is-alphanumeric": "^1.0.0", @@ -24594,235 +23476,86 @@ "xtend": "^4.0.1" } }, - "node_modules/remark-stringify/node_modules/parse-entities": { - "version": "1.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "character-entities": "^1.0.0", - "character-entities-legacy": "^1.0.0", - "character-reference-invalid": "^1.0.0", - "is-alphanumerical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-hexadecimal": "^1.0.0" - } - }, - "node_modules/remark/node_modules/is-buffer": { - "version": "2.0.5", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/remark/node_modules/is-plain-obj": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/remark/node_modules/parse-entities": { - "version": "1.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "character-entities": "^1.0.0", - "character-entities-legacy": "^1.0.0", - "character-reference-invalid": "^1.0.0", - "is-alphanumerical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-hexadecimal": "^1.0.0" - } - }, - "node_modules/remark/node_modules/remark-parse": { - "version": "6.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "collapse-white-space": "^1.0.2", - "is-alphabetical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-whitespace-character": "^1.0.0", - "is-word-character": "^1.0.0", - "markdown-escapes": "^1.0.0", - "parse-entities": "^1.1.0", - "repeat-string": "^1.5.4", - "state-toggle": "^1.0.0", - "trim": "0.0.1", - "trim-trailing-lines": "^1.0.0", - "unherit": "^1.0.4", - "unist-util-remove-position": "^1.0.0", - "vfile-location": "^2.0.0", - "xtend": "^4.0.1" - } - }, - "node_modules/remark/node_modules/unified": { - "version": "7.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "@types/vfile": "^3.0.0", - "bail": "^1.0.0", - "extend": "^3.0.0", - "is-plain-obj": "^1.1.0", - "trough": "^1.0.0", - "vfile": "^3.0.0", - "x-is-string": "^0.1.0" - } - }, - "node_modules/remark/node_modules/unist-util-is": { - "version": "3.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/remark/node_modules/unist-util-remove-position": { - "version": "1.1.4", - "dev": true, - "license": "MIT", - "dependencies": { - "unist-util-visit": "^1.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/remark/node_modules/unist-util-stringify-position": { - "version": "1.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/remark/node_modules/unist-util-visit": { - "version": "1.4.1", - "dev": true, - "license": "MIT", - "dependencies": { - "unist-util-visit-parents": "^2.0.0" - } - }, - "node_modules/remark/node_modules/unist-util-visit-parents": { - "version": "2.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "unist-util-is": "^3.0.0" - } - }, - "node_modules/remark/node_modules/vfile": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^2.0.0", - "replace-ext": "1.0.0", - "unist-util-stringify-position": "^1.0.0", - "vfile-message": "^1.0.0" - } - }, - "node_modules/remark/node_modules/vfile-location": { - "version": "2.0.6", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/remark/node_modules/vfile-message": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "unist-util-stringify-position": "^1.1.1" - } - }, "node_modules/repeat-element": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/repeat-string": { "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/replace-ext": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/request-progress": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", + "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", "dev": true, - "license": "MIT", "dependencies": { "throttleit": "^1.0.0" } }, "node_modules/require-directory": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/require-from-string": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/require-main-filename": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true }, "node_modules/requireindex": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz", + "integrity": "sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.5" } }, "node_modules/requires-port": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true }, "node_modules/resolve": { "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", "dev": true, - "license": "MIT", "dependencies": { "is-core-module": "^2.11.0", "path-parse": "^1.0.7", @@ -24837,8 +23570,9 @@ }, "node_modules/resolve-cwd": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, - "license": "MIT", "dependencies": { "resolve-from": "^5.0.0" }, @@ -24848,8 +23582,9 @@ }, "node_modules/resolve-dir": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-0.1.1.tgz", + "integrity": "sha512-QxMPqI6le2u0dCLyiGzgy92kjkkL6zO0XyvHzjdTNH3zM6e5Hz3BwG6+aEyNgiQ5Xz6PwTwgQEj3U50dByPKIA==", "dev": true, - "license": "MIT", "dependencies": { "expand-tilde": "^1.2.2", "global-modules": "^0.2.3" @@ -24860,29 +23595,34 @@ }, "node_modules/resolve-from": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/resolve-url": { "version": "0.2.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true }, "node_modules/resolve.exports": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/restore-cursor": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, - "license": "MIT", "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" @@ -24893,16 +23633,18 @@ }, "node_modules/ret": { "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.12" } }, "node_modules/reusify": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, - "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" @@ -24910,13 +23652,15 @@ }, "node_modules/rfdc": { "version": "1.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true }, "node_modules/rimraf": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, - "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -24927,19 +23671,11 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/rimraf/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/rimraf/node_modules/glob": { "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -24955,21 +23691,11 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/rimraf/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/rollup": { - "version": "3.20.5", + "version": "3.21.6", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.21.6.tgz", + "integrity": "sha512-SXIICxvxQxR3D4dp/3LDHZIJPC8a4anKMHd4E3Jiz2/JnY+2bEjqrOokAauc5ShGVNFHlEFjBXAXlaxkJqIqSg==", "dev": true, - "license": "MIT", "bin": { "rollup": "dist/bin/rollup" }, @@ -24981,6 +23707,12 @@ "fsevents": "~2.3.2" } }, + "node_modules/rrweb-cssom": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz", + "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==", + "dev": true + }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -24992,6 +23724,8 @@ }, "node_modules/run-parallel": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { @@ -25007,29 +23741,23 @@ "url": "https://feross.org/support" } ], - "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/rxjs": { - "version": "6.6.7", + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "tslib": "^1.9.0" - }, - "engines": { - "npm": ">=2.0.0" + "tslib": "^2.1.0" } }, - "node_modules/rxjs/node_modules/tslib": { - "version": "1.14.1", - "dev": true, - "license": "0BSD" - }, "node_modules/safe-buffer": { "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "funding": [ { @@ -25044,21 +23772,22 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/safe-regex": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", "dev": true, - "license": "MIT", "dependencies": { "ret": "~0.1.10" } }, "node_modules/safe-regex-test": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", @@ -25070,12 +23799,14 @@ }, "node_modules/safer-buffer": { "version": "2.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true }, "node_modules/sass": { - "version": "1.58.1", - "license": "MIT", + "version": "1.62.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz", + "integrity": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==", "dependencies": { "chokidar": ">=3.0.0 <4.0.0", "immutable": "^4.0.0", @@ -25085,13 +23816,14 @@ "sass": "sass.js" }, "engines": { - "node": ">=12.0.0" + "node": ">=14.0.0" } }, "node_modules/saxes": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", "dev": true, - "license": "ISC", "dependencies": { "xmlchars": "^2.2.0" }, @@ -25101,30 +23833,27 @@ }, "node_modules/scheduler": { "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", "dev": true, - "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" } }, "node_modules/semver": { - "version": "7.5.0", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" } }, "node_modules/send": { "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, - "license": "MIT", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -25146,26 +23875,30 @@ }, "node_modules/send/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/send/node_modules/ms": { "version": "2.1.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true }, "node_modules/serve-favicon": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz", + "integrity": "sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==", "dev": true, - "license": "MIT", "dependencies": { "etag": "~1.8.1", "fresh": "0.5.2", @@ -25179,18 +23912,21 @@ }, "node_modules/serve-favicon/node_modules/ms": { "version": "2.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true }, "node_modules/serve-favicon/node_modules/safe-buffer": { "version": "5.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", + "dev": true }, "node_modules/serve-static": { "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, - "license": "MIT", "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -25203,8 +23939,9 @@ }, "node_modules/set-blocking": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true }, "node_modules/set-cookie-parser": { "version": "2.6.0", @@ -25214,8 +23951,9 @@ }, "node_modules/set-value": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", "dev": true, - "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "is-extendable": "^0.1.1", @@ -25228,8 +23966,9 @@ }, "node_modules/set-value/node_modules/extend-shallow": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, - "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -25237,10 +23976,20 @@ "node": ">=0.10.0" } }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/set-value/node_modules/is-plain-object": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, - "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -25250,13 +23999,15 @@ }, "node_modules/setprototypeof": { "version": "1.2.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true }, "node_modules/shallow-clone": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^6.0.2" }, @@ -25266,8 +24017,9 @@ }, "node_modules/shebang-command": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -25277,16 +24029,18 @@ }, "node_modules/shebang-regex": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/shelljs": { "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "glob": "^7.0.0", "interpret": "^1.0.0", @@ -25299,19 +24053,11 @@ "node": ">=4" } }, - "node_modules/shelljs/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/shelljs/node_modules/glob": { "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -25327,28 +24073,10 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/shelljs/node_modules/interpret": { - "version": "1.4.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/shelljs/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/side-channel": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", @@ -25360,18 +24088,21 @@ }, "node_modules/siginfo": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true }, "node_modules/signal-exit": { "version": "3.0.7", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true }, "node_modules/simple-update-notifier": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz", + "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==", "dev": true, - "license": "MIT", "dependencies": { "semver": "~7.0.0" }, @@ -25381,16 +24112,18 @@ }, "node_modules/simple-update-notifier/node_modules/semver": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/sinon": { - "version": "15.0.3", + "version": "15.0.4", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-15.0.4.tgz", + "integrity": "sha512-uzmfN6zx3GQaria1kwgWGeKiXSSbShBbue6Dcj0SI8fiCNFbiUDqKl57WFlY5lyhxZVUKmXvzgG2pilRQCBwWg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^3.0.0", "@sinonjs/fake-timers": "^10.0.2", @@ -25406,40 +24139,45 @@ }, "node_modules/sinon/node_modules/@sinonjs/commons": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } }, "node_modules/sinon/node_modules/@sinonjs/fake-timers": { "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz", + "integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^2.0.0" } }, "node_modules/sinon/node_modules/@sinonjs/fake-timers/node_modules/@sinonjs/commons": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } }, "node_modules/sinon/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/sinon/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -25449,20 +24187,23 @@ }, "node_modules/sisteransi": { "version": "1.0.5", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true }, "node_modules/slash": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "engines": { "node": ">=8" } }, "node_modules/slice-ansi": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", @@ -25474,8 +24215,9 @@ }, "node_modules/slice-ansi/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -25486,26 +24228,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/snapdragon": { "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "dev": true, - "license": "MIT", "dependencies": { "base": "^0.11.1", "debug": "^2.2.0", @@ -25522,8 +24249,9 @@ }, "node_modules/snapdragon-node": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "dev": true, - "license": "MIT", "dependencies": { "define-property": "^1.0.0", "isobject": "^3.0.0", @@ -25535,8 +24263,9 @@ }, "node_modules/snapdragon-node/node_modules/define-property": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^1.0.0" }, @@ -25544,56 +24273,86 @@ "node": ">=0.10.0" } }, - "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { - "version": "1.0.0", + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "dev": true, - "license": "MIT", "dependencies": { - "kind-of": "^6.0.0" + "kind-of": "^3.2.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/snapdragon-node/node_modules/is-data-descriptor": { - "version": "1.0.0", + "node_modules/snapdragon-util/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "license": "MIT", "dependencies": { - "kind-of": "^6.0.0" + "is-buffer": "^1.1.5" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/snapdragon-node/node_modules/is-descriptor": { - "version": "1.0.2", + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/snapdragon-util": { - "version": "3.0.1", + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, - "license": "MIT", "dependencies": { - "kind-of": "^3.2.0" + "is-extendable": "^0.1.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/snapdragon-util/node_modules/kind-of": { + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -25601,68 +24360,106 @@ "node": ">=0.10.0" } }, - "node_modules/snapdragon/node_modules/debug": { - "version": "2.6.9", + "node_modules/snapdragon/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", "dev": true, - "license": "MIT", "dependencies": { - "ms": "2.0.0" + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", + "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "license": "MIT", "dependencies": { - "is-descriptor": "^0.1.0" + "is-buffer": "^1.1.5" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/snapdragon/node_modules/extend-shallow": { - "version": "2.0.1", + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, - "license": "MIT", "dependencies": { - "is-extendable": "^0.1.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" }, "engines": { "node": ">=0.10.0" } }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/snapdragon/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/snapdragon/node_modules/source-map": { "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-js": { "version": "1.0.2", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-resolve": { "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", "dev": true, - "license": "MIT", "dependencies": { "atob": "^2.1.2", "decode-uri-component": "^0.2.0", @@ -25672,9 +24469,10 @@ } }, "node_modules/source-map-support": { - "version": "0.5.21", + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, - "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -25682,13 +24480,16 @@ }, "node_modules/source-map-url": { "version": "0.4.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true }, "node_modules/space-separated-tokens": { "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25696,9 +24497,10 @@ }, "node_modules/spawn-sync": { "version": "1.0.15", + "resolved": "https://registry.npmjs.org/spawn-sync/-/spawn-sync-1.0.15.tgz", + "integrity": "sha512-9DWBgrgYZzNghseho0JOuh+5fg9u6QWhAWa51QC7+U5rCheZ/j1DrEZnyE0RBBRqZ9uEXGPgSSM0nky6burpVw==", "dev": true, "hasInstallScript": true, - "license": "MIT", "dependencies": { "concat-stream": "^1.4.7", "os-shim": "^0.1.2" @@ -25706,8 +24508,9 @@ }, "node_modules/spawn-wrap": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz", + "integrity": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==", "dev": true, - "license": "ISC", "dependencies": { "foreground-child": "^2.0.0", "is-windows": "^1.0.2", @@ -25720,10 +24523,20 @@ "node": ">=8" } }, + "node_modules/spawn-wrap/node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/spawnd": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/spawnd/-/spawnd-5.0.0.tgz", + "integrity": "sha512-28+AJr82moMVWolQvlAIv3JcYDkjkFTEmfDc503wxrF5l2rQ3dFz6DpbXp3kD4zmgGGldfM4xM4v1sFj/ZaIOA==", "dev": true, - "license": "MIT", "dependencies": { "exit": "^0.1.2", "signal-exit": "^3.0.3", @@ -25733,8 +24546,9 @@ }, "node_modules/spdx-correct": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, - "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -25742,13 +24556,15 @@ }, "node_modules/spdx-exceptions": { "version": "2.3.0", - "dev": true, - "license": "CC-BY-3.0" + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true }, "node_modules/spdx-expression-parse": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" @@ -25756,21 +24572,24 @@ }, "node_modules/spdx-license-ids": { "version": "3.0.13", - "dev": true, - "license": "CC0-1.0" + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "dev": true }, "node_modules/specificity": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/specificity/-/specificity-0.4.1.tgz", + "integrity": "sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==", "dev": true, - "license": "MIT", "bin": { "specificity": "bin/specificity" } }, "node_modules/split-string": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "dev": true, - "license": "MIT", "dependencies": { "extend-shallow": "^3.0.0" }, @@ -25780,13 +24599,15 @@ }, "node_modules/sprintf-js": { "version": "1.0.3", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true }, "node_modules/sshpk": { "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", "dev": true, - "license": "MIT", "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", @@ -25809,7 +24630,8 @@ }, "node_modules/stack-utils": { "version": "2.0.6", - "license": "MIT", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dependencies": { "escape-string-regexp": "^2.0.0" }, @@ -25819,20 +24641,23 @@ }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "engines": { "node": ">=8" } }, "node_modules/stackback": { "version": "0.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true }, "node_modules/state-toggle": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz", + "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25840,8 +24665,9 @@ }, "node_modules/static-extend": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", "dev": true, - "license": "MIT", "dependencies": { "define-property": "^0.2.5", "object-copy": "^0.1.0" @@ -25852,8 +24678,9 @@ }, "node_modules/static-extend/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -25861,22 +24688,102 @@ "node": ">=0.10.0" } }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/statuses": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/std-env": { - "version": "3.3.2", - "dev": true, - "license": "MIT" + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.3.3.tgz", + "integrity": "sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg==", + "dev": true }, "node_modules/stop-iteration-iterator": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", "dependencies": { "internal-slot": "^1.0.4" }, @@ -25886,15 +24793,17 @@ }, "node_modules/store2": { "version": "2.14.2", - "dev": true, - "license": "(MIT OR GPL-3.0)" + "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.2.tgz", + "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==", + "dev": true }, "node_modules/storybook": { - "version": "7.0.5", + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/storybook/-/storybook-7.0.10.tgz", + "integrity": "sha512-L36+Um+Ra8AKTvv84ODFJfuthmWnR1Lc6pjslcb8LYO+PVlqEOeqSknmTcKntDYwgvKx5lg62urtJxzGdwO0yw==", "dev": true, - "license": "MIT", "dependencies": { - "@storybook/cli": "7.0.5" + "@storybook/cli": "7.0.10" }, "bin": { "sb": "index.js", @@ -25907,8 +24816,9 @@ }, "node_modules/stream-shift": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true }, "node_modules/strict-event-emitter": { "version": "0.4.6", @@ -25918,16 +24828,18 @@ }, "node_modules/string_decoder": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" } }, "node_modules/string-length": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, - "license": "MIT", "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" @@ -25938,8 +24850,9 @@ }, "node_modules/string-width": { "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -25951,8 +24864,9 @@ }, "node_modules/string.prototype.matchall": { "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -25969,8 +24883,9 @@ }, "node_modules/string.prototype.trim": { "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -25985,8 +24900,9 @@ }, "node_modules/string.prototype.trimend": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -25998,8 +24914,9 @@ }, "node_modules/string.prototype.trimstart": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -26011,8 +24928,9 @@ }, "node_modules/stringify-entities": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-1.3.2.tgz", + "integrity": "sha512-nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A==", "dev": true, - "license": "MIT", "dependencies": { "character-entities-html4": "^1.0.0", "character-entities-legacy": "^1.0.0", @@ -26022,8 +24940,9 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -26033,23 +24952,26 @@ }, "node_modules/strip-bom": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/strip-final-newline": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/strip-indent": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dependencies": { "min-indent": "^1.0.0" }, @@ -26059,8 +24981,9 @@ }, "node_modules/strip-json-comments": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -26070,8 +24993,9 @@ }, "node_modules/strip-literal": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-1.0.1.tgz", + "integrity": "sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==", "dev": true, - "license": "MIT", "dependencies": { "acorn": "^8.8.2" }, @@ -26079,23 +25003,37 @@ "url": "https://github.com/sponsors/antfu" } }, + "node_modules/strip-literal/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/style-search": { "version": "0.1.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", + "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", + "dev": true }, "node_modules/stylelint": { - "version": "15.1.0", + "version": "15.6.1", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-15.6.1.tgz", + "integrity": "sha512-d8icFBlVl93Elf3Z5ABQNOCe4nx69is3D/NZhDLAie1eyYnpxfeKe7pCfqzT5W4F8vxHCLSDfV8nKNJzogvV2Q==", "dev": true, - "license": "MIT", "dependencies": { - "@csstools/css-parser-algorithms": "^2.0.1", - "@csstools/css-tokenizer": "^2.0.1", - "@csstools/media-query-list-parser": "^2.0.1", - "@csstools/selector-specificity": "^2.1.1", + "@csstools/css-parser-algorithms": "^2.1.1", + "@csstools/css-tokenizer": "^2.1.1", + "@csstools/media-query-list-parser": "^2.0.4", + "@csstools/selector-specificity": "^2.2.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", - "cosmiconfig": "^8.0.0", + "cosmiconfig": "^8.1.3", "css-functions-list": "^3.1.0", "css-tree": "^2.3.1", "debug": "^4.3.4", @@ -26105,32 +25043,32 @@ "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", - "html-tags": "^3.2.0", + "html-tags": "^3.3.1", "ignore": "^5.2.4", "import-lazy": "^4.0.0", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", - "known-css-properties": "^0.26.0", + "known-css-properties": "^0.27.0", "mathml-tag-names": "^2.1.3", "meow": "^9.0.0", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "picocolors": "^1.0.0", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.1", "postcss-safe-parser": "^6.0.0", - "postcss-selector-parser": "^6.0.11", + "postcss-selector-parser": "^6.0.12", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1", "style-search": "^0.1.0", - "supports-hyperlinks": "^2.3.0", + "supports-hyperlinks": "^3.0.0", "svg-tags": "^1.0.0", "table": "^6.8.1", "v8-compile-cache": "^2.3.0", - "write-file-atomic": "^5.0.0" + "write-file-atomic": "^5.0.1" }, "bin": { "stylelint": "bin/stylelint.js" @@ -26145,8 +25083,9 @@ }, "node_modules/stylelint-config-rational-order": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/stylelint-config-rational-order/-/stylelint-config-rational-order-0.1.2.tgz", + "integrity": "sha512-Qo7ZQaihCwTqijfZg4sbdQQHtugOX/B1/fYh018EiDZHW+lkqH9uHOnsDwDPGZrYJuB6CoyI7MZh2ecw2dOkew==", "dev": true, - "license": "Apache-2.0", "dependencies": { "stylelint": "^9.10.1", "stylelint-order": "^2.2.1" @@ -26154,16 +25093,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/@nodelib/fs.stat": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/stylelint-config-rational-order/node_modules/@types/glob": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", "dev": true, - "license": "MIT", "dependencies": { "@types/minimatch": "*", "@types/node": "*" @@ -26171,16 +25112,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/ansi-regex": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/stylelint-config-rational-order/node_modules/array-union": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", "dev": true, - "license": "MIT", "dependencies": { "array-uniq": "^1.0.1" }, @@ -26190,25 +25133,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/astral-regex": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/stylelint-config-rational-order/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/stylelint-config-rational-order/node_modules/braces": { "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, - "license": "MIT", "dependencies": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", @@ -26227,8 +25163,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/braces/node_modules/extend-shallow": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, - "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -26238,16 +25175,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/camelcase": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/camelcase-keys": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.2.0.tgz", + "integrity": "sha512-Ej37YKYbFUI8QiYlvj9YHb6/Z60dZyPJW0Cs8sFilMbd2lP0bw3ylAq9yJkK4lcTA2dID5fG8LjmJYbO7kWb7Q==", "dev": true, - "license": "MIT", "dependencies": { "camelcase": "^4.1.0", "map-obj": "^2.0.0", @@ -26259,8 +25198,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/cosmiconfig": { "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", "dev": true, - "license": "MIT", "dependencies": { "import-fresh": "^2.0.0", "is-directory": "^0.3.1", @@ -26273,8 +25213,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/dir-glob": { "version": "2.2.2", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", "dev": true, - "license": "MIT", "dependencies": { "path-type": "^3.0.0" }, @@ -26284,13 +25225,15 @@ }, "node_modules/stylelint-config-rational-order/node_modules/emoji-regex": { "version": "7.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true }, "node_modules/stylelint-config-rational-order/node_modules/fast-glob": { "version": "2.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", "dev": true, - "license": "MIT", "dependencies": { "@mrmlnc/readdir-enhanced": "^2.2.1", "@nodelib/fs.stat": "^1.1.2", @@ -26305,8 +25248,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/file-entry-cache": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-4.0.0.tgz", + "integrity": "sha512-AVSwsnbV8vH/UVbvgEhf3saVQXORNv0ZzSkvkhQIaia5Tia+JhGTaa/ePUSVoPHQyGayQNmYfkzFi3WZV5zcpA==", "dev": true, - "license": "MIT", "dependencies": { "flat-cache": "^2.0.1" }, @@ -26316,8 +25260,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/fill-range": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "dev": true, - "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", @@ -26330,8 +25275,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/fill-range/node_modules/extend-shallow": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, - "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -26341,8 +25287,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/find-up": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^2.0.0" }, @@ -26352,8 +25299,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/flat-cache": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", + "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", "dev": true, - "license": "MIT", "dependencies": { "flatted": "^2.0.0", "rimraf": "2.6.3", @@ -26365,13 +25313,15 @@ }, "node_modules/stylelint-config-rational-order/node_modules/flatted": { "version": "2.0.2", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true }, "node_modules/stylelint-config-rational-order/node_modules/glob": { "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -26387,10 +25337,33 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/stylelint-config-rational-order/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/stylelint-config-rational-order/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/stylelint-config-rational-order/node_modules/global-modules": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, - "license": "MIT", "dependencies": { "global-prefix": "^3.0.0" }, @@ -26400,8 +25373,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/global-prefix": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, - "license": "MIT", "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", @@ -26413,8 +25387,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/globby": { "version": "9.2.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz", + "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", "dev": true, - "license": "MIT", "dependencies": { "@types/glob": "^7.1.1", "array-union": "^1.0.2", @@ -26431,24 +25406,27 @@ }, "node_modules/stylelint-config-rational-order/node_modules/globby/node_modules/ignore": { "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/stylelint-config-rational-order/node_modules/html-tags": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz", + "integrity": "sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/import-fresh": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", "dev": true, - "license": "MIT", "dependencies": { "caller-path": "^2.0.0", "resolve-from": "^3.0.0" @@ -26459,40 +25437,66 @@ }, "node_modules/stylelint-config-rational-order/node_modules/import-fresh/node_modules/resolve-from": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/import-lazy": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/stylelint-config-rational-order/node_modules/indent-string": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", + "integrity": "sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, + "node_modules/stylelint-config-rational-order/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/stylelint-config-rational-order/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/stylelint-config-rational-order/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/stylelint-config-rational-order/node_modules/is-fullwidth-code-point": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/is-number": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -26502,8 +25506,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/is-number/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -26511,31 +25516,26 @@ "node": ">=0.10.0" } }, - "node_modules/stylelint-config-rational-order/node_modules/is-plain-obj": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/stylelint-config-rational-order/node_modules/known-css-properties": { "version": "0.11.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.11.0.tgz", + "integrity": "sha512-bEZlJzXo5V/ApNNa5z375mJC6Nrz4vG43UgcSCrg2OHC+yuB6j0iDSrY7RQ/+PRofFB03wNIIt9iXIVLr4wc7w==", + "dev": true }, "node_modules/stylelint-config-rational-order/node_modules/leven": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", + "integrity": "sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/stylelint-config-rational-order/node_modules/locate-path": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^2.0.0", "path-exists": "^3.0.0" @@ -26546,8 +25546,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/log-symbols": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^2.0.1" }, @@ -26557,16 +25558,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/map-obj": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-2.0.0.tgz", + "integrity": "sha512-TzQSV2DiMYgoF5RycneKVUzIa9bQsj/B3tTgsE3dOGqlzHnGIDaC7XBE7grnA+8kZPnfqSGFe95VHc2oc0VFUQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/meow": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-5.0.0.tgz", + "integrity": "sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==", "dev": true, - "license": "MIT", "dependencies": { "camelcase-keys": "^4.0.0", "decamelize-keys": "^1.0.0", @@ -26584,8 +25587,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/micromatch": { "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, - "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -26605,21 +25609,11 @@ "node": ">=0.10.0" } }, - "node_modules/stylelint-config-rational-order/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/stylelint-config-rational-order/node_modules/minimist-options": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-3.0.2.tgz", + "integrity": "sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==", "dev": true, - "license": "MIT", "dependencies": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0" @@ -26630,8 +25624,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/p-limit": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, - "license": "MIT", "dependencies": { "p-try": "^1.0.0" }, @@ -26641,8 +25636,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/p-locate": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^1.1.0" }, @@ -26652,16 +25648,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/p-try": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/parse-json": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, - "license": "MIT", "dependencies": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" @@ -26672,16 +25670,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/path-exists": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/path-type": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, - "license": "MIT", "dependencies": { "pify": "^3.0.0" }, @@ -26691,21 +25691,33 @@ }, "node_modules/stylelint-config-rational-order/node_modules/path-type/node_modules/pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/picocolors": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/stylelint-config-rational-order/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, - "license": "ISC" + "engines": { + "node": ">=6" + } }, "node_modules/stylelint-config-rational-order/node_modules/postcss": { "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dev": true, - "license": "MIT", "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" @@ -26720,8 +25732,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/postcss-safe-parser": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz", + "integrity": "sha512-Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g==", "dev": true, - "license": "MIT", "dependencies": { "postcss": "^7.0.26" }, @@ -26729,10 +25742,23 @@ "node": ">=6.0.0" } }, + "node_modules/stylelint-config-rational-order/node_modules/postcss-scss": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-2.1.1.tgz", + "integrity": "sha512-jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.6" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/stylelint-config-rational-order/node_modules/postcss-selector-parser": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", "dev": true, - "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", "indexes-of": "^1.0.1", @@ -26742,23 +25768,39 @@ "node": ">=8" } }, + "node_modules/stylelint-config-rational-order/node_modules/postcss-sorting": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-4.1.0.tgz", + "integrity": "sha512-r4T2oQd1giURJdHQ/RMb72dKZCuLOdWx2B/XhXN1Y1ZdnwXsKH896Qz6vD4tFy9xSjpKNYhlZoJmWyhH/7JUQw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.4", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.14.3" + } + }, "node_modules/stylelint-config-rational-order/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true }, "node_modules/stylelint-config-rational-order/node_modules/quick-lru": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-1.1.0.tgz", + "integrity": "sha512-tRS7sTgyxMXtLum8L65daJnHUhfDUgboRdcWW2bR9vBfrj2+O5HSMbQOJfJJjIVSPFqbBCF37FpwWXGitDc5tA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/read-pkg": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", "dev": true, - "license": "MIT", "dependencies": { "load-json-file": "^4.0.0", "normalize-package-data": "^2.3.2", @@ -26770,8 +25812,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/read-pkg-up": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", + "integrity": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==", "dev": true, - "license": "MIT", "dependencies": { "find-up": "^2.0.0", "read-pkg": "^3.0.0" @@ -26782,8 +25825,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/redent": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz", + "integrity": "sha512-XNwrTx77JQCEMXTeb8movBKuK75MgH0RZkujNuDKCezemx/voapl9i2gCSi8WWm8+ox5ycJi1gxF22fR7c0Ciw==", "dev": true, - "license": "MIT", "dependencies": { "indent-string": "^3.0.0", "strip-indent": "^2.0.0" @@ -26794,16 +25838,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/resolve-from": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/rimraf": { "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "dev": true, - "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -26813,16 +25859,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/slash": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/stylelint-config-rational-order/node_modules/slice-ansi": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^3.2.0", "astral-regex": "^1.0.0", @@ -26834,8 +25882,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/string-width": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, - "license": "MIT", "dependencies": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", @@ -26847,8 +25896,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/strip-ansi": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^4.1.0" }, @@ -26858,16 +25908,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/strip-indent": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz", + "integrity": "sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/stylelint": { "version": "9.10.1", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-9.10.1.tgz", + "integrity": "sha512-9UiHxZhOAHEgeQ7oLGwrwoDR8vclBKlSX7r4fH0iuu0SfPwFaLkb1c7Q2j1cqg9P7IDXeAV2TvQML/fRQzGBBQ==", "dev": true, - "license": "MIT", "dependencies": { "autoprefixer": "^9.0.0", "balanced-match": "^1.0.0", @@ -26926,8 +25978,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/stylelint-order": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-2.2.1.tgz", + "integrity": "sha512-019KBV9j8qp1MfBjJuotse6MgaZqGVtXMc91GU9MsS9Feb+jYUvUU3Z8XiClqPdqJZQ0ryXQJGg3U3PcEjXwfg==", "dev": true, - "license": "MIT", "dependencies": { "lodash": "^4.17.10", "postcss": "^7.0.2", @@ -26942,8 +25995,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/table": { "version": "5.4.6", + "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", + "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "ajv": "^6.10.2", "lodash": "^4.17.14", @@ -26956,8 +26010,9 @@ }, "node_modules/stylelint-config-rational-order/node_modules/to-regex-range": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "dev": true, - "license": "MIT", "dependencies": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" @@ -26968,16 +26023,18 @@ }, "node_modules/stylelint-config-rational-order/node_modules/trim-newlines": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-2.0.0.tgz", + "integrity": "sha512-MTBWv3jhVjTU7XR3IQHllbiJs8sc75a80OEhB6or/q7pLTWgQ0bMGQXXYQSrSuXe6WiKWDZ5txXY5P59a/coVA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/stylelint-config-rational-order/node_modules/which": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -26987,24 +26044,27 @@ }, "node_modules/stylelint-config-rational-order/node_modules/yargs-parser": { "version": "10.1.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", + "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", "dev": true, - "license": "ISC", "dependencies": { "camelcase": "^4.1.0" } }, "node_modules/stylelint-config-recommended": { "version": "10.0.1", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-10.0.1.tgz", + "integrity": "sha512-TQ4xQ48tW4QSlODcti7pgSRqBZcUaBzuh0jPpfiMhwJKBPkqzTIAU+IrSWL/7BgXlOM90DjB7YaNgFpx8QWhuA==", "dev": true, - "license": "MIT", "peerDependencies": { "stylelint": "^15.0.0" } }, "node_modules/stylelint-config-recommended-scss": { "version": "9.0.1", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-9.0.1.tgz", + "integrity": "sha512-qAmz/TdrqslwiMTuLM3QXeISUkfEDUXGMfRBCHm/xrkCJNnQefv+mzG2mWTsWkqcVk8HAyUkug10dwAcYp2fCQ==", "dev": true, - "license": "MIT", "dependencies": { "postcss-scss": "^4.0.2", "stylelint-config-recommended": "^10.0.1", @@ -27020,31 +26080,11 @@ } } }, - "node_modules/stylelint-config-recommended-scss/node_modules/postcss-scss": { - "version": "4.0.6", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss-scss" - } - ], - "license": "MIT", - "engines": { - "node": ">=12.0" - }, - "peerDependencies": { - "postcss": "^8.4.19" - } - }, "node_modules/stylelint-config-standard": { "version": "30.0.1", + "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-30.0.1.tgz", + "integrity": "sha512-NbeHOmpRQhjZh5XB1B/S4MLRWvz4xxAxeDBjzl0tY2xEcayNhLbaRGF0ZQzq+DQZLCcPpOHeS2Ru1ydbkhkmLg==", "dev": true, - "license": "MIT", "dependencies": { "stylelint-config-recommended": "^10.0.1" }, @@ -27054,8 +26094,9 @@ }, "node_modules/stylelint-config-standard-scss": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/stylelint-config-standard-scss/-/stylelint-config-standard-scss-7.0.1.tgz", + "integrity": "sha512-m5sRdtsB1F5fnC1Ozla7ryftU47wVpO+HWd+JQTqeoG0g/oPh5EfbWfcVHbNCEtuoHfALIySiUWS20pz2hX6jA==", "dev": true, - "license": "MIT", "dependencies": { "stylelint-config-recommended-scss": "^9.0.0", "stylelint-config-standard": "^30.0.1" @@ -27064,175 +26105,484 @@ "postcss": "^8.3.3", "stylelint": "^15.0.0" }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - } + "peerDependenciesMeta": { + "postcss": { + "optional": true + } + } + }, + "node_modules/stylelint-order": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-6.0.3.tgz", + "integrity": "sha512-1j1lOb4EU/6w49qZeT2SQVJXm0Ht+Qnq9GMfUa3pMwoyojIWfuA+JUDmoR97Bht1RLn4ei0xtLGy87M7d29B1w==", + "dev": true, + "dependencies": { + "postcss": "^8.4.21", + "postcss-sorting": "^8.0.2" + }, + "peerDependencies": { + "stylelint": "^14.0.0 || ^15.0.0" + } + }, + "node_modules/stylelint-scss": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-4.7.0.tgz", + "integrity": "sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==", + "dev": true, + "dependencies": { + "postcss-media-query-parser": "^0.2.3", + "postcss-resolve-nested-selector": "^0.1.1", + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "stylelint": "^14.5.1 || ^15.0.0" + } + }, + "node_modules/stylelint/node_modules/balanced-match": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", + "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", + "dev": true + }, + "node_modules/stylelint/node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stylelint/node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stylelint/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/stylelint/node_modules/signal-exit": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", + "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/stylelint/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/stylelint/node_modules/write-file-atomic": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", + "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/sugarss": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sugarss/-/sugarss-2.0.0.tgz", + "integrity": "sha512-WfxjozUk0UVA4jm+U1d736AUpzSrNsQcIbyOkoE364GrtWmIrFdk5lksEupgWMD4VaT/0kVx1dobpiDumSgmJQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/sugarss/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/sugarss/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", + "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=14.18" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "dev": true + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "node_modules/synchronous-promise": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.17.tgz", + "integrity": "sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==", + "dev": true + }, + "node_modules/table": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/table/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/stylelint-order": { - "version": "6.0.2", + "node_modules/tar": { + "version": "6.1.14", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.14.tgz", + "integrity": "sha512-piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw==", "dev": true, - "license": "MIT", "dependencies": { - "postcss": "^8.4.21", - "postcss-sorting": "^8.0.1" + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" }, - "peerDependencies": { - "stylelint": "^14.0.0 || ^15.0.0" + "engines": { + "node": ">=10" } }, - "node_modules/stylelint-order/node_modules/postcss-sorting": { - "version": "8.0.2", + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", "dev": true, - "license": "MIT", - "peerDependencies": { - "postcss": "^8.4.20" + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" } }, - "node_modules/stylelint-scss": { - "version": "4.6.0", + "node_modules/tar-fs/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dev": true, - "license": "MIT", "dependencies": { - "dlv": "^1.1.3", - "postcss-media-query-parser": "^0.2.3", - "postcss-resolve-nested-selector": "^0.1.1", - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0" + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" }, - "peerDependencies": { - "stylelint": "^14.5.1 || ^15.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/stylelint/node_modules/argparse": { - "version": "2.0.1", - "dev": true, - "license": "Python-2.0" + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "node_modules/stylelint/node_modules/balanced-match": { - "version": "2.0.0", + "node_modules/telejson": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.1.0.tgz", + "integrity": "sha512-jFJO4P5gPebZAERPkJsqMAQ0IMA1Hi0AoSfxpnUaV6j6R2SZqlpkbS20U6dEUtA3RUYt2Ak/mTlkQzHH9Rv/hA==", "dev": true, - "license": "MIT" + "dependencies": { + "memoizerific": "^1.11.3" + } }, - "node_modules/stylelint/node_modules/cosmiconfig": { - "version": "8.1.3", + "node_modules/temp": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", "dev": true, - "license": "MIT", "dependencies": { - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0" + "rimraf": "~2.6.2" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" + "node": ">=6.0.0" } }, - "node_modules/stylelint/node_modules/global-modules": { + "node_modules/temp-dir": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", "dev": true, - "license": "MIT", - "dependencies": { - "global-prefix": "^3.0.0" - }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/stylelint/node_modules/global-prefix": { - "version": "3.0.0", + "node_modules/temp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "MIT", "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/stylelint/node_modules/js-yaml": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" + "node": "*" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/stylelint/node_modules/which": { - "version": "1.3.1", + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "dev": true, - "license": "ISC", "dependencies": { - "isexe": "^2.0.0" + "glob": "^7.1.3" }, "bin": { - "which": "bin/which" + "rimraf": "bin.js" } }, - "node_modules/stylelint/node_modules/write-file-atomic": { - "version": "5.0.0", + "node_modules/tempy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz", + "integrity": "sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==", "dev": true, - "license": "ISC", "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" + "del": "^6.0.0", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/sugarss": { - "version": "2.0.0", + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", "dev": true, - "license": "MIT", - "dependencies": { - "postcss": "^7.0.2" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/sugarss/node_modules/picocolors": { - "version": "0.2.1", - "dev": true, - "license": "ISC" - }, - "node_modules/sugarss/node_modules/postcss": { - "version": "7.0.39", + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", "dev": true, - "license": "MIT", "dependencies": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/supports-color": { - "version": "5.5.0", - "license": "MIT", + "node_modules/terminal-link/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/terminal-link/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/supports-hyperlinks": { + "node_modules/terminal-link/node_modules/supports-hyperlinks": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" @@ -27241,1265 +26591,1496 @@ "node": ">=8" } }, - "node_modules/supports-hyperlinks/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, - "license": "MIT", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, "engines": { "node": ">=8" } }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=8" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/supports-preserve-symlinks-flag": { + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/throttleit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", + "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", + "dev": true + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/isarray": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/svg-tags": { - "version": "1.0.0", + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "dev": true, - "license": "MIT" - }, - "node_modules/synchronous-promise": { - "version": "2.0.17", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/table": { - "version": "6.8.1", + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=10.0.0" + "safe-buffer": "~5.1.0" } }, - "node_modules/table/node_modules/ajv": { - "version": "8.12.0", + "node_modules/tinybench": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.5.0.tgz", + "integrity": "sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA==", + "dev": true + }, + "node_modules/tinypool": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-0.4.0.tgz", + "integrity": "sha512-2ksntHOKf893wSAH4z/+JbPpi92esw8Gn9N2deXX+B0EO92hexAVI9GIZZPx7P5aYo5KULfeOSt3kMOmSOy6uA==", "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=14.0.0" } }, - "node_modules/table/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/tinyspy": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-1.1.1.tgz", + "integrity": "sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==", "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=14.0.0" } }, - "node_modules/table/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", "dev": true, - "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "rimraf": "^3.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=8.17.0" } }, - "node_modules/table/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true, - "license": "MIT" + "engines": { + "node": ">=4" + } }, - "node_modules/table/node_modules/slice-ansi": { - "version": "4.0.0", + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", "dev": true, - "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "kind-of": "^3.0.2" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/tar": { - "version": "6.1.13", + "node_modules/to-object-path/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "license": "ISC", "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^4.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" + "is-buffer": "^1.1.5" }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/tar-fs": { - "version": "2.1.1", + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "dev": true, - "license": "MIT", "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/tar-stream": { - "version": "2.2.0", - "dev": true, - "license": "MIT", + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" + "is-number": "^7.0.0" }, "engines": { - "node": ">=6" + "node": ">=8.0" } }, - "node_modules/tar/node_modules/chownr": { - "version": "2.0.0", + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "dev": true, - "license": "ISC", "engines": { - "node": ">=10" + "node": ">=0.6" } }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", + "node_modules/topbar": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/topbar/-/topbar-0.1.4.tgz", + "integrity": "sha512-P3n4WnN4GFd2mQXDo30rQmsAGe4V1bVkggtTreSbNyL50Fyc+eVkW5oatSLeGQmJoan2TLIgoXUZypN+6nw4MQ==" + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "dev": true, - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" }, "engines": { - "node": ">=10" + "node": ">=0.8" } }, - "node_modules/telejson": { - "version": "7.1.0", + "node_modules/tr46": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", + "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", "dev": true, - "license": "MIT", "dependencies": { - "memoizerific": "^1.11.3" + "punycode": "^2.3.0" + }, + "engines": { + "node": ">=14" } }, - "node_modules/temp": { - "version": "0.8.4", + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true, - "license": "MIT", - "dependencies": { - "rimraf": "~2.6.2" - }, - "engines": { - "node": ">=6.0.0" + "bin": { + "tree-kill": "cli.js" } }, - "node_modules/temp-dir": { - "version": "2.0.0", + "node_modules/trim": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", + "integrity": "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==", + "deprecated": "Use String.prototype.trim() instead", + "dev": true + }, + "node_modules/trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/temp/node_modules/brace-expansion": { - "version": "1.1.11", + "node_modules/trim-trailing-lines": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz", + "integrity": "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==", "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/temp/node_modules/glob": { - "version": "7.2.3", + "node_modules/trough": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/temp/node_modules/minimatch": { - "version": "3.1.2", + "node_modules/ts-dedent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz", + "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, "engines": { - "node": "*" + "node": ">=6.10" } }, - "node_modules/temp/node_modules/rimraf": { - "version": "2.6.3", + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", "dev": true, - "license": "ISC", "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" } }, - "node_modules/tempy": { - "version": "1.0.1", + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, - "license": "MIT", "dependencies": { - "del": "^6.0.0", - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "type-fest": "^0.16.0", - "unique-string": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tempy/node_modules/type-fest": { - "version": "0.16.0", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" + "minimist": "^1.2.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "json5": "lib/cli.js" } }, - "node_modules/terminal-link": { - "version": "2.1.1", + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/test-exclude": { - "version": "6.0.0", + "node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, - "license": "ISC", "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" + "tslib": "^1.8.1" }, "engines": { - "node": ">=8" + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, - "node_modules/test-exclude/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, - "node_modules/test-exclude/node_modules/glob": { - "version": "7.2.3", + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "dev": true, - "license": "ISC", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "safe-buffer": "^5.0.1" }, "engines": { "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/test-exclude/node_modules/minimatch": { - "version": "3.1.2", + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, - "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" + "prelude-ls": "^1.2.1" }, "engines": { - "node": "*" + "node": ">= 0.8.0" } }, - "node_modules/text-table": { - "version": "0.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/throttleit": { - "version": "1.0.0", + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, - "license": "MIT" + "engines": { + "node": ">=4" + } }, - "node_modules/through": { - "version": "2.3.8", + "node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, - "license": "MIT" + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/through2": { - "version": "2.0.5", + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, - "license": "MIT", "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" } }, - "node_modules/through2/node_modules/isarray": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", "dev": true, - "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/through2/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, - "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" + "is-typedarray": "^1.0.0" } }, - "node_modules/tinybench": { - "version": "2.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/tinypool": { - "version": "0.3.1", - "dev": true, - "license": "MIT", + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, "engines": { - "node": ">=14.0.0" + "node": ">=4.2.0" } }, - "node_modules/tinyspy": { - "version": "1.1.1", + "node_modules/ufo": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.1.2.tgz", + "integrity": "sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==", + "dev": true + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", "dev": true, - "license": "MIT", + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, "engines": { - "node": ">=14.0.0" + "node": ">=0.8.0" } }, - "node_modules/tmp": { - "version": "0.2.1", + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, - "license": "MIT", "dependencies": { - "rimraf": "^3.0.0" + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" }, - "engines": { - "node": ">=8.17.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tmpl": { - "version": "1.0.5", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" + "node_modules/uncontrollable": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", + "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "dependencies": { + "@babel/runtime": "^7.6.3", + "@types/react": ">=16.9.11", + "invariant": "^2.2.4", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": ">=15.0.0" } }, - "node_modules/to-object-path": { - "version": "0.3.0", + "node_modules/unfetch": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz", + "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==", + "dev": true + }, + "node_modules/unherit": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz", + "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==", "dev": true, - "license": "MIT", "dependencies": { - "kind-of": "^3.0.2" + "inherits": "^2.0.0", + "xtend": "^4.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/to-regex": { - "version": "3.0.2", + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, - "license": "MIT", "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, "engines": { - "node": ">=8.0" + "node": ">=4" } }, - "node_modules/toidentifier": { - "version": "1.0.1", + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true, - "license": "MIT", "engines": { - "node": ">=0.6" + "node": ">=4" } }, - "node_modules/tough-cookie": { - "version": "2.5.0", + "node_modules/unified": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/unified/-/unified-7.1.0.tgz", + "integrity": "sha512-lbk82UOIGuCEsZhPj8rNAkXSDXd6p0QLzIuSsCdxrqnqU56St4eyOB+AlXsVgVeRmetPTYydIuvFfpDIed8mqw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" + "@types/unist": "^2.0.0", + "@types/vfile": "^3.0.0", + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^1.1.0", + "trough": "^1.0.0", + "vfile": "^3.0.0", + "x-is-string": "^0.1.0" } }, - "node_modules/tr46": { - "version": "3.0.0", + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "dev": true, - "license": "MIT", "dependencies": { - "punycode": "^2.1.1" + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" }, "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/tree-kill": { - "version": "1.2.2", + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, - "license": "MIT", - "bin": { - "tree-kill": "cli.js" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/trim": { - "version": "0.0.1", + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", "dev": true }, - "node_modules/trim-newlines": { - "version": "3.0.1", + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", "dev": true, - "license": "MIT", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/trim-trailing-lines": { - "version": "1.1.4", - "dev": true, - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/trough": { + "node_modules/unist-util-find-all-after": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-1.0.5.tgz", + "integrity": "sha512-lWgIc3rrTMTlK1Y0hEuL+k+ApzFk78h+lsaa2gHf63Gp5Ww+mt11huDniuaoq1H+XMK2lIIjjPkncxXcDp3QDw==", "dev": true, - "license": "MIT", + "dependencies": { + "unist-util-is": "^3.0.0" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/ts-dedent": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.10" - } + "node_modules/unist-util-find-all-after/node_modules/unist-util-is": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz", + "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==", + "dev": true }, - "node_modules/tsconfig-paths": { - "version": "3.14.2", + "node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", "dev": true, - "license": "MIT", - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", + "node_modules/unist-util-remove-position": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.4.tgz", + "integrity": "sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==", "dev": true, - "license": "MIT", "dependencies": { - "minimist": "^1.2.0" + "unist-util-visit": "^1.1.0" }, - "bin": { - "json5": "lib/cli.js" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/tsconfig-paths/node_modules/strip-bom": { + "node_modules/unist-util-remove-position/node_modules/unist-util-is": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz", + "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==", + "dev": true + }, + "node_modules/unist-util-remove-position/node_modules/unist-util-visit": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz", + "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" + "dependencies": { + "unist-util-visit-parents": "^2.0.0" } }, - "node_modules/tslib": { - "version": "2.5.0", - "license": "0BSD" - }, - "node_modules/tsutils": { - "version": "3.21.0", + "node_modules/unist-util-remove-position/node_modules/unist-util-visit-parents": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz", + "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==", "dev": true, - "license": "MIT", "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + "unist-util-is": "^3.0.0" } }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "dev": true, - "license": "0BSD" + "node_modules/unist-util-stringify-position": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz", + "integrity": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==", + "dev": true }, - "node_modules/tunnel-agent": { - "version": "0.6.0", + "node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "safe-buffer": "^5.0.1" + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" }, - "engines": { - "node": "*" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "dev": true, - "license": "Unlicense" - }, - "node_modules/type-check": { - "version": "0.3.2", + "node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", "dev": true, - "license": "MIT", "dependencies": { - "prelude-ls": "~1.1.2" + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" }, - "engines": { - "node": ">= 0.8.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/type-detect": { - "version": "4.0.8", + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true, - "license": "MIT", "engines": { - "node": ">=4" + "node": ">= 10.0.0" } }, - "node_modules/type-fest": { - "version": "2.19.0", + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8" } }, - "node_modules/type-is": { - "version": "1.6.18", + "node_modules/unplugin": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-0.10.2.tgz", + "integrity": "sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==", "dev": true, - "license": "MIT", "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" + "acorn": "^8.8.0", + "chokidar": "^3.5.3", + "webpack-sources": "^3.2.3", + "webpack-virtual-modules": "^0.4.5" + } + }, + "node_modules/unplugin/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": ">= 0.6" + "node": ">=0.4.0" } }, - "node_modules/typed-array-length": { - "version": "1.0.4", + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" + "has-value": "^0.3.1", + "isobject": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/typedarray": { - "version": "0.0.6", - "dev": true, - "license": "MIT" - }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", "dev": true, - "license": "MIT", "dependencies": { - "is-typedarray": "^1.0.0" + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/typescript": { - "version": "4.9.5", - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "dependencies": { + "isarray": "1.0.0" }, "engines": { - "node": ">=4.2.0" + "node": ">=0.10.0" } }, - "node_modules/ufo": { - "version": "1.1.1", + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", "dev": true, - "license": "MIT" + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/uglify-js": { - "version": "3.17.4", + "node_modules/unset-value/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", "dev": true, - "license": "BSD-2-Clause", - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, "engines": { - "node": ">=0.8.0" + "node": ">=8" } }, - "node_modules/unbox-primitive": { - "version": "1.0.2", + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "escalade": "^3.1.1", + "picocolors": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/uncontrollable": { - "version": "7.2.1", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.6.3", - "@types/react": ">=16.9.11", - "invariant": "^2.2.4", - "react-lifecycles-compat": "^3.0.4" + "bin": { + "update-browserslist-db": "cli.js" }, "peerDependencies": { - "react": ">=15.0.0" + "browserslist": ">= 4.21.0" } }, - "node_modules/unfetch": { - "version": "4.2.0", + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, - "license": "MIT" + "dependencies": { + "punycode": "^2.1.0" + } }, - "node_modules/unherit": { - "version": "1.1.3", + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", "dev": true, - "license": "MIT", "dependencies": { - "inherits": "^2.0.0", - "xtend": "^4.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" } }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", "dev": true, - "license": "MIT", "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", + "node_modules/use-resize-observer": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/use-resize-observer/-/use-resize-observer-9.1.0.tgz", + "integrity": "sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==", "dev": true, - "license": "MIT", "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" + "@juggle/resize-observer": "^3.3.1" }, - "engines": { - "node": ">=4" + "peerDependencies": { + "react": "16.8.0 - 18", + "react-dom": "16.8.0 - 18" } }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" } }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "dev": true, - "license": "MIT", "engines": { - "node": ">=4" + "node": ">= 0.4.0" } }, - "node_modules/union-value": { - "version": "1.0.1", + "node_modules/uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", "dev": true, - "license": "MIT", "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10.12.0" } }, - "node_modules/uniq": { - "version": "1.0.1", + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, - "license": "MIT" + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } }, - "node_modules/unique-string": { - "version": "2.0.0", + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true, - "license": "MIT", - "dependencies": { - "crypto-random-string": "^2.0.0" - }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/unist-util-find-all-after": { - "version": "1.0.5", + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "dev": true, - "license": "MIT", + "engines": [ + "node >=0.6.0" + ], "dependencies": { - "unist-util-is": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" } }, - "node_modules/unist-util-find-all-after/node_modules/unist-util-is": { - "version": "3.0.0", + "node_modules/vfile": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-3.0.1.tgz", + "integrity": "sha512-y7Y3gH9BsUSdD4KzHsuMaCzRjglXN0W2EcMf0gpvu6+SbsGhMje7xDc8AEoeXy6mIwCKMI6BkjMsRjzQbhMEjQ==", "dev": true, - "license": "MIT" + "dependencies": { + "is-buffer": "^2.0.0", + "replace-ext": "1.0.0", + "unist-util-stringify-position": "^1.0.0", + "vfile-message": "^1.0.0" + } }, - "node_modules/unist-util-is": { - "version": "4.1.0", + "node_modules/vfile-location": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.6.tgz", + "integrity": "sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/unist-util-stringify-position": { - "version": "2.0.3", + "node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "dev": true, - "license": "MIT", "dependencies": { - "@types/unist": "^2.0.2" + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/unist-util-visit": { - "version": "2.0.3", + "node_modules/vfile-message/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", "dev": true, - "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" + "@types/unist": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/unist-util-visit-parents": { - "version": "3.1.1", + "node_modules/vfile/node_modules/vfile-message": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz", + "integrity": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==", "dev": true, - "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" + "unist-util-stringify-position": "^1.1.1" + } + }, + "node_modules/vite": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.1.0.tgz", + "integrity": "sha512-YoUKE/9bbK4C8ZeSYMDDEF8H5aypmWUq4WisftDhntR1gkI2zt2SGT/5Wd2xu6ZoVXkCyO3U4844KWG9e4nFoQ==", + "dev": true, + "dependencies": { + "esbuild": "^0.16.14", + "postcss": "^8.4.21", + "resolve": "^1.22.1", + "rollup": "^3.10.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } } }, - "node_modules/universalify": { - "version": "2.0.0", + "node_modules/vite-node": { + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.29.8.tgz", + "integrity": "sha512-b6OtCXfk65L6SElVM20q5G546yu10/kNrhg08afEoWlFRJXFq9/6glsvSVY+aI6YeC1tu2TtAqI2jHEQmOmsFw==", "dev": true, - "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.4", + "mlly": "^1.1.0", + "pathe": "^1.1.0", + "picocolors": "^1.0.0", + "vite": "^3.0.0 || ^4.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, "engines": { - "node": ">= 10.0.0" + "node": ">=v14.16.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/unpipe": { - "version": "1.0.0", + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz", + "integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==", + "cpu": [ + "arm" + ], "dev": true, - "license": "MIT", + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unplugin": { - "version": "0.10.2", - "dev": true, - "license": "MIT", - "dependencies": { - "acorn": "^8.8.0", - "chokidar": "^3.5.3", - "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.4.5" + "node": ">=12" } }, - "node_modules/unset-value": { - "version": "1.0.0", + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz", + "integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz", + "integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz", + "integrity": "sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "isarray": "1.0.0" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz", + "integrity": "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/unset-value/node_modules/isarray": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/untildify": { - "version": "4.0.0", + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz", + "integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/update-browserslist-db": { - "version": "1.0.11", + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz", + "integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } + "optional": true, + "os": [ + "freebsd" ], - "license": "MIT", - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" + "engines": { + "node": ">=12" } }, - "node_modules/uri-js": { - "version": "4.4.1", + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz", + "integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==", + "cpu": [ + "arm" + ], "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/urix": { - "version": "0.1.0", - "dev": true, - "license": "MIT" - }, - "node_modules/url-parse": { - "version": "1.5.10", + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz", + "integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/use": { - "version": "3.1.1", + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz", + "integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==", + "cpu": [ + "ia32" + ], "dev": true, - "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/use-resize-observer": { - "version": "9.1.0", + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz", + "integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==", + "cpu": [ + "loong64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "@juggle/resize-observer": "^3.3.1" - }, - "peerDependencies": { - "react": "16.8.0 - 18", - "react-dom": "16.8.0 - 18" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/util": { - "version": "0.12.5", + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz", + "integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==", + "cpu": [ + "mips64el" + ], "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/utils-merge": { - "version": "1.0.1", + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz", + "integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==", + "cpu": [ + "ppc64" + ], "dev": true, - "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 0.4.0" + "node": ">=12" } }, - "node_modules/uuid": { - "version": "8.3.2", + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz", + "integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==", + "cpu": [ + "riscv64" + ], "dev": true, - "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/uuid-browser": { - "version": "3.1.0", - "dev": true, - "license": "MIT" - }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/v8-to-istanbul": { - "version": "9.1.0", + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz", + "integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==", + "cpu": [ + "s390x" + ], "dev": true, - "license": "ISC", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=10.12.0" + "node": ">=12" } }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz", + "integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==", + "cpu": [ + "x64" + ], "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/vary": { - "version": "1.1.2", + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz", + "integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": ">= 0.8" + "node": ">=12" } }, - "node_modules/verror": { - "version": "1.10.0", + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz", + "integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==", + "cpu": [ + "x64" + ], "dev": true, - "engines": [ - "node >=0.6.0" + "optional": true, + "os": [ + "openbsd" ], - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" + "engines": { + "node": ">=12" } }, - "node_modules/verror/node_modules/core-util-is": { - "version": "1.0.2", + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz", + "integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT" + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/vfile-message": { - "version": "2.0.4", + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz", + "integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "node_modules/vite": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.1.0.tgz", - "integrity": "sha512-YoUKE/9bbK4C8ZeSYMDDEF8H5aypmWUq4WisftDhntR1gkI2zt2SGT/5Wd2xu6ZoVXkCyO3U4844KWG9e4nFoQ==", + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz", + "integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "esbuild": "^0.16.14", - "postcss": "^8.4.21", - "resolve": "^1.22.1", - "rollup": "^3.10.0" - }, - "bin": { - "vite": "bin/vite.js" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } + "node": ">=12" } }, - "node_modules/vite-node": { - "version": "0.29.2", + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.16.17", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz", + "integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "cac": "^6.7.14", - "debug": "^4.3.4", - "mlly": "^1.1.0", - "pathe": "^1.1.0", - "picocolors": "^1.0.0", - "vite": "^3.0.0 || ^4.0.0" - }, - "bin": { - "vite-node": "vite-node.mjs" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=v14.16.0" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" + "node": ">=12" } }, "node_modules/vite/node_modules/esbuild": { "version": "0.16.17", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz", + "integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==", "dev": true, "hasInstallScript": true, - "license": "MIT", "bin": { "esbuild": "bin/esbuild" }, @@ -28532,17 +28113,18 @@ } }, "node_modules/vitest": { - "version": "0.29.2", + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-0.29.8.tgz", + "integrity": "sha512-JIAVi2GK5cvA6awGpH0HvH/gEG9PZ0a/WoxdiV3PmqK+3CjQMf8c+J/Vhv4mdZ2nRyXFw66sAg6qz7VNkaHfDQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/chai": "^4.3.4", "@types/chai-subset": "^1.3.3", "@types/node": "*", - "@vitest/expect": "0.29.2", - "@vitest/runner": "0.29.2", - "@vitest/spy": "0.29.2", - "@vitest/utils": "0.29.2", + "@vitest/expect": "0.29.8", + "@vitest/runner": "0.29.8", + "@vitest/spy": "0.29.8", + "@vitest/utils": "0.29.8", "acorn": "^8.8.1", "acorn-walk": "^8.2.0", "cac": "^6.7.14", @@ -28555,10 +28137,10 @@ "std-env": "^3.3.1", "strip-literal": "^1.0.0", "tinybench": "^2.3.1", - "tinypool": "^0.3.1", + "tinypool": "^0.4.0", "tinyspy": "^1.0.2", "vite": "^3.0.0 || ^4.0.0", - "vite-node": "0.29.2", + "vite-node": "0.29.8", "why-is-node-running": "^2.2.2" }, "bin": { @@ -28575,7 +28157,10 @@ "@vitest/browser": "*", "@vitest/ui": "*", "happy-dom": "*", - "jsdom": "*" + "jsdom": "*", + "playwright": "*", + "safaridriver": "*", + "webdriverio": "*" }, "peerDependenciesMeta": { "@edge-runtime/vm": { @@ -28592,28 +28177,52 @@ }, "jsdom": { "optional": true + }, + "playwright": { + "optional": true + }, + "safaridriver": { + "optional": true + }, + "webdriverio": { + "optional": true } } }, + "node_modules/vitest/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/vitest/node_modules/acorn-walk": { "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/void-elements": { "version": "3.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", + "integrity": "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==", "engines": { "node": ">=0.10.0" } }, "node_modules/w3c-xmlserializer": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", "dev": true, - "license": "MIT", "dependencies": { "xml-name-validator": "^4.0.0" }, @@ -28623,8 +28232,9 @@ }, "node_modules/wait-on": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-5.3.0.tgz", + "integrity": "sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==", "dev": true, - "license": "MIT", "dependencies": { "axios": "^0.21.1", "joi": "^17.3.0", @@ -28639,10 +28249,38 @@ "node": ">=8.9.0" } }, + "node_modules/wait-on/node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/wait-on/node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dev": true, + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/wait-on/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, "node_modules/wait-port": { "version": "0.2.14", + "resolved": "https://registry.npmjs.org/wait-port/-/wait-port-0.2.14.tgz", + "integrity": "sha512-kIzjWcr6ykl7WFbZd0TMae8xovwqcqbx6FM9l+7agOgUByhzdjfzZBPK2CPufldTOMxbUivss//Sh9MFawmPRQ==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^2.4.2", "commander": "^3.0.2", @@ -28657,24 +28295,40 @@ }, "node_modules/wait-port/node_modules/commander": { "version": "3.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz", + "integrity": "sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==", + "dev": true }, "node_modules/walker": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "makeerror": "1.0.12" } }, "node_modules/warning": { "version": "4.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", "dependencies": { "loose-envify": "^1.0.0" } }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", @@ -28698,33 +28352,38 @@ }, "node_modules/web-vitals": { "version": "2.1.4", - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", + "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==" }, "node_modules/webidl-conversions": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=12" } }, "node_modules/webpack-sources": { "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "dev": true, - "license": "MIT", "engines": { "node": ">=10.13.0" } }, "node_modules/webpack-virtual-modules": { "version": "0.4.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz", + "integrity": "sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==", + "dev": true }, "node_modules/whatwg-encoding": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", "dev": true, - "license": "MIT", "dependencies": { "iconv-lite": "0.6.3" }, @@ -28734,8 +28393,9 @@ }, "node_modules/whatwg-encoding/node_modules/iconv-lite": { "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, - "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, @@ -28745,28 +28405,31 @@ }, "node_modules/whatwg-mimetype": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=12" } }, "node_modules/whatwg-url": { - "version": "11.0.0", + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-12.0.1.tgz", + "integrity": "sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==", "dev": true, - "license": "MIT", "dependencies": { - "tr46": "^3.0.0", + "tr46": "^4.1.1", "webidl-conversions": "^7.0.0" }, "engines": { - "node": ">=12" + "node": ">=14" } }, "node_modules/which": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -28779,7 +28442,8 @@ }, "node_modules/which-boxed-primitive": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", @@ -28793,7 +28457,8 @@ }, "node_modules/which-collection": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", "dependencies": { "is-map": "^2.0.1", "is-set": "^2.0.1", @@ -28805,13 +28470,15 @@ } }, "node_modules/which-module": { - "version": "2.0.0", - "dev": true, - "license": "ISC" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true }, "node_modules/which-typed-array": { "version": "1.1.9", - "license": "MIT", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -28829,8 +28496,9 @@ }, "node_modules/why-is-node-running": { "version": "2.2.2", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.2.2.tgz", + "integrity": "sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==", "dev": true, - "license": "MIT", "dependencies": { "siginfo": "^2.0.0", "stackback": "0.0.2" @@ -28844,16 +28512,18 @@ }, "node_modules/wide-align": { "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "dev": true, - "license": "ISC", "dependencies": { "string-width": "^1.0.2 || 2 || 3 || 4" } }, "node_modules/widest-line": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", "dev": true, - "license": "MIT", "dependencies": { "string-width": "^4.0.0" }, @@ -28863,21 +28533,24 @@ }, "node_modules/word-wrap": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/wordwrap": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true }, "node_modules/wrap-ansi": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -28892,8 +28565,9 @@ }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -28904,31 +28578,17 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/wrappy": { "version": "1.0.2", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true }, "node_modules/write": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", + "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", "dev": true, - "license": "MIT", "dependencies": { "mkdirp": "^0.5.1" }, @@ -28938,8 +28598,9 @@ }, "node_modules/write-file-atomic": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, - "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^3.0.7" @@ -28948,10 +28609,23 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/write/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, "node_modules/ws": { "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -28970,51 +28644,60 @@ }, "node_modules/x-is-string": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz", + "integrity": "sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==", "dev": true }, "node_modules/xml": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==", + "dev": true }, "node_modules/xml-name-validator": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=12" } }, "node_modules/xmlchars": { "version": "2.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true }, "node_modules/xtend": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4" } }, "node_modules/y18n": { "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, - "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yallist": { - "version": "4.0.0", - "dev": true, - "license": "ISC" + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true }, "node_modules/yargs": { "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, - "license": "MIT", "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", @@ -29030,16 +28713,18 @@ }, "node_modules/yargs-parser": { "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, - "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yauzl": { "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "dev": true, - "license": "MIT", "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" @@ -29047,8 +28732,9 @@ }, "node_modules/yocto-queue": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, diff --git a/package.json b/package.json index a682d21c1..ebe6f3910 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "react-bootstrap-icons": "^1.10.3", "react-i18next": "^12.1.5", "react-router-dom": "^6.8.1", + "react-topbar-progress-indicator": "^4.1.1", "sass": "^1.58.1", "typescript": "^4.9.5", "web-vitals": "^2.1.4" diff --git a/src/index.tsx b/src/index.tsx index becc006c4..70c549d2e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -4,13 +4,16 @@ import App from './App' import reportWebVitals from './reportWebVitals' import './i18n' import { ThemeProvider } from './sections/ui/theme/ThemeProvider' +import { LoadingProvider } from './sections/loading/LoadingProvider' const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement) root.render( - + + + diff --git a/src/sections/layout/Layout.tsx b/src/sections/layout/Layout.tsx index 80e72256c..f16e08e95 100644 --- a/src/sections/layout/Layout.tsx +++ b/src/sections/layout/Layout.tsx @@ -3,10 +3,12 @@ import { Container } from '../ui/grid/Container' import styles from './Layout.module.scss' import { HeaderFactory } from './header/HeaderFactory' import { FooterFactory } from './footer/FooterFactory' +import TopBarProgressIndicator from './topbar-progress-indicator/TopbarProgressIndicator' export function Layout() { return ( <> + {HeaderFactory.create()} diff --git a/src/sections/layout/topbar-progress-indicator/TopbarProgressIndicator.tsx b/src/sections/layout/topbar-progress-indicator/TopbarProgressIndicator.tsx new file mode 100644 index 000000000..9fbfd1c85 --- /dev/null +++ b/src/sections/layout/topbar-progress-indicator/TopbarProgressIndicator.tsx @@ -0,0 +1,26 @@ +import TopBarProgress from 'react-topbar-progress-indicator' +import { useTheme } from '../../ui/theme/ThemeProvider' +import { useEffect, useState } from 'react' +import { useLoading } from '../../loading/LoadingContext' + +const TopBarProgressIndicator = () => { + const theme = useTheme() + const { isLoading } = useLoading() + const [progress, setProgress] = useState(false) + + useEffect(() => { + setProgress(isLoading) + }, [isLoading]) + + TopBarProgress.config({ + barColors: { + '0': theme.color.brand, + '1.0': theme.color.secondary + }, + shadowBlur: 5 + }) + + return progress ? : <> +} + +export default TopBarProgressIndicator diff --git a/src/sections/loading/LoadingContext.tsx b/src/sections/loading/LoadingContext.tsx new file mode 100644 index 000000000..e6b1f7dae --- /dev/null +++ b/src/sections/loading/LoadingContext.tsx @@ -0,0 +1,13 @@ +import { createContext, useContext } from 'react' + +interface LoadingContextProps { + isLoading: boolean + setIsLoading: (isLoading: boolean) => void +} + +export const LoadingContext = createContext({ + isLoading: false, + setIsLoading: () => {} +}) + +export const useLoading = () => useContext(LoadingContext) diff --git a/src/sections/loading/LoadingProvider.tsx b/src/sections/loading/LoadingProvider.tsx new file mode 100644 index 000000000..9b9139fa1 --- /dev/null +++ b/src/sections/loading/LoadingProvider.tsx @@ -0,0 +1,12 @@ +import { useState, PropsWithChildren } from 'react' +import { LoadingContext } from './LoadingContext' + +export function LoadingProvider({ children }: PropsWithChildren) { + const [isLoading, setIsLoading] = useState(false) + + return ( + + {children} + + ) +} diff --git a/tests/sections/layout/topbar-progress-indicator/TopbarProgressIndicator.test.tsx b/tests/sections/layout/topbar-progress-indicator/TopbarProgressIndicator.test.tsx new file mode 100644 index 000000000..b2e7326c7 --- /dev/null +++ b/tests/sections/layout/topbar-progress-indicator/TopbarProgressIndicator.test.tsx @@ -0,0 +1,24 @@ +import { render } from '@testing-library/react' +import TopBarProgressIndicator from '../../../../src/sections/layout/topbar-progress-indicator/TopbarProgressIndicator' +import { vi } from 'vitest' + +vi.mock('../../loading/LoadingContext', () => ({ + useLoading: vi.fn().mockReturnValue({ + isLoading: false + }) +})) + +describe('TopBarProgressIndicator', () => { + beforeEach(() => { + vi.spyOn(console, 'error').mockImplementation(() => {}) + }) + + afterEach(() => { + vi.restoreAllMocks() + }) + + it('should render without errors', () => { + const { container } = render() + expect(container.firstChild).toBeNull() + }) +}) diff --git a/tests/sections/loading/LoadingProvider.test.tsx b/tests/sections/loading/LoadingProvider.test.tsx new file mode 100644 index 000000000..ff0b89ea7 --- /dev/null +++ b/tests/sections/loading/LoadingProvider.test.tsx @@ -0,0 +1,45 @@ +import { fireEvent, render } from '@testing-library/react' +import { LoadingProvider } from '../../../src/sections/loading/LoadingProvider' +import { useLoading } from '../../../src/sections/loading/LoadingContext' + +describe('LoadingProvider', () => { + it('should render children', () => { + const { getByText } = render( + +
Hello, world!
+
+ ) + + expect(getByText('Hello, world!')).toBeInTheDocument() + }) + + it('should set isLoading to true when setIsLoading is called', async () => { + const buttonText = 'Toggle Loading' + const TestComponent = () => { + const { isLoading, setIsLoading } = useLoading() + return ( + <> + + {isLoading &&
Loading...
} + + ) + } + + const { getByText, queryByText, findByText } = render( + + + + ) + + const toggleLoadingButton = getByText(buttonText) + expect(toggleLoadingButton).toBeInTheDocument() + + const loadingTextNull = queryByText('Loading...') + expect(loadingTextNull).not.toBeInTheDocument() + + fireEvent.click(toggleLoadingButton) + + const loadingText = await findByText('Loading...') + expect(loadingText).toBeInTheDocument() + }) +}) From da3a714afc87270a44cbc495f82504a3f57ed8be Mon Sep 17 00:00:00 2001 From: MellyGray Date: Wed, 10 May 2023 18:47:22 +0200 Subject: [PATCH 06/24] feat(Dataset Boilerplate): handle isLoading and no dataset found states --- .storybook/preview.tsx | 4 +- package-lock.json | 10 ++++ package.json | 1 + src/index.tsx | 8 +-- src/sections/dataset/Dataset.tsx | 62 ++++++++++++-------- src/sections/dataset/DatasetSkeleton.tsx | 41 +++++++++++++ src/sections/dataset/useDataset.tsx | 8 ++- src/sections/page-not-found/PageNotFound.tsx | 13 ++++ src/stories/WithLayout.tsx | 21 ++++--- src/stories/WithLayoutLoading.tsx | 20 +++++++ src/stories/dataset/Dataset.stories.tsx | 46 ++++++++++++--- 11 files changed, 184 insertions(+), 50 deletions(-) create mode 100644 src/sections/dataset/DatasetSkeleton.tsx create mode 100644 src/sections/page-not-found/PageNotFound.tsx create mode 100644 src/stories/WithLayoutLoading.tsx diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index 430c9e50a..ebba08703 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -27,9 +27,7 @@ const preview: Preview = { decorators: [ (Story) => ( - - - + ), mswDecorator diff --git a/package-lock.json b/package-lock.json index 66bde86b1..a01a88b93 100644 --- a/package-lock.json +++ b/package-lock.json @@ -69,6 +69,7 @@ "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", + "react-loading-skeleton": "^3.3.1", "sinon": "^15.0.3", "storybook": "^7.0.2", "stylelint": "^15.1.0", @@ -23020,6 +23021,15 @@ "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" }, + "node_modules/react-loading-skeleton": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/react-loading-skeleton/-/react-loading-skeleton-3.3.1.tgz", + "integrity": "sha512-NilqqwMh2v9omN7LteiDloEVpFyMIa0VGqF+ukqp0ncVlYu1sKYbYGX9JEl+GtOT9TKsh04zCHAbavnQ2USldA==", + "dev": true, + "peerDependencies": { + "react": ">=16.8.0" + } + }, "node_modules/react-refresh": { "version": "0.14.0", "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", diff --git a/package.json b/package.json index ebe6f3910..cace2e8c0 100644 --- a/package.json +++ b/package.json @@ -118,6 +118,7 @@ "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", + "react-loading-skeleton": "^3.3.1", "sinon": "^15.0.3", "storybook": "^7.0.2", "stylelint": "^15.1.0", diff --git a/src/index.tsx b/src/index.tsx index 70c549d2e..52b70e3d7 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -10,11 +10,11 @@ const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement) root.render( - - + + - - + + ) diff --git a/src/sections/dataset/Dataset.tsx b/src/sections/dataset/Dataset.tsx index d43b2e43e..a7844ba64 100644 --- a/src/sections/dataset/Dataset.tsx +++ b/src/sections/dataset/Dataset.tsx @@ -5,6 +5,9 @@ import { Col } from '../ui/grid/Col' import { Row } from '../ui/grid/Row' import styles from './Dataset.module.scss' import { DatasetLabels } from './dataset-labels/DatasetLabels' +import { useLoading } from '../loading/LoadingContext' +import { DatasetSkeleton } from './DatasetSkeleton' +import { PageNotFound } from '../page-not-found/PageNotFound' interface DatasetProps { datasetRepository: DatasetRepository @@ -13,29 +16,40 @@ interface DatasetProps { export function Dataset({ datasetRepository, id }: DatasetProps) { const { dataset } = useDataset(datasetRepository, id) + const { isLoading } = useLoading() - return dataset ? ( -
-
-

{dataset.title}

- -
-
- - Citation Block - - - Summary Block - - - -
Files Section
-
- -
Metadata Section
-
-
-
-
- ) : null + if (isLoading) { + return + } + + return ( + <> + {!dataset ? ( + + ) : ( +
+
+

{dataset.title}

+ +
+
+ + Citation Block + + + Summary Block + + + +
Files Section
+
+ +
Metadata Section
+
+
+
+
+ )} + + ) } diff --git a/src/sections/dataset/DatasetSkeleton.tsx b/src/sections/dataset/DatasetSkeleton.tsx new file mode 100644 index 000000000..4f7641be8 --- /dev/null +++ b/src/sections/dataset/DatasetSkeleton.tsx @@ -0,0 +1,41 @@ +import Skeleton, { SkeletonTheme } from 'react-loading-skeleton' +import styles from './Dataset.module.scss' +import { Row } from '../ui/grid/Row' +import { Col } from '../ui/grid/Col' +import { Tabs } from '../ui/tabs/Tabs' +import 'react-loading-skeleton/dist/skeleton.css' + +export function DatasetSkeleton() { + return ( + +
+
+

+ +

+ +
+
+ + + + + + + + + + + + + + + + + + +
+
+
+ ) +} diff --git a/src/sections/dataset/useDataset.tsx b/src/sections/dataset/useDataset.tsx index f01cd35ff..9166c2c48 100644 --- a/src/sections/dataset/useDataset.tsx +++ b/src/sections/dataset/useDataset.tsx @@ -2,13 +2,19 @@ import { useEffect, useState } from 'react' import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' import { Dataset } from '../../dataset/domain/models/Dataset' import { getDataset } from '../../dataset/domain/useCases/getDataset' +import { useLoading } from '../loading/LoadingContext' export function useDataset(repository: DatasetRepository, id: string) { const [dataset, setDataset] = useState() + const { setIsLoading } = useLoading() useEffect(() => { + setIsLoading(true) getDataset(repository, id) - .then((dataset: Dataset | undefined) => setDataset(dataset)) + .then((dataset: Dataset | undefined) => { + setDataset(dataset) + setIsLoading(false) + }) .catch((error) => console.error('There was an error getting the dataset', error)) }, [repository, id]) diff --git a/src/sections/page-not-found/PageNotFound.tsx b/src/sections/page-not-found/PageNotFound.tsx new file mode 100644 index 000000000..86524d8c5 --- /dev/null +++ b/src/sections/page-not-found/PageNotFound.tsx @@ -0,0 +1,13 @@ +// TODO: Substitute this with the Alert component of the design system + +export function PageNotFound() { + return ( +
+

Page Not Found

+

+ The page you are looking for was not found. If you believe this is an error, please contact + Demo Dataverse Support for assistance. +

+
+ ) +} diff --git a/src/stories/WithLayout.tsx b/src/stories/WithLayout.tsx index 51a802e60..2dc1dcc0d 100644 --- a/src/stories/WithLayout.tsx +++ b/src/stories/WithLayout.tsx @@ -1,13 +1,16 @@ -import { Story } from '@storybook/react' +import { StoryFn } from '@storybook/react' import { MemoryRouter as Router, Routes, Route } from 'react-router-dom' import { Layout } from '../sections/layout/Layout' +import { LoadingProvider } from '../sections/loading/LoadingProvider' -export const WithLayout = (Story: Story) => ( - - - }> - } /> - - - +export const WithLayout = (Story: StoryFn) => ( + + + + }> + } /> + + + + ) diff --git a/src/stories/WithLayoutLoading.tsx b/src/stories/WithLayoutLoading.tsx new file mode 100644 index 000000000..1dc909c5e --- /dev/null +++ b/src/stories/WithLayoutLoading.tsx @@ -0,0 +1,20 @@ +import { LoadingContext } from '../sections/loading/LoadingContext' +import { StoryFn } from '@storybook/react' +import { Layout } from '../sections/layout/Layout' +import { MemoryRouter as Router, Routes, Route } from 'react-router-dom' + +export const WithLayoutLoading = (Story: StoryFn) => { + const setIsLoading = () => {} + + return ( + + + + }> + } /> + + + + + ) +} diff --git a/src/stories/dataset/Dataset.stories.tsx b/src/stories/dataset/Dataset.stories.tsx index 7d78638ff..6fcbcc23a 100644 --- a/src/stories/dataset/Dataset.stories.tsx +++ b/src/stories/dataset/Dataset.stories.tsx @@ -2,31 +2,59 @@ import type { Meta, StoryObj } from '@storybook/react' import { WithI18next } from '../WithI18next' import { WithLayout } from '../WithLayout' import { Dataset } from '../../sections/dataset/Dataset' +import { Dataset as DatasetModel } from '../../dataset/domain/models/Dataset' import { DatasetRepository } from '../../dataset/domain/repositories/DatasetRepository' import { LabelSemanticMeaning } from '../../dataset/domain/models/LabelSemanticMeaning.enum' +import { WithLayoutLoading } from '../WithLayoutLoading' const meta: Meta = { title: 'Pages/Dataset', component: Dataset, - decorators: [WithI18next, WithLayout] + decorators: [WithI18next] } export default meta type Story = StoryObj class DatasetMockRepository implements DatasetRepository { - getById(id: string) { - return Promise.resolve({ - id: id, - title: 'Dataset title', - labels: [ - { value: 'Version 1.0', semanticMeaning: LabelSemanticMeaning.FILE }, - { value: 'Draft', semanticMeaning: LabelSemanticMeaning.DATASET } - ] + getById(id: string): Promise { + return new Promise((resolve) => { + setTimeout(() => { + resolve({ + id: id, + title: 'Dataset title', + labels: [ + { value: 'Version 1.0', semanticMeaning: LabelSemanticMeaning.FILE }, + { value: 'Draft', semanticMeaning: LabelSemanticMeaning.DATASET } + ] + }) + }, 1000) + }) + } +} + +class DatasetMockNoDataRepository implements DatasetRepository { + // eslint-disable-next-line unused-imports/no-unused-vars + getById(id: string): Promise { + return new Promise((resolve) => { + setTimeout(() => { + resolve(undefined) + }, 1000) }) } } export const Default: Story = { + decorators: [WithLayout], render: () => } + +export const Loading: Story = { + decorators: [WithLayoutLoading], + render: () => +} + +export const DatasetNotFound: Story = { + decorators: [WithLayout], + render: () => +} From 1f5e840dfee674160dcb42f155d1a5c7d89879f2 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Thu, 11 May 2023 10:23:27 +0200 Subject: [PATCH 07/24] feat(Dataset Boilerplate): add tests for Dataset page states --- cypress/component/dataset/Dataset.spec.tsx | 41 +++++++++++++++++-- .../dataset-labels/DatasetLabels.spec.tsx | 35 ++++++++++++++++ src/sections/dataset/DatasetSkeleton.tsx | 2 +- tests/dataset/domain/models/DatasetMother.ts | 4 ++ tests/sections/dataset/Dataset.test.tsx | 40 ++++++++++++++++-- tests/sections/theme/ThemeProvider.test.tsx | 30 ++++++++++++++ 6 files changed, 145 insertions(+), 7 deletions(-) create mode 100644 cypress/component/dataset/dataset-labels/DatasetLabels.spec.tsx create mode 100644 tests/sections/theme/ThemeProvider.test.tsx diff --git a/cypress/component/dataset/Dataset.spec.tsx b/cypress/component/dataset/Dataset.spec.tsx index e088a59ba..6fbde36db 100644 --- a/cypress/component/dataset/Dataset.spec.tsx +++ b/cypress/component/dataset/Dataset.spec.tsx @@ -2,6 +2,7 @@ import { createSandbox, SinonSandbox } from 'sinon' import { DatasetRepository } from '../../../src/dataset/domain/repositories/DatasetRepository' import { Dataset } from '../../../src/sections/dataset/Dataset' import { DatasetMother } from '../../../tests/dataset/domain/models/DatasetMother' +import { LoadingProvider } from '../../../src/sections/loading/LoadingProvider' describe('Dataset', () => { const sandbox: SinonSandbox = createSandbox() @@ -11,16 +12,50 @@ describe('Dataset', () => { sandbox.restore() }) - it('renders the Dataset page title and version', () => { + it('renders skeleton while loading', () => { const datasetRepository: DatasetRepository = {} as DatasetRepository datasetRepository.getById = sandbox.stub().resolves(testDataset) - cy.mount() + cy.mount( + + + + ) + + cy.findByTestId('dataset-skeleton').should('exist') + cy.findByText(testDataset.title).should('not.exist') + }) + + it('renders page not found when dataset is null', () => { + const emptyDataset = DatasetMother.createEmpty() + const datasetRepository: DatasetRepository = {} as DatasetRepository + datasetRepository.getById = sandbox.stub().resolves(emptyDataset) + + cy.mount( + + + + ) + + cy.findByText('Page Not Found').should('exist') + }) + + it('renders the Dataset page title and labels', () => { + const datasetRepository: DatasetRepository = {} as DatasetRepository + datasetRepository.getById = sandbox.stub().resolves(testDataset) + + cy.mount( + + + + ) cy.findByText(testDataset.title).should('exist') testDataset.labels.forEach((label) => { - cy.findByText(label.value).should('exist') + cy.findAllByText(label.value).then((labelElement) => { + expect(labelElement).toBeInTheDocument() + }) }) }) }) diff --git a/cypress/component/dataset/dataset-labels/DatasetLabels.spec.tsx b/cypress/component/dataset/dataset-labels/DatasetLabels.spec.tsx new file mode 100644 index 000000000..e2b9cb5d1 --- /dev/null +++ b/cypress/component/dataset/dataset-labels/DatasetLabels.spec.tsx @@ -0,0 +1,35 @@ +import { LabelSemanticMeaning } from '../../../../src/dataset/domain/models/LabelSemanticMeaning.enum' +import { DatasetLabels } from '../../../../src/sections/dataset/dataset-labels/DatasetLabels' + +describe('DatasetLabels', () => { + const labels = [ + { value: 'Label 1', semanticMeaning: LabelSemanticMeaning.DATASET }, + { value: 'Label 2', semanticMeaning: LabelSemanticMeaning.FILE }, + { value: 'Label 3', semanticMeaning: LabelSemanticMeaning.SUCCESS }, + { value: 'Label 4', semanticMeaning: LabelSemanticMeaning.DANGER }, + { value: 'Label 5', semanticMeaning: LabelSemanticMeaning.WARNING }, + { value: 'Label 6', semanticMeaning: LabelSemanticMeaning.INFO } + ] + + it('should render all labels', () => { + cy.mount() + + cy.findByText(labels[0].value).should('exist') + cy.findByText(labels[1].value).should('exist') + cy.findByText(labels[2].value).should('exist') + cy.findByText(labels[3].value).should('exist') + cy.findByText(labels[4].value).should('exist') + cy.findByText(labels[5].value).should('exist') + }) + + it('should render labels with correct variant', () => { + cy.mount() + + cy.findByText(labels[0].value).should('have.class', 'bg-primary') + cy.findByText(labels[1].value).should('have.class', 'bg-secondary') + cy.findByText(labels[2].value).should('have.class', 'bg-success') + cy.findByText(labels[3].value).should('have.class', 'bg-danger') + cy.findByText(labels[4].value).should('have.class', 'bg-warning') + cy.findByText(labels[5].value).should('have.class', 'bg-info') + }) +}) diff --git a/src/sections/dataset/DatasetSkeleton.tsx b/src/sections/dataset/DatasetSkeleton.tsx index 4f7641be8..0549fc5f4 100644 --- a/src/sections/dataset/DatasetSkeleton.tsx +++ b/src/sections/dataset/DatasetSkeleton.tsx @@ -8,7 +8,7 @@ import 'react-loading-skeleton/dist/skeleton.css' export function DatasetSkeleton() { return ( -
+

diff --git a/tests/dataset/domain/models/DatasetMother.ts b/tests/dataset/domain/models/DatasetMother.ts index b4fcd08ee..798bf9081 100644 --- a/tests/dataset/domain/models/DatasetMother.ts +++ b/tests/dataset/domain/models/DatasetMother.ts @@ -28,4 +28,8 @@ export class DatasetMother { ...props } } + + static createEmpty(): undefined { + return undefined + } } diff --git a/tests/sections/dataset/Dataset.test.tsx b/tests/sections/dataset/Dataset.test.tsx index 00c3215cf..244b5706b 100644 --- a/tests/sections/dataset/Dataset.test.tsx +++ b/tests/sections/dataset/Dataset.test.tsx @@ -3,6 +3,7 @@ import { DatasetRepository } from '../../../src/dataset/domain/repositories/Data import { render } from '@testing-library/react' import { Dataset } from '../../../src/sections/dataset/Dataset' import { DatasetMother } from '../../dataset/domain/models/DatasetMother' +import { LoadingProvider } from '../../../src/sections/loading/LoadingProvider' describe('Dataset', () => { const sandbox: SinonSandbox = createSandbox() @@ -12,19 +13,52 @@ describe('Dataset', () => { sandbox.restore() }) + test('renders skeleton while loading', () => { + const datasetRepository: DatasetRepository = {} as DatasetRepository + datasetRepository.getById = sandbox.stub().resolves(testDataset) + + const { getByTestId, queryByText } = render( + + + + ) + + expect(getByTestId('dataset-skeleton')).toBeInTheDocument() + expect(queryByText(testDataset.title)).toBeNull() + }) + + test('renders page not found when dataset is null', async () => { + const emptyDataset = DatasetMother.createEmpty() + const datasetRepository: DatasetRepository = {} as DatasetRepository + datasetRepository.getById = sandbox.stub().resolves(emptyDataset) + + const { findByText } = render( + + + + ) + + const pageNotFound = await findByText('Page Not Found') + expect(pageNotFound).toBeInTheDocument() + }) + it('renders the Dataset page title and labels', async () => { const datasetRepository: DatasetRepository = {} as DatasetRepository datasetRepository.getById = sandbox.stub().resolves(testDataset) - const { findByText, getByText } = render( - + const { findByText, getAllByText } = render( + + + ) const title = await findByText(testDataset.title) expect(title).toBeInTheDocument() testDataset.labels.forEach((label) => { - expect(getByText(label.value)).toBeInTheDocument() + getAllByText(label.value).forEach((labelElement) => { + expect(labelElement).toBeInTheDocument() + }) }) }) }) diff --git a/tests/sections/theme/ThemeProvider.test.tsx b/tests/sections/theme/ThemeProvider.test.tsx new file mode 100644 index 000000000..343888bc1 --- /dev/null +++ b/tests/sections/theme/ThemeProvider.test.tsx @@ -0,0 +1,30 @@ +import { ThemeProvider, useTheme } from '../../../src/sections/ui/theme/ThemeProvider' +import { baseTheme } from '../../../src/sections/ui/theme/BaseTheme' +import { render } from '@testing-library/react' + +describe('ThemeProvider', () => { + it('should render the child component with the given theme', () => { + const testTheme: typeof baseTheme = { + ...baseTheme, + typography: { + ...baseTheme.typography, + fontSizeSm: '2.5rem' + } + } + const TestComponent = () => { + const theme = useTheme() + return
Child component
+ } + + const { getByText } = render( + + + + ) + + expect(getByText('Child component')).toHaveAttribute( + 'style', + `font-size: ${testTheme.typography.fontSizeSm};` + ) + }) +}) From 3155cb4dfe496fe59c78d5847c070053d856c7a5 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Thu, 11 May 2023 11:49:25 +0200 Subject: [PATCH 08/24] feat(Dataset Boilerplate): get dataset id from route parameters --- cypress/component/dataset/Dataset.spec.tsx | 4 +--- .../loading/LoadingProvider.spec.tsx | 12 ++++------ cypress/e2e/sections/dataset/Dataset.spec.tsx | 17 +++++++++++++ src/Router.tsx | 5 ++++ .../DatasetJSDataverseRepository.ts | 21 ++++++++++++++++ src/sections/Route.enum.ts | 2 +- src/sections/dataset/DatasetFactory.tsx | 24 +++++++++++++++++++ 7 files changed, 74 insertions(+), 11 deletions(-) create mode 100644 cypress/e2e/sections/dataset/Dataset.spec.tsx create mode 100644 src/dataset/infrastructure/repositories/DatasetJSDataverseRepository.ts create mode 100644 src/sections/dataset/DatasetFactory.tsx diff --git a/cypress/component/dataset/Dataset.spec.tsx b/cypress/component/dataset/Dataset.spec.tsx index 6fbde36db..74638254a 100644 --- a/cypress/component/dataset/Dataset.spec.tsx +++ b/cypress/component/dataset/Dataset.spec.tsx @@ -53,9 +53,7 @@ describe('Dataset', () => { cy.findByText(testDataset.title).should('exist') testDataset.labels.forEach((label) => { - cy.findAllByText(label.value).then((labelElement) => { - expect(labelElement).toBeInTheDocument() - }) + cy.findAllByText(label.value).should('exist') }) }) }) diff --git a/cypress/component/loading/LoadingProvider.spec.tsx b/cypress/component/loading/LoadingProvider.spec.tsx index 8c0c67b07..ba7cb9305 100644 --- a/cypress/component/loading/LoadingProvider.spec.tsx +++ b/cypress/component/loading/LoadingProvider.spec.tsx @@ -18,7 +18,7 @@ describe('LoadingProvider', () => { const { isLoading, setIsLoading } = useLoading() return ( <> - + {isLoading &&
Loading...
} ) @@ -30,14 +30,12 @@ describe('LoadingProvider', () => { ) - const toggleLoadingButton = cy.findByText(buttonText) - expect(toggleLoadingButton).toBeInTheDocument() + cy.findByText(buttonText).should('exist') - const loadingText = cy.findByText('Loading...') - expect(loadingText).not.toBeInTheDocument() + cy.findByText('Loading...').should('not.exist') - toggleLoadingButton.click() + cy.findByText(buttonText).click() - expect(loadingText).toBeInTheDocument() + cy.findByText('Loading...').should('exist') }) }) diff --git a/cypress/e2e/sections/dataset/Dataset.spec.tsx b/cypress/e2e/sections/dataset/Dataset.spec.tsx new file mode 100644 index 000000000..b16fe76ad --- /dev/null +++ b/cypress/e2e/sections/dataset/Dataset.spec.tsx @@ -0,0 +1,17 @@ +describe('Dataset', () => { + it('successfully loads a dataset when passing the id', () => { + cy.visit('/dataset/12345') + + cy.findByRole('heading', { name: 'Dataset Title' }).should('exist') + cy.findByText('Version 1.0').should('exist') + cy.findByText('Draft').should('exist') + }) + + it('renders Hello Dataverse when no id is provided', () => { + cy.visit('/dataset') + + cy.findAllByText(/Hello Dataverse/i).should('exist') + }) + + // TODO - Add test for when the dataset is not found and loading skeleton when the js-dataverse module is ready +}) diff --git a/src/Router.tsx b/src/Router.tsx index 7a9c2e37c..387380582 100644 --- a/src/Router.tsx +++ b/src/Router.tsx @@ -2,6 +2,7 @@ import { createBrowserRouter, RouterProvider } from 'react-router-dom' import { HelloDataverse } from './sections/hello-dataverse/HelloDataverse' import { Layout } from './sections/layout/Layout' import { Route } from './sections/Route.enum' +import { DatasetFactory } from './sections/dataset/DatasetFactory' const router = createBrowserRouter( [ @@ -12,6 +13,10 @@ const router = createBrowserRouter( { path: Route.HOME, element: + }, + { + path: `${Route.DATASET}/:id`, + element: DatasetFactory.create() } ] } diff --git a/src/dataset/infrastructure/repositories/DatasetJSDataverseRepository.ts b/src/dataset/infrastructure/repositories/DatasetJSDataverseRepository.ts new file mode 100644 index 000000000..0a9e1db81 --- /dev/null +++ b/src/dataset/infrastructure/repositories/DatasetJSDataverseRepository.ts @@ -0,0 +1,21 @@ +import { DatasetRepository } from '../../domain/repositories/DatasetRepository' +import { Dataset } from '../../domain/models/Dataset' +import { LabelSemanticMeaning } from '../../domain/models/LabelSemanticMeaning.enum' + +export class DatasetJSDataverseRepository implements DatasetRepository { + getById(id: string): Promise { + // TODO - Implement this method using the js-dataverse module + return new Promise((resolve) => { + setTimeout(() => { + resolve({ + id: id, + title: 'Dataset title', + labels: [ + { value: 'Version 1.0', semanticMeaning: LabelSemanticMeaning.FILE }, + { value: 'Draft', semanticMeaning: LabelSemanticMeaning.DATASET } + ] + }) + }, 1000) + }) + } +} diff --git a/src/sections/Route.enum.ts b/src/sections/Route.enum.ts index 7687e1295..3d3213865 100644 --- a/src/sections/Route.enum.ts +++ b/src/sections/Route.enum.ts @@ -3,5 +3,5 @@ export enum Route { SIGN_UP = '/dataverseuser.xhtml?editMode=CREATE', LOG_IN = '/loginpage.xhtml?redirectPage=%2Fdataverse.xhtml', LOG_OUT = '/', - DATASET = '/dataset' + DATASET = 'dataset' } diff --git a/src/sections/dataset/DatasetFactory.tsx b/src/sections/dataset/DatasetFactory.tsx new file mode 100644 index 000000000..f71286d4e --- /dev/null +++ b/src/sections/dataset/DatasetFactory.tsx @@ -0,0 +1,24 @@ +import { ReactElement } from 'react' +import { useNavigate, useParams } from 'react-router-dom' +import { Dataset } from './Dataset' +import { DatasetJSDataverseRepository } from '../../dataset/infrastructure/repositories/DatasetJSDataverseRepository' + +const datasetRepository = new DatasetJSDataverseRepository() + +export class DatasetFactory { + static create(): ReactElement { + return + } +} + +function DatasetWithRouteId() { + const { id } = useParams() + const navigate = useNavigate() + + if (id === undefined) { + navigate('/') + return <> + } + + return +} From 06641d4a9ebacb9b5030bb7dc361d60f11e29333 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Thu, 11 May 2023 12:02:28 +0200 Subject: [PATCH 09/24] fix(Github Action): modify test to run on github actions --- cypress/component/dataset/Dataset.spec.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/cypress/component/dataset/Dataset.spec.tsx b/cypress/component/dataset/Dataset.spec.tsx index 74638254a..b592dfbad 100644 --- a/cypress/component/dataset/Dataset.spec.tsx +++ b/cypress/component/dataset/Dataset.spec.tsx @@ -3,6 +3,7 @@ import { DatasetRepository } from '../../../src/dataset/domain/repositories/Data import { Dataset } from '../../../src/sections/dataset/Dataset' import { DatasetMother } from '../../../tests/dataset/domain/models/DatasetMother' import { LoadingProvider } from '../../../src/sections/loading/LoadingProvider' +import { useLoading } from '../../../src/sections/loading/LoadingContext' describe('Dataset', () => { const sandbox: SinonSandbox = createSandbox() @@ -16,12 +17,26 @@ describe('Dataset', () => { const datasetRepository: DatasetRepository = {} as DatasetRepository datasetRepository.getById = sandbox.stub().resolves(testDataset) + const buttonText = 'Toggle Loading' + const TestComponent = () => { + const { isLoading, setIsLoading } = useLoading() + return ( + <> + + {isLoading &&
Loading...
} + + ) + } + cy.mount( + ) + cy.findByText(buttonText).click() + cy.findByTestId('dataset-skeleton').should('exist') cy.findByText(testDataset.title).should('not.exist') }) From 29a611dcc9550b9ca3d5f8a7938f8ff36234126b Mon Sep 17 00:00:00 2001 From: MellyGray Date: Fri, 12 May 2023 12:31:18 +0200 Subject: [PATCH 10/24] fix(Design System): remove cascade layers --- merged-coverage/lcov.info | 2 +- .../components/{icon.enum.ts => Icon.enum.ts} | 0 .../lib/components/assets/styles/index.scss | 5 +-- .../lib/components/badge/Badge.module.scss | 36 +++++++++---------- .../tests/component/button/Button.spec.tsx | 2 +- .../dropdown-button/DropdownButton.spec.tsx | 2 +- 6 files changed, 21 insertions(+), 26 deletions(-) rename packages/design-system/src/lib/components/{icon.enum.ts => Icon.enum.ts} (100%) diff --git a/merged-coverage/lcov.info b/merged-coverage/lcov.info index 9f58295bc..08740b080 100644 --- a/merged-coverage/lcov.info +++ b/merged-coverage/lcov.info @@ -34,7 +34,7 @@ DA:36,108 BRDA:24,0,0,54 BRDA:24,0,1,165 end_of_record -SF:packages/design-system/src/lib/components/icon.enum.ts +SF:packages/design-system/src/lib/components/Icon.enum.ts DA:1,72 DA:2,72 DA:3,72 diff --git a/packages/design-system/src/lib/components/icon.enum.ts b/packages/design-system/src/lib/components/Icon.enum.ts similarity index 100% rename from packages/design-system/src/lib/components/icon.enum.ts rename to packages/design-system/src/lib/components/Icon.enum.ts diff --git a/packages/design-system/src/lib/components/assets/styles/index.scss b/packages/design-system/src/lib/components/assets/styles/index.scss index ed5c49214..1635c7e16 100644 --- a/packages/design-system/src/lib/components/assets/styles/index.scss +++ b/packages/design-system/src/lib/components/assets/styles/index.scss @@ -1,6 +1,3 @@ -@layer bootstrap, core; @import "src/lib/components/assets/styles/fontcustom"; +@import "src/lib/components/assets/styles/bootstrap-customized"; -@layer bootstrap { - @import "src/lib/components/assets/styles/bootstrap-customized"; -} diff --git a/packages/design-system/src/lib/components/badge/Badge.module.scss b/packages/design-system/src/lib/components/badge/Badge.module.scss index 0d61b4b30..a7d817d7d 100644 --- a/packages/design-system/src/lib/components/badge/Badge.module.scss +++ b/packages/design-system/src/lib/components/badge/Badge.module.scss @@ -2,28 +2,26 @@ @import 'bootstrap/scss/variables'; @import 'src/lib/components/assets/styles/design-tokens/colors.module'; -@layer core { - .primary { - color: color-contrast($dv-primary-color); - } +.primary:not(#\#) { + color: color-contrast($dv-primary-color); +} - .secondary { - color: color-contrast($dv-secondary-color); - } +.secondary:not(#\#) { + color: color-contrast($dv-secondary-color); +} - .info { - color: color-contrast($dv-info-color); - } +.info:not(#\#) { + color: color-contrast($dv-info-color); +} - .success { - color: color-contrast($dv-success-color); - } +.success:not(#\#) { + color: color-contrast($dv-success-color); +} - .warning { - color: color-contrast($dv-warning-color); - } +.warning:not(#\#) { + color: color-contrast($dv-warning-color); +} - .danger { - color: color-contrast($dv-danger-color); - } +.danger:not(#\#) { + color: color-contrast($dv-danger-color); } \ No newline at end of file diff --git a/packages/design-system/tests/component/button/Button.spec.tsx b/packages/design-system/tests/component/button/Button.spec.tsx index eb63dc61a..6c608eb3a 100644 --- a/packages/design-system/tests/component/button/Button.spec.tsx +++ b/packages/design-system/tests/component/button/Button.spec.tsx @@ -1,5 +1,5 @@ import { Button } from '../../../src/lib/components/button/Button' -import { Icon } from '../../../src/lib/components/icon.enum' +import { Icon } from '../../../src/lib/components/Icon.enum' describe('Button', () => { const clickMeText = 'Click me' diff --git a/packages/design-system/tests/component/dropdown-button/DropdownButton.spec.tsx b/packages/design-system/tests/component/dropdown-button/DropdownButton.spec.tsx index 3955f1f50..a0d002591 100644 --- a/packages/design-system/tests/component/dropdown-button/DropdownButton.spec.tsx +++ b/packages/design-system/tests/component/dropdown-button/DropdownButton.spec.tsx @@ -1,5 +1,5 @@ import { DropdownButton } from '../../../src/lib/components/dropdown-button/DropdownButton' -import { Icon } from '../../../src/lib/components/icon.enum' +import { Icon } from '../../../src/lib/components/Icon.enum' import styles from '../../../src/lib/components/dropdown-button/DropdownButton.module.scss' const titleText = 'My Dropdown Button' From 3574cdad2b7247541beeb57fe652765f7db9a540 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Fri, 12 May 2023 12:32:09 +0200 Subject: [PATCH 11/24] fix(npm start): remove server --- vite.config.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 972a2ce0c..9281bbd1b 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -12,13 +12,5 @@ export default defineConfig({ ], preview: { port: 5173 - }, - server: { - //https://github.com/vitejs/vite/discussions/3396 - host: true, - port: 5173, - hmr: { - clientPort: 8000 // nginx reverse proxy port - } } }) From 04aeac475511bebf33c6220f118e38f3d849baf6 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Fri, 12 May 2023 13:38:20 +0200 Subject: [PATCH 12/24] fix(coverage): add tests --- packages/design-system/.nyc_output/out.json | 2584 +++++++++-------- .../{LoadingContext.tsx => LoadingContext.ts} | 2 +- .../TopBarProgressIndicator.spec.tsx | 22 + 3 files changed, 1452 insertions(+), 1156 deletions(-) rename src/sections/loading/{LoadingContext.tsx => LoadingContext.ts} (85%) create mode 100644 tests/component/sections/layout/top-bar-progress-indicator/TopBarProgressIndicator.spec.tsx diff --git a/packages/design-system/.nyc_output/out.json b/packages/design-system/.nyc_output/out.json index 3aabbcf96..f0908258a 100644 --- a/packages/design-system/.nyc_output/out.json +++ b/packages/design-system/.nyc_output/out.json @@ -16,7 +16,7 @@ "fnMap": {}, "branchMap": {}, "s": { - "0": 97 + "0": 194 }, "f": {}, "b": {}, @@ -48,7 +48,7 @@ "fnMap": {}, "branchMap": {}, "s": { - "0": 97 + "0": 194 }, "f": {}, "b": {}, @@ -638,28 +638,28 @@ } }, "s": { - "0": 97, - "1": 97, + "0": 194, + "1": 194, "2": 0, - "3": 97, - "4": 97, - "5": 97, - "6": 97, - "7": 97, - "8": 97, - "9": 5, - "10": 97, - "11": 97, - "12": 5, - "13": 5, - "14": 97, - "15": 97, - "16": 97, - "17": 97, - "18": 97, - "19": 97, - "20": 97, - "21": 97, + "3": 194, + "4": 194, + "5": 194, + "6": 194, + "7": 194, + "8": 194, + "9": 10, + "10": 194, + "11": 194, + "12": 10, + "13": 10, + "14": 194, + "15": 194, + "16": 194, + "17": 194, + "18": 194, + "19": 194, + "20": 194, + "21": 194, "22": 0, "23": 0, "24": 0, @@ -667,17 +667,17 @@ "26": 0 }, "f": { - "0": 97, - "1": 5, - "2": 5, - "3": 97, + "0": 194, + "1": 10, + "2": 10, + "3": 194, "4": 0 }, "b": { - "0": [97, 0], - "1": [0, 97], - "2": [3], - "3": [97, 0], + "0": [194, 0], + "1": [0, 194], + "2": [6], + "3": [194, 0], "4": [0, 0], "5": [0, 0] }, @@ -1179,23 +1179,23 @@ } }, "s": { - "0": 8, - "1": 8, + "0": 16, + "1": 16, "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 9, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, + "3": 16, + "4": 16, + "5": 16, + "6": 16, + "7": 16, + "8": 18, + "9": 16, + "10": 16, + "11": 16, + "12": 16, + "13": 16, + "14": 16, + "15": 16, + "16": 16, "17": 0, "18": 0, "19": 0, @@ -1203,15 +1203,15 @@ "21": 0 }, "f": { - "0": 8, - "1": 9, - "2": 8, + "0": 16, + "1": 18, + "2": 16, "3": 0 }, "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], + "0": [16, 0], + "1": [0, 16], + "2": [16, 0], "3": [0, 0], "4": [0, 0] }, @@ -1720,24 +1720,24 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 9, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, - "17": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 18, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, + "17": 8, "18": 0, "19": 0, "20": 0, @@ -1745,15 +1745,15 @@ "22": 0 }, "f": { - "0": 4, - "1": 9, - "2": 4, + "0": 8, + "1": 18, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -2252,23 +2252,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 18, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 36, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -2276,15 +2276,15 @@ "21": 0 }, "f": { - "0": 4, - "1": 18, - "2": 4, + "0": 8, + "1": 36, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -2783,23 +2783,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 18, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 36, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -2807,15 +2807,15 @@ "21": 0 }, "f": { - "0": 4, - "1": 18, - "2": 4, + "0": 8, + "1": 36, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -3306,23 +3306,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 18, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 36, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -3330,15 +3330,15 @@ "21": 0 }, "f": { - "0": 4, - "1": 18, - "2": 4, + "0": 8, + "1": 36, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -3885,26 +3885,26 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 9, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, - "17": 4, - "18": 4, - "19": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 18, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, + "17": 8, + "18": 8, + "19": 8, "20": 0, "21": 0, "22": 0, @@ -3912,16 +3912,16 @@ "24": 0 }, "f": { - "0": 4, - "1": 9, - "2": 4, + "0": 8, + "1": 18, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4], - "3": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8], + "3": [8, 0], "4": [0, 0], "5": [0, 0] }, @@ -4470,25 +4470,25 @@ } }, "s": { - "0": 8, - "1": 8, + "0": 16, + "1": 16, "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 35, - "9": 35, - "10": 35, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 8, + "3": 16, + "4": 16, + "5": 16, + "6": 16, + "7": 16, + "8": 70, + "9": 70, + "10": 70, + "11": 16, + "12": 16, + "13": 16, + "14": 16, + "15": 16, + "16": 16, + "17": 16, + "18": 16, "19": 0, "20": 0, "21": 0, @@ -4496,16 +4496,16 @@ "23": 0 }, "f": { - "0": 8, - "1": 35, - "2": 35, - "3": 8, + "0": 16, + "1": 70, + "2": 70, + "3": 16, "4": 0 }, "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], + "0": [16, 0], + "1": [0, 16], + "2": [16, 0], "3": [0, 0], "4": [0, 0] }, @@ -5011,23 +5011,23 @@ } }, "s": { - "0": 8, - "1": 8, + "0": 16, + "1": 16, "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 7, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, + "3": 16, + "4": 16, + "5": 16, + "6": 16, + "7": 16, + "8": 14, + "9": 16, + "10": 16, + "11": 16, + "12": 16, + "13": 16, + "14": 16, + "15": 16, + "16": 16, "17": 0, "18": 0, "19": 0, @@ -5035,15 +5035,15 @@ "21": 0 }, "f": { - "0": 8, - "1": 7, - "2": 8, + "0": 16, + "1": 14, + "2": 16, "3": 0 }, "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], + "0": [16, 0], + "1": [0, 16], + "2": [16, 0], "3": [0, 0], "4": [0, 0] }, @@ -5770,32 +5770,32 @@ } }, "s": { - "0": 8, - "1": 8, + "0": 16, + "1": 16, "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 8, - "9": 38, - "10": 38, - "11": 38, - "12": 38, - "13": 38, - "14": 38, - "15": 3, - "16": 8, - "17": 8, - "18": 8, - "19": 8, - "20": 8, - "21": 8, - "22": 8, - "23": 8, - "24": 8, - "25": 8, + "3": 16, + "4": 16, + "5": 16, + "6": 16, + "7": 16, + "8": 16, + "9": 76, + "10": 76, + "11": 76, + "12": 76, + "13": 76, + "14": 76, + "15": 6, + "16": 16, + "17": 16, + "18": 16, + "19": 16, + "20": 16, + "21": 16, + "22": 16, + "23": 16, + "24": 16, + "25": 16, "26": 0, "27": 0, "28": 0, @@ -5803,20 +5803,20 @@ "30": 0 }, "f": { - "0": 8, - "1": 38, - "2": 38, - "3": 3, - "4": 8, + "0": 16, + "1": 76, + "2": 76, + "3": 6, + "4": 16, "5": 0 }, "b": { - "0": [8, 0], - "1": [0, 8], - "2": [36], - "3": [38, 38], - "4": [38, 35], - "5": [8, 0], + "0": [16, 0], + "1": [0, 16], + "2": [72], + "3": [76, 76], + "4": [76, 70], + "5": [16, 0], "6": [0, 0], "7": [0, 0] }, @@ -6356,23 +6356,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 9, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 18, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -6380,16 +6380,16 @@ "21": 0 }, "f": { - "0": 4, - "1": 9, - "2": 4, + "0": 8, + "1": 18, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [2], - "3": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [4], + "3": [8, 0], "4": [0, 0], "5": [0, 0] }, @@ -7096,25 +7096,25 @@ } }, "s": { - "0": 19, - "1": 19, + "0": 38, + "1": 38, "2": 0, - "3": 19, - "4": 19, - "5": 19, - "6": 19, - "7": 19, - "8": 38, - "9": 38, - "10": 38, - "11": 19, - "12": 19, - "13": 19, - "14": 19, - "15": 19, - "16": 19, - "17": 19, - "18": 19, + "3": 38, + "4": 38, + "5": 38, + "6": 38, + "7": 38, + "8": 76, + "9": 76, + "10": 76, + "11": 38, + "12": 38, + "13": 38, + "14": 38, + "15": 38, + "16": 38, + "17": 38, + "18": 38, "19": 0, "20": 0, "21": 0, @@ -7122,21 +7122,21 @@ "23": 0 }, "f": { - "0": 19, - "1": 38, - "2": 19, + "0": 38, + "1": 76, + "2": 38, "3": 0 }, "b": { - "0": [19, 0], - "1": [0, 19], - "2": [28], - "3": [33], - "4": [2, 36], - "5": [38, 0], - "6": [5, 33], - "7": [38, 5], - "8": [19, 0], + "0": [38, 0], + "1": [0, 38], + "2": [56], + "3": [66], + "4": [4, 72], + "5": [76, 0], + "6": [10, 66], + "7": [76, 10], + "8": [38, 0], "9": [0, 0], "10": [0, 0] }, @@ -7919,23 +7919,23 @@ } }, "s": { - "0": 10, - "1": 10, + "0": 20, + "1": 20, "2": 0, - "3": 10, - "4": 10, - "5": 10, - "6": 10, - "7": 10, - "8": 12, - "9": 10, - "10": 10, - "11": 10, - "12": 10, - "13": 10, - "14": 10, - "15": 10, - "16": 10, + "3": 20, + "4": 20, + "5": 20, + "6": 20, + "7": 20, + "8": 24, + "9": 20, + "10": 20, + "11": 20, + "12": 20, + "13": 20, + "14": 20, + "15": 20, + "16": 20, "17": 0, "18": 0, "19": 0, @@ -7943,15 +7943,15 @@ "21": 0 }, "f": { - "0": 10, - "1": 12, - "2": 10, + "0": 20, + "1": 24, + "2": 20, "3": 0 }, "b": { - "0": [10, 0], - "1": [0, 10], - "2": [10, 0], + "0": [20, 0], + "1": [0, 20], + "2": [20, 0], "3": [0, 0], "4": [0, 0] }, @@ -8586,24 +8586,24 @@ } }, "s": { - "0": 6, - "1": 6, + "0": 12, + "1": 12, "2": 0, - "3": 6, - "4": 6, - "5": 6, - "6": 6, - "7": 6, - "8": 20, - "9": 20, - "10": 6, - "11": 6, - "12": 6, - "13": 6, - "14": 6, - "15": 6, - "16": 6, - "17": 6, + "3": 12, + "4": 12, + "5": 12, + "6": 12, + "7": 12, + "8": 40, + "9": 40, + "10": 12, + "11": 12, + "12": 12, + "13": 12, + "14": 12, + "15": 12, + "16": 12, + "17": 12, "18": 0, "19": 0, "20": 0, @@ -8611,19 +8611,19 @@ "22": 0 }, "f": { - "0": 6, - "1": 20, - "2": 6, + "0": 12, + "1": 40, + "2": 12, "3": 0 }, "b": { - "0": [6, 0], - "1": [0, 6], - "2": [5], - "3": [2, 18], - "4": [20, 4], - "5": [3, 17], - "6": [6, 0], + "0": [12, 0], + "1": [0, 12], + "2": [10], + "3": [4, 36], + "4": [40, 8], + "5": [6, 34], + "6": [12, 0], "7": [0, 0], "8": [0, 0] }, @@ -9132,23 +9132,23 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 147, - "9": 33, - "10": 33, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 294, + "9": 66, + "10": 66, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, "17": 0, "18": 0, "19": 0, @@ -9156,15 +9156,15 @@ "21": 0 }, "f": { - "0": 33, - "1": 147, - "2": 33, + "0": 66, + "1": 294, + "2": 66, "3": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [66, 0], "3": [0, 0], "4": [0, 0] }, @@ -9691,23 +9691,23 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 69, - "9": 33, - "10": 33, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 138, + "9": 66, + "10": 66, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, "17": 0, "18": 0, "19": 0, @@ -9715,16 +9715,16 @@ "21": 0 }, "f": { - "0": 33, - "1": 69, - "2": 33, + "0": 66, + "1": 138, + "2": 66, "3": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [0, 69], - "3": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [0, 138], + "3": [66, 0], "4": [0, 0], "5": [0, 0] }, @@ -10328,25 +10328,25 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 46, - "9": 46, - "10": 46, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, - "17": 33, - "18": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 92, + "9": 92, + "10": 92, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, + "17": 66, + "18": 66, "19": 0, "20": 0, "21": 0, @@ -10354,18 +10354,18 @@ "23": 0 }, "f": { - "0": 33, - "1": 46, - "2": 46, - "3": 33, + "0": 66, + "1": 92, + "2": 92, + "3": 66, "4": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [12], - "3": [11, 35], - "4": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [24], + "3": [22, 70], + "4": [66, 0], "5": [0, 0], "6": [0, 0] }, @@ -10879,24 +10879,24 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 33, - "9": 10, - "10": 33, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, - "17": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 66, + "9": 20, + "10": 66, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, + "17": 66, "18": 0, "19": 0, "20": 0, @@ -10904,15 +10904,15 @@ "22": 0 }, "f": { - "0": 33, - "1": 10, - "2": 33, + "0": 66, + "1": 20, + "2": 66, "3": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [66, 0], "3": [0, 0], "4": [0, 0] }, @@ -11403,23 +11403,23 @@ } }, "s": { - "0": 36, - "1": 36, + "0": 72, + "1": 72, "2": 0, - "3": 36, - "4": 36, - "5": 36, - "6": 36, - "7": 36, - "8": 7, - "9": 36, - "10": 36, - "11": 36, - "12": 36, - "13": 36, - "14": 36, - "15": 36, - "16": 36, + "3": 72, + "4": 72, + "5": 72, + "6": 72, + "7": 72, + "8": 14, + "9": 72, + "10": 72, + "11": 72, + "12": 72, + "13": 72, + "14": 72, + "15": 72, + "16": 72, "17": 0, "18": 0, "19": 0, @@ -11427,15 +11427,15 @@ "21": 0 }, "f": { - "0": 36, - "1": 7, - "2": 36, + "0": 72, + "1": 14, + "2": 72, "3": 0 }, "b": { - "0": [36, 0], - "1": [0, 36], - "2": [36, 0], + "0": [72, 0], + "1": [0, 72], + "2": [72, 0], "3": [0, 0], "4": [0, 0] }, @@ -11926,23 +11926,23 @@ } }, "s": { - "0": 38, - "1": 38, + "0": 76, + "1": 76, "2": 0, - "3": 38, - "4": 38, - "5": 38, - "6": 38, - "7": 38, - "8": 19, - "9": 38, - "10": 38, - "11": 38, - "12": 38, - "13": 38, - "14": 38, - "15": 38, - "16": 38, + "3": 76, + "4": 76, + "5": 76, + "6": 76, + "7": 76, + "8": 38, + "9": 76, + "10": 76, + "11": 76, + "12": 76, + "13": 76, + "14": 76, + "15": 76, + "16": 76, "17": 0, "18": 0, "19": 0, @@ -11950,15 +11950,15 @@ "21": 0 }, "f": { - "0": 38, - "1": 19, - "2": 38, + "0": 76, + "1": 38, + "2": 76, "3": 0 }, "b": { - "0": [38, 0], - "1": [0, 38], - "2": [38, 0], + "0": [76, 0], + "1": [0, 76], + "2": [76, 0], "3": [0, 0], "4": [0, 0] }, @@ -12459,23 +12459,23 @@ } }, "s": { - "0": 36, - "1": 36, + "0": 72, + "1": 72, "2": 0, - "3": 36, - "4": 36, - "5": 36, - "6": 36, - "7": 36, - "8": 7, - "9": 36, - "10": 36, - "11": 36, - "12": 36, - "13": 36, - "14": 36, - "15": 36, - "16": 36, + "3": 72, + "4": 72, + "5": 72, + "6": 72, + "7": 72, + "8": 14, + "9": 72, + "10": 72, + "11": 72, + "12": 72, + "13": 72, + "14": 72, + "15": 72, + "16": 72, "17": 0, "18": 0, "19": 0, @@ -12483,15 +12483,15 @@ "21": 0 }, "f": { - "0": 36, - "1": 7, - "2": 36, + "0": 72, + "1": 14, + "2": 72, "3": 0 }, "b": { - "0": [36, 0], - "1": [0, 36], - "2": [36, 0], + "0": [72, 0], + "1": [0, 72], + "2": [72, 0], "3": [0, 0], "4": [0, 0] }, @@ -13110,24 +13110,24 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 69, - "9": 69, - "10": 33, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, - "17": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 138, + "9": 138, + "10": 66, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, + "17": 66, "18": 0, "19": 0, "20": 0, @@ -13135,18 +13135,18 @@ "22": 0 }, "f": { - "0": 33, - "1": 69, - "2": 33, + "0": 66, + "1": 138, + "2": 66, "3": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [0, 69], - "3": [69, 5], - "4": [69, 2], - "5": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [0, 138], + "3": [138, 10], + "4": [138, 4], + "5": [66, 0], "6": [0, 0], "7": [0, 0] }, @@ -13732,25 +13732,25 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 5, - "9": 5, - "10": 5, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, - "17": 33, - "18": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 10, + "9": 10, + "10": 10, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, + "17": 66, + "18": 66, "19": 0, "20": 0, "21": 0, @@ -13758,17 +13758,17 @@ "23": 0 }, "f": { - "0": 33, - "1": 5, - "2": 5, - "3": 33, + "0": 66, + "1": 10, + "2": 10, + "3": 66, "4": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [2, 3], - "3": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [4, 6], + "3": [66, 0], "4": [0, 0], "5": [0, 0] }, @@ -14271,23 +14271,23 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 14, - "9": 33, - "10": 33, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 28, + "9": 66, + "10": 66, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, "17": 0, "18": 0, "19": 0, @@ -14295,15 +14295,15 @@ "21": 0 }, "f": { - "0": 33, - "1": 14, - "2": 33, + "0": 66, + "1": 28, + "2": 66, "3": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [66, 0], "3": [0, 0], "4": [0, 0] }, @@ -14804,23 +14804,23 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 9, - "9": 33, - "10": 33, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 18, + "9": 66, + "10": 66, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, "17": 0, "18": 0, "19": 0, @@ -14828,15 +14828,15 @@ "21": 0 }, "f": { - "0": 33, - "1": 9, - "2": 33, + "0": 66, + "1": 18, + "2": 66, "3": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [66, 0], "3": [0, 0], "4": [0, 0] }, @@ -15334,23 +15334,23 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 91, - "9": 33, - "10": 33, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 182, + "9": 66, + "10": 66, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, "17": 0, "18": 0, "19": 0, @@ -15358,15 +15358,15 @@ "21": 0 }, "f": { - "0": 33, - "1": 91, - "2": 33, + "0": 66, + "1": 182, + "2": 66, "3": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [66, 0], "3": [0, 0], "4": [0, 0] }, @@ -15857,23 +15857,23 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 15, - "9": 33, - "10": 33, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 30, + "9": 66, + "10": 66, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, "17": 0, "18": 0, "19": 0, @@ -15881,15 +15881,15 @@ "21": 0 }, "f": { - "0": 33, - "1": 15, - "2": 33, + "0": 66, + "1": 30, + "2": 66, "3": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [66, 0], "3": [0, 0], "4": [0, 0] }, @@ -16546,31 +16546,31 @@ } }, "s": { - "0": 33, - "1": 33, + "0": 66, + "1": 66, "2": 0, - "3": 33, - "4": 33, - "5": 33, - "6": 33, - "7": 33, - "8": 66, - "9": 132, - "10": 66, - "11": 33, - "12": 33, - "13": 33, - "14": 33, - "15": 33, - "16": 33, - "17": 33, - "18": 33, - "19": 33, - "20": 33, - "21": 33, - "22": 33, - "23": 33, - "24": 33, + "3": 66, + "4": 66, + "5": 66, + "6": 66, + "7": 66, + "8": 132, + "9": 264, + "10": 132, + "11": 66, + "12": 66, + "13": 66, + "14": 66, + "15": 66, + "16": 66, + "17": 66, + "18": 66, + "19": 66, + "20": 66, + "21": 66, + "22": 66, + "23": 66, + "24": 66, "25": 0, "26": 0, "27": 0, @@ -16578,18 +16578,18 @@ "29": 0 }, "f": { - "0": 33, - "1": 66, - "2": 132, - "3": 33, + "0": 66, + "1": 132, + "2": 264, + "3": 66, "4": 0 }, "b": { - "0": [33, 0], - "1": [0, 33], - "2": [66], - "3": [15, 51], - "4": [33, 0], + "0": [66, 0], + "1": [0, 66], + "2": [132], + "3": [30, 102], + "4": [66, 0], "5": [0, 0], "6": [0, 0] }, @@ -17150,23 +17150,23 @@ } }, "s": { - "0": 9, - "1": 9, + "0": 18, + "1": 18, "2": 0, - "3": 9, - "4": 9, - "5": 9, - "6": 9, - "7": 9, - "8": 8, - "9": 9, - "10": 9, - "11": 9, - "12": 9, - "13": 9, - "14": 9, - "15": 9, - "16": 9, + "3": 18, + "4": 18, + "5": 18, + "6": 18, + "7": 18, + "8": 16, + "9": 18, + "10": 18, + "11": 18, + "12": 18, + "13": 18, + "14": 18, + "15": 18, + "16": 18, "17": 0, "18": 0, "19": 0, @@ -17174,16 +17174,16 @@ "21": 0 }, "f": { - "0": 9, - "1": 8, - "2": 9, + "0": 18, + "1": 16, + "2": 18, "3": 0 }, "b": { - "0": [9, 0], - "1": [0, 9], - "2": [8, 2], - "3": [9, 0], + "0": [18, 0], + "1": [0, 18], + "2": [16, 4], + "3": [18, 0], "4": [0, 0], "5": [0, 0] }, @@ -18271,43 +18271,43 @@ } }, "s": { - "0": 13, - "1": 13, + "0": 26, + "1": 26, "2": 0, - "3": 13, - "4": 13, - "5": 13, + "3": 26, + "4": 26, + "5": 26, "6": 0, - "7": 13, - "8": 13, - "9": 11, - "10": 18, - "11": 108, - "12": 144, - "13": 36, - "14": 108, - "15": 108, - "16": 72, - "17": 108, - "18": 108, - "19": 108, - "20": 108, - "21": 39, - "22": 39, - "23": 39, - "24": 39, - "25": 7, - "26": 39, - "27": 4, - "28": 8, - "29": 39, - "30": 13, - "31": 13, - "32": 13, - "33": 13, - "34": 13, - "35": 13, - "36": 13, + "7": 26, + "8": 26, + "9": 22, + "10": 36, + "11": 216, + "12": 288, + "13": 72, + "14": 216, + "15": 216, + "16": 144, + "17": 216, + "18": 216, + "19": 216, + "20": 216, + "21": 78, + "22": 78, + "23": 78, + "24": 78, + "25": 14, + "26": 78, + "27": 8, + "28": 16, + "29": 78, + "30": 26, + "31": 26, + "32": 26, + "33": 26, + "34": 26, + "35": 26, + "36": 26, "37": 0, "38": 0, "39": 0, @@ -18316,28 +18316,28 @@ }, "f": { "0": 0, - "1": 11, - "2": 18, - "3": 108, - "4": 144, - "5": 108, - "6": 108, - "7": 39, - "8": 7, - "9": 4, - "10": 8, - "11": 13, - "12": 0 - }, + "1": 22, + "2": 36, + "3": 216, + "4": 288, + "5": 216, + "6": 216, + "7": 78, + "8": 14, + "9": 8, + "10": 16, + "11": 26, + "12": 0 + }, "b": { - "0": [13, 0], - "1": [0, 13], - "2": [36, 108], - "3": [72, 36], - "4": [108, 108], - "5": [12, 96], - "6": [18, 21], - "7": [13, 0], + "0": [26, 0], + "1": [0, 26], + "2": [72, 216], + "3": [144, 72], + "4": [216, 216], + "5": [24, 192], + "6": [36, 42], + "7": [26, 0], "8": [0, 0], "9": [0, 0] }, @@ -19255,36 +19255,36 @@ } }, "s": { - "0": 9, - "1": 9, + "0": 18, + "1": 18, "2": 0, - "3": 9, - "4": 9, - "5": 9, - "6": 18, - "7": 9, - "8": 9, - "9": 9, - "10": 23, - "11": 9, - "12": 23, - "13": 23, - "14": 23, - "15": 25, - "16": 25, - "17": 2, - "18": 2, - "19": 9, - "20": 8, - "21": 9, - "22": 9, - "23": 9, - "24": 9, - "25": 9, - "26": 9, - "27": 9, - "28": 9, - "29": 9, + "3": 18, + "4": 18, + "5": 18, + "6": 36, + "7": 18, + "8": 18, + "9": 18, + "10": 46, + "11": 18, + "12": 46, + "13": 46, + "14": 46, + "15": 50, + "16": 50, + "17": 4, + "18": 4, + "19": 18, + "20": 16, + "21": 18, + "22": 18, + "23": 18, + "24": 18, + "25": 18, + "26": 18, + "27": 18, + "28": 18, + "29": 18, "30": 0, "31": 0, "32": 0, @@ -19292,24 +19292,24 @@ "34": 0 }, "f": { - "0": 18, - "1": 23, - "2": 23, - "3": 25, - "4": 2, - "5": 2, - "6": 8, - "7": 9, + "0": 36, + "1": 46, + "2": 46, + "3": 50, + "4": 4, + "5": 4, + "6": 16, + "7": 18, "8": 0 }, "b": { - "0": [9, 0], - "1": [0, 9], - "2": [23, 5], - "3": [23, 0], - "4": [25, 23], - "5": [25, 8], - "6": [9, 0], + "0": [18, 0], + "1": [0, 18], + "2": [46, 10], + "3": [46, 0], + "4": [50, 46], + "5": [50, 16], + "6": [18, 0], "7": [0, 0], "8": [0, 0] }, @@ -19846,25 +19846,25 @@ } }, "s": { - "0": 1, - "1": 1, + "0": 2, + "1": 2, "2": 0, - "3": 1, - "4": 1, - "5": 1, - "6": 1, - "7": 1, - "8": 1, - "9": 1, - "10": 1, - "11": 1, - "12": 1, - "13": 1, - "14": 1, - "15": 1, - "16": 1, - "17": 1, - "18": 1, + "3": 2, + "4": 2, + "5": 2, + "6": 2, + "7": 2, + "8": 2, + "9": 2, + "10": 2, + "11": 2, + "12": 2, + "13": 2, + "14": 2, + "15": 2, + "16": 2, + "17": 2, + "18": 2, "19": 0, "20": 0, "21": 0, @@ -19872,15 +19872,15 @@ "23": 0 }, "f": { - "0": 1, - "1": 1, - "2": 1, + "0": 2, + "1": 2, + "2": 2, "3": 0 }, "b": { - "0": [1, 0], - "1": [0, 1], - "2": [1, 0], + "0": [2, 0], + "1": [0, 2], + "2": [2, 0], "3": [0, 0], "4": [0, 0] }, @@ -20384,23 +20384,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 9, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 18, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -20408,15 +20408,15 @@ "21": 0 }, "f": { - "0": 4, - "1": 9, - "2": 4, + "0": 8, + "1": 18, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -20907,23 +20907,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 9, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 18, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -20931,15 +20931,15 @@ "21": 0 }, "f": { - "0": 4, - "1": 9, - "2": 4, + "0": 8, + "1": 18, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -21430,23 +21430,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 9, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 18, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -21454,15 +21454,15 @@ "21": 0 }, "f": { - "0": 4, - "1": 9, - "2": 4, + "0": 8, + "1": 18, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -21953,23 +21953,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 4, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 8, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -21977,15 +21977,15 @@ "21": 0 }, "f": { - "0": 4, - "1": 4, - "2": 4, + "0": 8, + "1": 8, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -22516,27 +22516,27 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 9, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, - "17": 4, - "18": 4, - "19": 4, - "20": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 18, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, + "17": 8, + "18": 8, + "19": 8, + "20": 8, "21": 0, "22": 0, "23": 0, @@ -22544,15 +22544,15 @@ "25": 0 }, "f": { - "0": 4, - "1": 9, - "2": 4, + "0": 8, + "1": 18, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -23060,23 +23060,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 4, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 8, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -23084,15 +23084,15 @@ "21": 0 }, "f": { - "0": 4, - "1": 4, - "2": 4, + "0": 8, + "1": 8, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -23593,24 +23593,24 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 5, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, - "17": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 10, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, + "17": 8, "18": 0, "19": 0, "20": 0, @@ -23618,15 +23618,15 @@ "22": 0 }, "f": { - "0": 4, - "1": 5, - "2": 4, + "0": 8, + "1": 10, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -24127,23 +24127,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 9, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 18, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -24151,15 +24151,15 @@ "21": 0 }, "f": { - "0": 4, - "1": 9, - "2": 4, + "0": 8, + "1": 18, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -24650,23 +24650,23 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 10, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 20, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, "17": 0, "18": 0, "19": 0, @@ -24674,15 +24674,15 @@ "21": 0 }, "f": { - "0": 4, - "1": 10, - "2": 4, + "0": 8, + "1": 20, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -25193,25 +25193,25 @@ } }, "s": { - "0": 4, - "1": 4, + "0": 8, + "1": 8, "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 9, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, - "17": 4, - "18": 4, + "3": 8, + "4": 8, + "5": 8, + "6": 8, + "7": 8, + "8": 18, + "9": 8, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 8, + "17": 8, + "18": 8, "19": 0, "20": 0, "21": 0, @@ -25219,15 +25219,15 @@ "23": 0 }, "f": { - "0": 4, - "1": 9, - "2": 4, + "0": 8, + "1": 18, + "2": 8, "3": 0 }, "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], + "0": [8, 0], + "1": [0, 8], + "2": [8, 0], "3": [0, 0], "4": [0, 0] }, @@ -25733,39 +25733,39 @@ } }, "s": { - "0": 2, - "1": 2, + "0": 4, + "1": 4, "2": 0, - "3": 2, - "4": 2, - "5": 2, - "6": 2, - "7": 2, - "8": 2, - "9": 2, - "10": 2, - "11": 2, - "12": 2, - "13": 2, - "14": 2, - "15": 2, - "16": 2, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 2, - "1": 2, - "2": 2, + "3": 4, + "4": 4, + "5": 4, + "6": 4, + "7": 4, + "8": 4, + "9": 4, + "10": 4, + "11": 4, + "12": 4, + "13": 4, + "14": 4, + "15": 4, + "16": 4, + "17": 0, + "18": 0, + "19": 0, + "20": 0, + "21": 0 + }, + "f": { + "0": 4, + "1": 4, + "2": 4, "3": 0 }, "b": { - "0": [2, 0], - "1": [0, 2], - "2": [2, 0], + "0": [4, 0], + "1": [0, 4], + "2": [4, 0], "3": [0, 0], "4": [0, 0] }, @@ -26256,23 +26256,23 @@ } }, "s": { - "0": 3, - "1": 3, + "0": 6, + "1": 6, "2": 0, - "3": 3, - "4": 3, - "5": 3, - "6": 3, - "7": 3, + "3": 6, + "4": 6, + "5": 6, + "6": 6, + "7": 6, "8": 0, - "9": 3, - "10": 3, - "11": 3, - "12": 3, - "13": 3, - "14": 3, - "15": 3, - "16": 3, + "9": 6, + "10": 6, + "11": 6, + "12": 6, + "13": 6, + "14": 6, + "15": 6, + "16": 6, "17": 0, "18": 0, "19": 0, @@ -26280,15 +26280,15 @@ "21": 0 }, "f": { - "0": 3, + "0": 6, "1": 0, - "2": 3, + "2": 6, "3": 0 }, "b": { - "0": [3, 0], - "1": [0, 3], - "2": [3, 0], + "0": [6, 0], + "1": [0, 6], + "2": [6, 0], "3": [0, 0], "4": [0, 0] }, @@ -26789,24 +26789,24 @@ } }, "s": { - "0": 3, - "1": 3, + "0": 6, + "1": 6, "2": 0, - "3": 3, - "4": 3, - "5": 3, - "6": 3, - "7": 3, - "8": 5, - "9": 3, - "10": 3, - "11": 3, - "12": 3, - "13": 3, - "14": 3, - "15": 3, - "16": 3, - "17": 3, + "3": 6, + "4": 6, + "5": 6, + "6": 6, + "7": 6, + "8": 10, + "9": 6, + "10": 6, + "11": 6, + "12": 6, + "13": 6, + "14": 6, + "15": 6, + "16": 6, + "17": 6, "18": 0, "19": 0, "20": 0, @@ -26814,15 +26814,15 @@ "22": 0 }, "f": { - "0": 3, - "1": 5, - "2": 3, + "0": 6, + "1": 10, + "2": 6, "3": 0 }, "b": { - "0": [3, 0], - "1": [0, 3], - "2": [3, 0], + "0": [6, 0], + "1": [0, 6], + "2": [6, 0], "3": [0, 0], "4": [0, 0] }, @@ -27313,23 +27313,23 @@ } }, "s": { - "0": 3, - "1": 3, + "0": 6, + "1": 6, "2": 0, - "3": 3, - "4": 3, - "5": 3, - "6": 3, - "7": 3, - "8": 5, - "9": 3, - "10": 3, - "11": 3, - "12": 3, - "13": 3, - "14": 3, - "15": 3, - "16": 3, + "3": 6, + "4": 6, + "5": 6, + "6": 6, + "7": 6, + "8": 10, + "9": 6, + "10": 6, + "11": 6, + "12": 6, + "13": 6, + "14": 6, + "15": 6, + "16": 6, "17": 0, "18": 0, "19": 0, @@ -27337,15 +27337,15 @@ "21": 0 }, "f": { - "0": 3, - "1": 5, - "2": 3, + "0": 6, + "1": 10, + "2": 6, "3": 0 }, "b": { - "0": [3, 0], - "1": [0, 3], - "2": [3, 0], + "0": [6, 0], + "1": [0, 6], + "2": [6, 0], "3": [0, 0], "4": [0, 0] }, @@ -27361,6 +27361,280 @@ "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", "hash": "3046ab81c1cfd74934774f62c455d230599c2ac9" }, + "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts": { + "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts", + "statementMap": { + "0": { + "start": { + "line": 1, + "column": 34 + }, + "end": { + "line": 18, + "column": 14 + } + }, + "1": { + "start": { + "line": 2, + "column": 2 + }, + "end": { + "line": 2, + "column": 32 + } + }, + "2": { + "start": { + "line": 3, + "column": 2 + }, + "end": { + "line": 3, + "column": 32 + } + }, + "3": { + "start": { + "line": 4, + "column": 2 + }, + "end": { + "line": 4, + "column": 30 + } + }, + "4": { + "start": { + "line": 5, + "column": 2 + }, + "end": { + "line": 5, + "column": 42 + } + }, + "5": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 6, + "column": 36 + } + }, + "6": { + "start": { + "line": 7, + "column": 2 + }, + "end": { + "line": 7, + "column": 38 + } + }, + "7": { + "start": { + "line": 8, + "column": 2 + }, + "end": { + "line": 8, + "column": 30 + } + }, + "8": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 36 + } + }, + "9": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 32 + } + }, + "10": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 11, + "column": 36 + } + }, + "11": { + "start": { + "line": 12, + "column": 2 + }, + "end": { + "line": 12, + "column": 32 + } + }, + "12": { + "start": { + "line": 13, + "column": 2 + }, + "end": { + "line": 13, + "column": 36 + } + }, + "13": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 36 + } + }, + "14": { + "start": { + "line": 15, + "column": 2 + }, + "end": { + "line": 15, + "column": 34 + } + }, + "15": { + "start": { + "line": 16, + "column": 2 + }, + "end": { + "line": 16, + "column": 32 + } + }, + "16": { + "start": { + "line": 17, + "column": 2 + }, + "end": { + "line": 17, + "column": 15 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 1, + "column": 35 + }, + "end": { + "line": 1, + "column": 36 + } + }, + "loc": { + "start": { + "line": 1, + "column": 46 + }, + "end": { + "line": 18, + "column": 1 + } + }, + "line": 1 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 18, + "column": 3 + }, + "end": { + "line": 18, + "column": 13 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 18, + "column": 3 + }, + "end": { + "line": 18, + "column": 7 + } + }, + { + "start": { + "line": 18, + "column": 11 + }, + "end": { + "line": 18, + "column": 13 + } + } + ], + "line": 18 + } + }, + "s": { + "0": 12, + "1": 12, + "2": 12, + "3": 12, + "4": 12, + "5": 12, + "6": 12, + "7": 12, + "8": 12, + "9": 12, + "10": 12, + "11": 12, + "12": 12, + "13": 12, + "14": 12, + "15": 12, + "16": 12 + }, + "f": { + "0": 12 + }, + "b": { + "0": [12, 12] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts" + ], + "mappings": "AAAO,WAAK,OAAL,kBAAKA,UAAL;AACL,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,gBAAa;AACb,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,cAAW;AACX,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,YAAS;AACT,EAAAA,MAAA,WAAQ;AAfE,SAAAA;AAAA,GAAA;", + "names": ["Icon"] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "875c90456c27fc75e15c5fc89a86b1f34a8eedce" + }, "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertVariant.ts": { "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertVariant.ts", "statementMap": {}, diff --git a/src/sections/loading/LoadingContext.tsx b/src/sections/loading/LoadingContext.ts similarity index 85% rename from src/sections/loading/LoadingContext.tsx rename to src/sections/loading/LoadingContext.ts index e6b1f7dae..560bbf099 100644 --- a/src/sections/loading/LoadingContext.tsx +++ b/src/sections/loading/LoadingContext.ts @@ -7,7 +7,7 @@ interface LoadingContextProps { export const LoadingContext = createContext({ isLoading: false, - setIsLoading: () => {} + setIsLoading: /* istanbul ignore next */ () => {} }) export const useLoading = () => useContext(LoadingContext) diff --git a/tests/component/sections/layout/top-bar-progress-indicator/TopBarProgressIndicator.spec.tsx b/tests/component/sections/layout/top-bar-progress-indicator/TopBarProgressIndicator.spec.tsx new file mode 100644 index 000000000..72eba22d2 --- /dev/null +++ b/tests/component/sections/layout/top-bar-progress-indicator/TopBarProgressIndicator.spec.tsx @@ -0,0 +1,22 @@ +import TopBarProgressIndicator from '../../../../../src/sections/layout/topbar-progress-indicator/TopbarProgressIndicator' +import { LoadingContext } from '../../../../../src/sections/loading/LoadingContext' + +describe('TopBarProgressIndicator', () => { + it('should render without errors', () => { + cy.mount() + + cy.get('canvas').should('not.exist') + }) + + it('should render the TopBarProgress when loading is true', () => { + const setIsLoading = () => {} + + cy.mount( + + {' '} + + ) + + cy.get('canvas').should('exist') + }) +}) From e01b97ebf24ab53a2180477485f058e88718927b Mon Sep 17 00:00:00 2001 From: MellyGray Date: Fri, 12 May 2023 13:45:47 +0200 Subject: [PATCH 13/24] feat(PageNotFound): use the Alert component --- src/sections/page-not-found/PageNotFound.tsx | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/sections/page-not-found/PageNotFound.tsx b/src/sections/page-not-found/PageNotFound.tsx index 86524d8c5..075cdd5a0 100644 --- a/src/sections/page-not-found/PageNotFound.tsx +++ b/src/sections/page-not-found/PageNotFound.tsx @@ -1,13 +1,10 @@ -// TODO: Substitute this with the Alert component of the design system +import { Alert } from 'dataverse-design-system' export function PageNotFound() { return ( -
-

Page Not Found

-

- The page you are looking for was not found. If you believe this is an error, please contact - Demo Dataverse Support for assistance. -

-
+ + The page you are looking for was not found. If you believe this is an error, please contact + Demo Dataverse Support for assistance. + ) } From f50dbf7c9d41004b6a4d077c2a82dcd2fbedfe98 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Fri, 12 May 2023 13:54:25 +0200 Subject: [PATCH 14/24] feat(Dataset Boilerplate): add translations --- public/locales/en/dataset.json | 4 ++++ public/locales/en/pageNotFound.json | 4 ++++ src/sections/dataset/Dataset.tsx | 6 ++++-- src/sections/page-not-found/PageNotFound.tsx | 8 +++++--- 4 files changed, 17 insertions(+), 5 deletions(-) create mode 100644 public/locales/en/dataset.json create mode 100644 public/locales/en/pageNotFound.json diff --git a/public/locales/en/dataset.json b/public/locales/en/dataset.json new file mode 100644 index 000000000..1cc49dad3 --- /dev/null +++ b/public/locales/en/dataset.json @@ -0,0 +1,4 @@ +{ + "filesTabTitle": "Files", + "metadataTabTitle": "Metadata" +} diff --git a/public/locales/en/pageNotFound.json b/public/locales/en/pageNotFound.json new file mode 100644 index 000000000..1fb88259b --- /dev/null +++ b/public/locales/en/pageNotFound.json @@ -0,0 +1,4 @@ +{ + "heading": "Page Not Found", + "message": "The page you are looking for was not found. If you believe this is an error, please contact Demo Dataverse Support for assistance." +} diff --git a/src/sections/dataset/Dataset.tsx b/src/sections/dataset/Dataset.tsx index 29a814dc1..856120481 100644 --- a/src/sections/dataset/Dataset.tsx +++ b/src/sections/dataset/Dataset.tsx @@ -6,6 +6,7 @@ import { DatasetLabels } from './dataset-labels/DatasetLabels' import { useLoading } from '../loading/LoadingContext' import { DatasetSkeleton } from './DatasetSkeleton' import { PageNotFound } from '../page-not-found/PageNotFound' +import { useTranslation } from 'react-i18next' interface DatasetProps { datasetRepository: DatasetRepository @@ -15,6 +16,7 @@ interface DatasetProps { export function Dataset({ datasetRepository, id }: DatasetProps) { const { dataset } = useDataset(datasetRepository, id) const { isLoading } = useLoading() + const { t } = useTranslation('dataset') if (isLoading) { return @@ -38,10 +40,10 @@ export function Dataset({ datasetRepository, id }: DatasetProps) { Summary Block - +
Files Section
- +
Metadata Section
diff --git a/src/sections/page-not-found/PageNotFound.tsx b/src/sections/page-not-found/PageNotFound.tsx index 075cdd5a0..68dece00b 100644 --- a/src/sections/page-not-found/PageNotFound.tsx +++ b/src/sections/page-not-found/PageNotFound.tsx @@ -1,10 +1,12 @@ import { Alert } from 'dataverse-design-system' +import { useTranslation } from 'react-i18next' export function PageNotFound() { + const { t } = useTranslation('pageNotFound') + return ( - - The page you are looking for was not found. If you believe this is an error, please contact - Demo Dataverse Support for assistance. + + {t('message')} ) } From 596a0aadfba36b21f84f94f3650a1f25e98cf4c7 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Fri, 12 May 2023 14:05:13 +0200 Subject: [PATCH 15/24] fix(Route): datasets route in plural --- src/Router.tsx | 2 +- src/sections/Route.enum.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Router.tsx b/src/Router.tsx index 387380582..0f9e895ef 100644 --- a/src/Router.tsx +++ b/src/Router.tsx @@ -15,7 +15,7 @@ const router = createBrowserRouter( element: }, { - path: `${Route.DATASET}/:id`, + path: `${Route.DATASETS}/:id`, element: DatasetFactory.create() } ] diff --git a/src/sections/Route.enum.ts b/src/sections/Route.enum.ts index cd7ae563c..a63752a54 100644 --- a/src/sections/Route.enum.ts +++ b/src/sections/Route.enum.ts @@ -3,5 +3,5 @@ export enum Route { SIGN_UP = '/dataverseuser.xhtml?editMode=CREATE&redirectPage=%2Fdataverse.xhtml', LOG_IN = '/loginpage.xhtml?redirectPage=%2Fdataverse.xhtml', LOG_OUT = '/', - DATASET = 'dataset' + DATASETS = 'datasets' } From d245c4a3d8ef36409a4ba35e03768d28e8969e56 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Mon, 15 May 2023 16:08:19 +0200 Subject: [PATCH 16/24] fix(dev-env):restore dev-env files --- dev-env/docker-compose-dev.yml | 137 +++++++++++++++++++++++++++++++++ dev-env/dvconfig.py | 16 ++++ dev-env/nginx.conf | 18 +++++ dev-env/rm-env.sh | 4 + dev-env/run-env.sh | 62 +++++++++++++++ 5 files changed, 237 insertions(+) create mode 100644 dev-env/docker-compose-dev.yml create mode 100644 dev-env/dvconfig.py create mode 100644 dev-env/nginx.conf create mode 100755 dev-env/rm-env.sh create mode 100755 dev-env/run-env.sh diff --git a/dev-env/docker-compose-dev.yml b/dev-env/docker-compose-dev.yml new file mode 100644 index 000000000..c0f10de89 --- /dev/null +++ b/dev-env/docker-compose-dev.yml @@ -0,0 +1,137 @@ +version: '2.4' + +services: + dev_nginx: + container_name: 'dev_nginx_proxy' + image: nginx:stable + ports: + - '8000:80' + networks: + - dataverse + depends_on: + - dev_dataverse + - dev_frontend + volumes: + - ./nginx.conf:/etc/nginx/nginx.conf + - ./docker-dev-volumes/nginx/logs:/var/log/nginx/ + + dev_frontend: + container_name: 'dev_frontend' + hostname: frontend + build: + context: ../ + dockerfile: ./dev.Dockerfile + network: host + expose: + - '5173' + stdin_open: true + networks: + - dataverse + depends_on: + - dev_dataverse + environment: + - VITE_DATAVERSE_BACKEND_URL=http://localhost:8000 + volumes: + - ../:/usr/src/app + - /usr/src/app/dev-env + - /usr/src/app/node_modules + + dev_dataverse: + container_name: 'dev_dataverse' + hostname: dataverse + image: ${REGISTRY}/gdcc/dataverse:${DATAVERSE_BRANCH_NAME} + restart: on-failure + user: payara + environment: + - DATAVERSE_DB_HOST=postgres + - DATAVERSE_DB_PASSWORD=secret + - DATAVERSE_DB_USER=${DATAVERSE_DB_USER} + - DATAVERSE_FEATURE_API_SESSION_AUTH=1 + # We open 8080, rather than just expose, so that the docker-final-setup.sh script works from the run-env.sh script + ports: + - '8080:8080' + networks: + - dataverse + depends_on: + - dev_postgres + - dev_solr + volumes: + - ./docker-dev-volumes/app/data:/dv + - ./docker-dev-volumes/app/secrets:/secrets + tmpfs: + - /dumps:mode=770,size=2052M,uid=1000,gid=1000 + - /tmp:mode=770,size=2052M,uid=1000,gid=1000 + mem_limit: 2147483648 # 2 GiB + mem_reservation: 1024m + privileged: false + + dev_postgres: + container_name: 'dev_postgres' + hostname: postgres + image: postgres:${POSTGRES_VERSION} + restart: on-failure + environment: + - POSTGRES_USER=${DATAVERSE_DB_USER} + - POSTGRES_PASSWORD=secret + ports: + - '5432:5432' + networks: + - dataverse + volumes: + - ./docker-dev-volumes/postgresql/data:/var/lib/postgresql/data + + dev_solr_initializer: + container_name: 'dev_solr_initializer' + image: alpine + restart: 'no' + command: + - sh + - -c + - 'chown 8983:8983 /conf /var/solr && cp *.xml /conf' + volumes: + - ./docker-dev-volumes/solr/data:/var/solr + - ./docker-dev-volumes/solr/conf:/conf + - ./dataverse/conf/solr/8.11.1/schema.xml:/schema.xml + - ./dataverse/conf/solr/8.11.1/solrconfig.xml:/solrconfig.xml + + dev_solr: + container_name: 'dev_solr' + hostname: 'solr' + image: solr:${SOLR_VERSION} + depends_on: + - dev_solr_initializer + restart: on-failure + expose: + - '8983' + networks: + - dataverse + command: + - bash + - -c + - 'cd /opt/solr-${SOLR_VERSION}/server/solr/configsets/_default/conf && cp -R -n . /template && solr-precreate collection1 /template' + volumes: + - ./docker-dev-volumes/solr/data:/var/solr + - ./docker-dev-volumes/solr/conf:/template + + dev_smtp: + container_name: 'dev_smtp' + hostname: 'smtp' + image: maildev/maildev:2.0.5 + restart: on-failure + expose: + - '25' # smtp server + ports: + - '1080:1080' # web ui + environment: + - MAILDEV_SMTP_PORT=25 + - MAILDEV_MAIL_DIRECTORY=/mail + networks: + - dataverse + #volumes: + # - ./docker-dev-volumes/smtp/data:/mail + tmpfs: + - /mail:mode=770,size=128M,uid=1000,gid=1000 + +networks: + dataverse: + driver: bridge diff --git a/dev-env/dvconfig.py b/dev-env/dvconfig.py new file mode 100644 index 000000000..1ef2af74f --- /dev/null +++ b/dev-env/dvconfig.py @@ -0,0 +1,16 @@ +base_url = 'http://localhost:8000' +api_token = '' +sample_data = [ +'data/dataverses/pums/pums.json', +'data/dataverses/pums/datasets/2000pums5/2000pums5.json', +'data/dataverses/dataverseno/dataverseno.json', +'data/dataverses/open-source-at-harvard/open-source-at-harvard.json', +'data/dataverses/open-source-at-harvard/dataverses/dataverse-project/dataverse-project.json', +'data/dataverses/open-source-at-harvard/dataverses/dataverse-project/datasets/dataverse-irc-metrics/dataverse-irc-metrics.json', +'data/dataverses/ubiquity-press/ubiquity-press.json', +'data/dataverses/ubiquity-press/dataverses/jopd/jopd.json', +'data/dataverses/ubiquity-press/dataverses/jopd/datasets/flynn-effect-in-estonia/flynn-effect-in-estonia.json', +'data/dataverses/ubiquity-press/dataverses/jopd/datasets/bafacalo/bafacalo.json', +'data/dataverses/king/king.json', +'data/dataverses/king/datasets/cause-of-death/cause-of-death.json', +] diff --git a/dev-env/nginx.conf b/dev-env/nginx.conf new file mode 100644 index 000000000..e74dfe423 --- /dev/null +++ b/dev-env/nginx.conf @@ -0,0 +1,18 @@ +events {} +http { + server { + listen 80; + server_name localhost; + + location / { + proxy_pass http://dataverse:8080; + } + + location /spa { + proxy_pass http://frontend:5173; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } + } +} diff --git a/dev-env/rm-env.sh b/dev-env/rm-env.sh new file mode 100755 index 000000000..1bf0a3764 --- /dev/null +++ b/dev-env/rm-env.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +docker-compose -f "./docker-compose-dev.yml" down +rm -rf ./docker-dev-volumes diff --git a/dev-env/run-env.sh b/dev-env/run-env.sh new file mode 100755 index 000000000..997841b79 --- /dev/null +++ b/dev-env/run-env.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash + +export DATAVERSE_BRANCH_NAME=$1 + +# To avoid timeout issues on frontend container startup +export COMPOSE_HTTP_TIMEOUT=200 + +DATAVERSE_API_BASE_URL=http://localhost:8000/api + +echo "INFO - Setting up Dataverse on branch ${DATAVERSE_BRANCH_NAME}..." + +echo "INFO - Removing current environment if exists..." +./rm-env.sh + +echo "INFO - Cloning Dataverse backend repository..." +git clone -b ${DATAVERSE_BRANCH_NAME} git@github.com:IQSS/dataverse.git + +echo "INFO - Running docker containers..." +docker-compose -f "./docker-compose-dev.yml" up -d --build + +echo "INFO - Waiting for containers to be ready..." +# Up to ~5 minutes +max_attempts=30 +n_attempts=0 +until $(curl --output /dev/null --silent --head --fail ${DATAVERSE_API_BASE_URL}/info/version); do + if [ ${n_attempts} -eq ${max_attempts} ];then + echo "ERROR - Timeout reached while waiting for containers to be ready" + ./rm-env.sh + rm -rf dataverse + exit 1 + fi + n_attempts=$(($n_attempts+1)) + sleep 10 +done + +echo "INFO - Bootstrapping dataverse..." +cd dataverse +./scripts/dev/docker-final-setup.sh + +echo "INFO - Cleaning up repository..." +cd .. +rm -rf dataverse + +echo "INFO - Cloning Dataverse sample data repository..." +git clone git@github.com:IQSS/dataverse-sample-data.git + +echo "INFO - Configuring Dataverse sample data repository..." +cd dataverse-sample-data +python3 -m venv venv +source venv/bin/activate +pip install -r requirements.txt +cp ../dvconfig.py ./dvconfig.py +curl -X PUT -d 'true' ${DATAVERSE_API_BASE_URL}/admin/settings/:AllowApiTokenLookupViaApi +dataverse_api_token=$(python3 get_api_token.py) +sed -i '' "s//${dataverse_api_token}/g" dvconfig.py + +echo "INFO - Creating sample data..." +python3 create_sample_data.py + +echo "INFO - Cleaning up repository..." +cd .. +rm -rf dataverse-sample-data From 10b0bcf147bd9b14b489c695652a753d75bd58f1 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Mon, 15 May 2023 16:22:22 +0200 Subject: [PATCH 17/24] fix: add packages/design-system/.nyc_output to .gitignore --- .gitignore | 1 + packages/design-system/.nyc_output/out.json | 27656 ------------------ 2 files changed, 1 insertion(+), 27656 deletions(-) delete mode 100644 packages/design-system/.nyc_output/out.json diff --git a/.gitignore b/.gitignore index 89215c2c5..7ece53d07 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ yarn-error.log* /dev-env/docker-dev-volumes /dev-env/dataverse /dev-env/dataverse-sample-data +/packages/design-system/.nyc_output diff --git a/packages/design-system/.nyc_output/out.json b/packages/design-system/.nyc_output/out.json deleted file mode 100644 index f0908258a..000000000 --- a/packages/design-system/.nyc_output/out.json +++ /dev/null @@ -1,27656 +0,0 @@ -{ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/BaseTheme.ts": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/BaseTheme.ts", - "statementMap": { - "0": { - "start": { - "line": 3, - "column": 25 - }, - "end": { - "line": 42, - "column": 1 - } - } - }, - "fnMap": {}, - "branchMap": {}, - "s": { - "0": 194 - }, - "f": {}, - "b": {}, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/BaseTheme.ts" - ], - "mappings": "AAAA,OAAO,oBAAoB;AAC3B,OAAO,yBAAyB;AA4CzB,aAAM,YAA2B;AAAA,EACtC,UAAU;AAAA,EACV,OAAO;AAAA,IACL,OAAO,eAAe;AAAA,IACtB,SAAS,eAAe;AAAA,IACxB,WAAW,eAAe;AAAA,IAC1B,cAAc,eAAe;AAAA,IAC7B,cAAc,eAAe;AAAA,IAC7B,WAAW,eAAe;AAAA,IAC1B,aAAa,eAAe;AAAA,IAC5B,WAAW,eAAe;AAAA,IAC1B,cAAc,eAAe;AAAA,IAC7B,kBAAkB,eAAe;AAAA,IACjC,oBAAoB,eAAe;AAAA,IACnC,kBAAkB,eAAe;AAAA,IACjC,kBAAkB,eAAe;AAAA,IACjC,eAAe,eAAe;AAAA,IAC9B,iBAAiB,eAAe;AAAA,IAChC,iBAAiB,eAAe;AAAA,IAChC,iBAAiB,eAAe;AAAA,IAChC,cAAc,eAAe;AAAA,IAC7B,gBAAgB,eAAe;AAAA,IAC/B,eAAe,eAAe;AAAA,IAC9B,WAAW,eAAe;AAAA,IAC1B,gBAAgB,eAAe;AAAA,IAC/B,mBAAmB,eAAe;AAAA,IAClC,cAAc,eAAe;AAAA,IAC7B,mBAAmB,eAAe;AAAA,EACpC;AAAA,EACA,YAAY;AAAA,IACV,UAAU,oBAAoB;AAAA,IAC9B,YAAY,oBAAoB;AAAA,IAChC,eAAe,oBAAoB;AAAA,IACnC,YAAY,oBAAoB;AAAA,IAChC,YAAY,oBAAoB;AAAA,IAChC,gBAAgB,oBAAoB;AAAA,IACpC,iBAAiB,oBAAoB;AAAA,IACrC,YAAY,oBAAoB;AAAA,EAClC;AACF;", - "names": [] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "09fbbfce1ff8cc6a86522c7fa9537c6a361c48ca" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeContext.ts": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeContext.ts", - "statementMap": { - "0": { - "start": { - "line": 3, - "column": 28 - }, - "end": { - "line": 3, - "column": 52 - } - } - }, - "fnMap": {}, - "branchMap": {}, - "s": { - "0": 194 - }, - "f": {}, - "b": {}, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeContext.ts" - ], - "mappings": "AAAA,SAAS,qBAAqB;AAC9B,SAAS,iBAAiB;AAEnB,aAAM,eAAe,cAAc,SAAS;", - "names": [] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "d95f435fccd317943d0fd56efda7a8236e084f6c" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 149 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 23 - } - }, - "9": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 29, - "column": 11 - } - }, - "10": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 19 - } - }, - "11": { - "start": { - "line": 32, - "column": 24 - }, - "end": { - "line": 35, - "column": 1 - } - }, - "12": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 7 - } - }, - "13": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 34 - } - }, - "14": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 36, - "column": 45 - } - }, - "15": { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 38, - "column": 34 - } - }, - "16": { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 55, - "column": 1 - } - }, - "17": { - "start": { - "line": 40, - "column": 2 - }, - "end": { - "line": 40, - "column": 39 - } - }, - "18": { - "start": { - "line": 41, - "column": 2 - }, - "end": { - "line": 41, - "column": 39 - } - }, - "19": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 54, - "column": 5 - } - }, - "20": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 46, - "column": 175 - } - }, - "21": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 53, - "column": 7 - } - }, - "22": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 15 - } - }, - "23": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 15 - } - }, - "24": { - "start": { - "line": 50, - "column": 32 - }, - "end": { - "line": 50, - "column": 115 - } - }, - "25": { - "start": { - "line": 51, - "column": 6 - }, - "end": { - "line": 52, - "column": 54 - } - }, - "26": { - "start": { - "line": 52, - "column": 8 - }, - "end": { - "line": 52, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ThemeProvider", - "decl": { - "start": { - "line": 21, - "column": 16 - }, - "end": { - "line": 21, - "column": 29 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 30, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 32, - "column": 24 - }, - "end": { - "line": 32, - "column": 25 - } - }, - "loc": { - "start": { - "line": 32, - "column": 30 - }, - "end": { - "line": 35, - "column": 1 - } - }, - "line": 32 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 45, - "column": 9 - }, - "end": { - "line": 45, - "column": 10 - } - }, - "loc": { - "start": { - "line": 45, - "column": 29 - }, - "end": { - "line": 54, - "column": 3 - } - }, - "line": 45 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 47, - "column": 27 - }, - "end": { - "line": 47, - "column": 28 - } - }, - "loc": { - "start": { - "line": 47, - "column": 44 - }, - "end": { - "line": 53, - "column": 5 - } - }, - "line": 47 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 22, - "column": 19 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 22, - "column": 10 - }, - "end": { - "line": 22, - "column": 19 - } - } - ], - "line": 22 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 55, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 55, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 48 - }, - "5": { - "loc": { - "start": { - "line": 51, - "column": 6 - }, - "end": { - "line": 52, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 51, - "column": 6 - }, - "end": { - "line": 52, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 51 - } - }, - "s": { - "0": 194, - "1": 194, - "2": 0, - "3": 194, - "4": 194, - "5": 194, - "6": 194, - "7": 194, - "8": 194, - "9": 10, - "10": 194, - "11": 194, - "12": 10, - "13": 10, - "14": 194, - "15": 194, - "16": 194, - "17": 194, - "18": 194, - "19": 194, - "20": 194, - "21": 194, - "22": 0, - "23": 0, - "24": 0, - "25": 0, - "26": 0 - }, - "f": { - "0": 194, - "1": 10, - "2": 10, - "3": 194, - "4": 0 - }, - "b": { - "0": [194, 0], - "1": [0, 194], - "2": [6], - "3": [194, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAWS;;;;;;;;;;;;;;;;AAXT,SAASA,iBAAgC;AACzC,SAAoBC,kBAAkB;AACtC,SAASC,oBAAoB;AAC7B,OAAO;AAOA,gBAASC,cAAc;AAAA,EAAEC,QAAQJ;AAAAA,EAAWK;AAAqB,GAAG;AACzE,SAAO,uBAAC,aAAa,UAAb,EAAsB,OAAOD,OAAQC,YAAtC;AAAA;AAAA;AAAA;AAAA,SAA+C;AACxD;AAACC,KAFeH;AAIT,aAAMI,WAAWA;AAAAC;AAAA,SAAMP,WAAWC,YAAY;AAAC;AAAAM,GAAzCD,UAAQ;AAAA;AAAAE", - "names": [ - "baseTheme", - "useContext", - "ThemeContext", - "ThemeProvider", - "theme", - "children", - "_c", - "useTheme", - "_s", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/theme/ThemeProvider.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "9951e7bd3673d04e77386d9e1e1265d70b819aa8" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 155 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 20 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 35 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 181 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "BreadcrumbItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 30 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 16, - "1": 16, - "2": 0, - "3": 16, - "4": 16, - "5": 16, - "6": 16, - "7": 16, - "8": 18, - "9": 16, - "10": 16, - "11": 16, - "12": 16, - "13": 16, - "14": 16, - "15": 16, - "16": 16, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 16, - "1": 18, - "2": 16, - "3": 0 - }, - "b": { - "0": [16, 0], - "1": [0, 16], - "2": [16, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASI;AATJ,2BAA2BA;AAAgB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAO7D,gBAASC,eAAe;AAAA,EAAEC;AAAAA,EAAMC;AAAAA,EAAQC;AAAiD,GAAG;AACjG,SACE,uBAAC,oBAAiB,MAAY,QAC3BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeJ;AAAc;AAAAK", - "names": [ - "BreadcrumbItemBS", - "BreadcrumbItem", - "href", - "active", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/BreadcrumbItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "cbfd7df49f55edad2409e559e88df220d60a523d" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 151 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 16 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 33 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 31 - } - }, - "12": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 39 - } - }, - "15": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 47, - "column": 5 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 177 - } - }, - "17": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 46, - "column": 7 - } - }, - "18": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "20": { - "start": { - "line": 43, - "column": 32 - }, - "end": { - "line": 43, - "column": 115 - } - }, - "21": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "22": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Breadcrumb", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 19 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 38, - "column": 9 - }, - "end": { - "line": 38, - "column": 10 - } - }, - "loc": { - "start": { - "line": 38, - "column": 29 - }, - "end": { - "line": 47, - "column": 3 - } - }, - "line": 38 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 40, - "column": 27 - }, - "end": { - "line": 40, - "column": 28 - } - }, - "loc": { - "start": { - "line": 40, - "column": 44 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "line": 40 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 32 - }, - "3": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - }, - "4": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAKS;AALT,2BAAuBA;AAAoB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAE5D,SAASC,sBAAsB;AAE/B,SAASC,WAAW;AAAA,EAAEC;AAA4B,GAAG;AACnD,SAAO,uBAAC,gBAAcA,YAAf;AAAA;AAAA;AAAA;AAAA,SAAwB;AACjC;AAACC,KAFQF;AAITA,WAAWG,OAAOJ;AAElB,SAASC;AAAY;AAAAI", - "names": [ - "BreadcrumbBS", - "BreadcrumbItem", - "Breadcrumb", - "children", - "_c", - "Item", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/breadcrumb/Breadcrumb.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "a0b5b4f17167c4b829ad58c8a490ac56cf8df2a7" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 153 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 19 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 34 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 179 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AccordionItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 29 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 36, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 36, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAOlC,gBAASC,cAAc;AAAA,EAAEC;AAAAA,EAAUC;AAA6B,GAAG;AACxE,SAAO,uBAAC,YAAY,MAAZ,EAAiB,UAAqBA,YAAvC;AAAA;AAAA;AAAA;AAAA,SAAgD;AACzD;AAACC,KAFeH;AAAa;AAAAI", - "names": [ - "Accordion", - "AccordionBS", - "AccordionItem", - "eventKey", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "9d893faf079edf16c80ed5f502aa912d2df58cf1" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 153 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 19 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 34 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 179 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AccordionBody", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 29 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 36, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 36, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAMlC,gBAASC,cAAc;AAAA,EAAEC;AAA6B,GAAG;AAC9D,SAAO,uBAAC,YAAY,MAAZ,EAAkBA,YAAnB;AAAA;AAAA;AAAA;AAAA,SAA4B;AACrC;AAACC,KAFeF;AAAa;AAAAG", - "names": ["Accordion", "AccordionBS", "AccordionBody", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionBody.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "ba96c5910715e4ab395bec90da7d413011f86758" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 155 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 21 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 36 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 181 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AccordionHeader", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 31 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 36, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 36, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAMlC,gBAASC,gBAAgB;AAAA,EAAEC;AAA+B,GAAG;AAClE,SAAO,uBAAC,YAAY,QAAZ,EAAoBA,YAArB;AAAA;AAAA;AAAA;AAAA,SAA8B;AACvC;AAACC,KAFeF;AAAe;AAAAG", - "names": ["Accordion", "AccordionBS", "AccordionHeader", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/AccordionHeader.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "d528df807643adbe622b784cd14a843c57e93257" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 149 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 29, - "column": 11 - } - }, - "9": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 15 - } - }, - "10": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 31 - } - }, - "11": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 31 - } - }, - "12": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 35 - } - }, - "13": { - "start": { - "line": 37, - "column": 0 - }, - "end": { - "line": 37, - "column": 30 - } - }, - "14": { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 54, - "column": 1 - } - }, - "15": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 39, - "column": 39 - } - }, - "16": { - "start": { - "line": 40, - "column": 2 - }, - "end": { - "line": 40, - "column": 39 - } - }, - "17": { - "start": { - "line": 41, - "column": 2 - }, - "end": { - "line": 53, - "column": 5 - } - }, - "18": { - "start": { - "line": 45, - "column": 4 - }, - "end": { - "line": 45, - "column": 175 - } - }, - "19": { - "start": { - "line": 46, - "column": 4 - }, - "end": { - "line": 52, - "column": 7 - } - }, - "20": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "21": { - "start": { - "line": 48, - "column": 8 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "22": { - "start": { - "line": 49, - "column": 32 - }, - "end": { - "line": 49, - "column": 115 - } - }, - "23": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 54 - } - }, - "24": { - "start": { - "line": 51, - "column": 8 - }, - "end": { - "line": 51, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Accordion", - "decl": { - "start": { - "line": 20, - "column": 9 - }, - "end": { - "line": 20, - "column": 18 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 30, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 44, - "column": 9 - }, - "end": { - "line": 44, - "column": 10 - } - }, - "loc": { - "start": { - "line": 44, - "column": 29 - }, - "end": { - "line": 53, - "column": 3 - } - }, - "line": 44 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 46, - "column": 27 - }, - "end": { - "line": 46, - "column": 28 - } - }, - "loc": { - "start": { - "line": 46, - "column": 44 - }, - "end": { - "line": 52, - "column": 5 - } - }, - "line": 46 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 23, - "column": 20 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 23, - "column": 15 - }, - "end": { - "line": 23, - "column": 20 - } - } - ], - "line": 23 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 54, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 0 - }, - "end": { - "line": 54, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 47 - }, - "5": { - "loc": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 50 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 8, - "19": 8, - "20": 0, - "21": 0, - "22": 0, - "23": 0, - "24": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8], - "3": [8, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcI;AAdJ,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AACzC,SAASC,qBAAqB;AAC9B,SAASC,qBAAqB;AAC9B,SAASC,uBAAuB;AAQhC,SAASJ,UAAU;AAAA,EAAEK;AAAAA,EAAkBC;AAAAA,EAAUC,aAAa;AAAsB,GAAG;AACrF,SACE,uBAAC,eAAY,kBAAoC,YAC9CD,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACE,KANQR;AAQTA,UAAUS,OAAOP;AACjBF,UAAUU,OAAOP;AACjBH,UAAUW,SAASP;AAEnB,SAASJ;AAAW;AAAAY", - "names": [ - "Accordion", - "AccordionBS", - "AccordionItem", - "AccordionBody", - "AccordionHeader", - "defaultActiveKey", - "children", - "alwaysOpen", - "_c", - "Item", - "Body", - "Header", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/accordion/Accordion.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "10fedb444b55a29b87ddcbd9bf5dd6edfb5a72d1" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 145 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 22 - }, - "end": { - "line": 41, - "column": 3 - } - }, - "9": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 33 - } - }, - "10": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 49, - "column": 11 - } - }, - "11": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "12": { - "start": { - "line": 53, - "column": 0 - }, - "end": { - "line": 53, - "column": 30 - } - }, - "13": { - "start": { - "line": 54, - "column": 0 - }, - "end": { - "line": 70, - "column": 1 - } - }, - "14": { - "start": { - "line": 55, - "column": 2 - }, - "end": { - "line": 55, - "column": 39 - } - }, - "15": { - "start": { - "line": 56, - "column": 2 - }, - "end": { - "line": 56, - "column": 39 - } - }, - "16": { - "start": { - "line": 57, - "column": 2 - }, - "end": { - "line": 69, - "column": 5 - } - }, - "17": { - "start": { - "line": 61, - "column": 4 - }, - "end": { - "line": 61, - "column": 171 - } - }, - "18": { - "start": { - "line": 62, - "column": 4 - }, - "end": { - "line": 68, - "column": 7 - } - }, - "19": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 15 - } - }, - "20": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 15 - } - }, - "21": { - "start": { - "line": 65, - "column": 32 - }, - "end": { - "line": 65, - "column": 115 - } - }, - "22": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 54 - } - }, - "23": { - "start": { - "line": 67, - "column": 8 - }, - "end": { - "line": 67, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AlertIcon", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "getAlertIcon", - "decl": { - "start": { - "line": 42, - "column": 11 - }, - "end": { - "line": 42, - "column": 23 - } - }, - "loc": { - "start": { - "line": 42, - "column": 34 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 42 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 60, - "column": 9 - }, - "end": { - "line": 60, - "column": 10 - } - }, - "loc": { - "start": { - "line": 60, - "column": 29 - }, - "end": { - "line": 69, - "column": 3 - } - }, - "line": 60 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 62, - "column": 27 - }, - "end": { - "line": 62, - "column": 28 - } - }, - "loc": { - "start": { - "line": 62, - "column": 44 - }, - "end": { - "line": 68, - "column": 5 - } - }, - "line": 62 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 54, - "column": 0 - }, - "end": { - "line": 70, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 54, - "column": 0 - }, - "end": { - "line": 70, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 54 - }, - "3": { - "loc": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 63 - }, - "4": { - "loc": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 66 - } - }, - "s": { - "0": 16, - "1": 16, - "2": 0, - "3": 16, - "4": 16, - "5": 16, - "6": 16, - "7": 16, - "8": 70, - "9": 70, - "10": 70, - "11": 16, - "12": 16, - "13": 16, - "14": 16, - "15": 16, - "16": 16, - "17": 16, - "18": 16, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 16, - "1": 70, - "2": 70, - "3": 16, - "4": 0 - }, - "b": { - "0": [16, 0], - "1": [0, 16], - "2": [16, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAgBa;AAhBb,2BAAqB;AAAwB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC7C,SACEA,iBACAC,uBACAC,yBACAC,sBACK;AAKA,gBAASC,UAAU;AAAA,EAAEC;AAAwB,GAAG;AAIrD,QAAMC,cAA0B;AAAA,IAC9BC,SAAS,uBAAC,qBAAD;AAAA;AAAA;AAAA;AAAA,WAAiB;AAAA,IAC1BC,MAAM,uBAAC,oBAAD;AAAA;AAAA;AAAA;AAAA,WAAgB;AAAA,IACtBC,SAAS,uBAAC,6BAAD;AAAA;AAAA;AAAA;AAAA,WAAyB;AAAA,IAClCC,QAAQ,uBAAC,2BAAD;AAAA;AAAA;AAAA;AAAA,WAAuB;AAAA,EACjC;AACA,WAASC,aAAaN,UAAoC;AACxD,WAAOC,YAAYD,QAAO;AAAA,EAC5B;AACA,SACE,uBAAC,UAAK,MAAK,OAAM,cAAa,cAAaA,WACxCM,uBAAaN,OAAO,KADvB;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACO,KAlBeR;AAAS;AAAAS", - "names": [ - "CheckCircleFill", - "ExclamationCircleFill", - "ExclamationTriangleFill", - "InfoCircleFill", - "AlertIcon", - "variant", - "ALERT_ICONS", - "success", - "info", - "warning", - "danger", - "getAlertIcon", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertIcon.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "c7a1478a5bcacf2be778e5de0e8940ba3be06a85" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 145 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 15 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 30 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 171 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "AlertLink", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 16, - "1": 16, - "2": 0, - "3": 16, - "4": 16, - "5": 16, - "6": 16, - "7": 16, - "8": 14, - "9": 16, - "10": 16, - "11": 16, - "12": 16, - "13": 16, - "14": 16, - "15": 16, - "16": 16, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 16, - "1": 14, - "2": 16, - "3": 0 - }, - "b": { - "0": [16, 0], - "1": [0, 16], - "2": [16, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAAyB;AAAQ;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAO3C,gBAASA,UAAU;AAAA,EAAEC;AAAAA,EAAMC;AAAqB,GAAG;AACxD,SAAO,uBAAC,QAAQ,MAAR,EAAa,MAAaD,kBAA3B;AAAA;AAAA;AAAA;AAAA,SAAgC;AACzC;AAACE,KAFeH;AAAS;AAAAI", - "names": ["AlertLink", "link", "href", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertLink.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "e4739441cd601f58d588f10634480df81f8781ce" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 141 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 23 - } - }, - "9": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 27, - "column": 7 - } - }, - "10": { - "start": { - "line": 28, - "column": 25 - }, - "end": { - "line": 33, - "column": 3 - } - }, - "11": { - "start": { - "line": 34, - "column": 26 - }, - "end": { - "line": 34, - "column": 40 - } - }, - "12": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 54 - } - }, - "13": { - "start": { - "line": 38, - "column": 18 - }, - "end": { - "line": 38, - "column": 57 - } - }, - "14": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 61, - "column": 11 - } - }, - "15": { - "start": { - "line": 39, - "column": 120 - }, - "end": { - "line": 39, - "column": 134 - } - }, - "16": { - "start": { - "line": 63, - "column": 0 - }, - "end": { - "line": 63, - "column": 42 - } - }, - "17": { - "start": { - "line": 64, - "column": 0 - }, - "end": { - "line": 64, - "column": 11 - } - }, - "18": { - "start": { - "line": 65, - "column": 0 - }, - "end": { - "line": 65, - "column": 23 - } - }, - "19": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 68, - "column": 26 - } - }, - "20": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "21": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 70, - "column": 39 - } - }, - "22": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 71, - "column": 39 - } - }, - "23": { - "start": { - "line": 72, - "column": 2 - }, - "end": { - "line": 84, - "column": 5 - } - }, - "24": { - "start": { - "line": 76, - "column": 4 - }, - "end": { - "line": 76, - "column": 167 - } - }, - "25": { - "start": { - "line": 77, - "column": 4 - }, - "end": { - "line": 83, - "column": 7 - } - }, - "26": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "27": { - "start": { - "line": 79, - "column": 8 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "28": { - "start": { - "line": 80, - "column": 32 - }, - "end": { - "line": 80, - "column": 115 - } - }, - "29": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "30": { - "start": { - "line": 82, - "column": 8 - }, - "end": { - "line": 82, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Alert", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 14 - } - }, - "loc": { - "start": { - "line": 26, - "column": 3 - }, - "end": { - "line": 62, - "column": 1 - } - }, - "line": 26 - }, - "2": { - "name": "getAlertHeading", - "decl": { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 26 - } - }, - "loc": { - "start": { - "line": 35, - "column": 53 - }, - "end": { - "line": 37, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 114 - }, - "end": { - "line": 39, - "column": 115 - } - }, - "loc": { - "start": { - "line": 39, - "column": 120 - }, - "end": { - "line": 39, - "column": 134 - } - }, - "line": 39 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 75, - "column": 9 - }, - "end": { - "line": 75, - "column": 10 - } - }, - "loc": { - "start": { - "line": 75, - "column": 29 - }, - "end": { - "line": 84, - "column": 3 - } - }, - "line": 75 - }, - "5": { - "name": "(anonymous_5)", - "decl": { - "start": { - "line": 77, - "column": 27 - }, - "end": { - "line": 77, - "column": 28 - } - }, - "loc": { - "start": { - "line": 77, - "column": 44 - }, - "end": { - "line": 83, - "column": 5 - } - }, - "line": 77 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 23, - "column": 20 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 23, - "column": 16 - }, - "end": { - "line": 23, - "column": 20 - } - } - ], - "line": 23 - }, - "3": { - "loc": { - "start": { - "line": 36, - "column": 11 - }, - "end": { - "line": 36, - "column": 53 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 36, - "column": 11 - }, - "end": { - "line": 36, - "column": 25 - } - }, - { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 36, - "column": 53 - } - } - ], - "line": 36 - }, - "4": { - "loc": { - "start": { - "line": 39, - "column": 54 - }, - "end": { - "line": 57, - "column": 10 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 39, - "column": 54 - }, - "end": { - "line": 39, - "column": 58 - } - }, - { - "start": { - "line": 39, - "column": 78 - }, - "end": { - "line": 57, - "column": 10 - } - } - ], - "line": 39 - }, - "5": { - "loc": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 69 - }, - "6": { - "loc": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 78 - }, - "7": { - "loc": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 81 - } - }, - "s": { - "0": 16, - "1": 16, - "2": 0, - "3": 16, - "4": 16, - "5": 16, - "6": 16, - "7": 16, - "8": 16, - "9": 76, - "10": 76, - "11": 76, - "12": 76, - "13": 76, - "14": 76, - "15": 6, - "16": 16, - "17": 16, - "18": 16, - "19": 16, - "20": 16, - "21": 16, - "22": 16, - "23": 16, - "24": 16, - "25": 16, - "26": 0, - "27": 0, - "28": 0, - "29": 0, - "30": 0 - }, - "f": { - "0": 16, - "1": 76, - "2": 76, - "3": 6, - "4": 16, - "5": 0 - }, - "b": { - "0": [16, 0], - "1": [0, 16], - "2": [72], - "3": [76, 76], - "4": [76, 70], - "5": [16, 0], - "6": [0, 0], - "7": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAgCI,mBAGM,cAHN;;;;;;;;;;;;;;;;AAhCJ,SAASA,SAASC,eAAe;AAEjC,SAASC,iBAAiB;AAC1B,SAAoBC,gBAAgB;AACpC,SAASC,iBAAiB;AAS1B,SAASJ,MAAM;AAAA,EAAEK;AAAAA,EAASC,cAAc;AAAA,EAAMC;AAAAA,EAAeC;AAAqB,GAAG;AAAAC;AAKnF,QAAMC,iBAAgC;AAAA,IACpCC,SAAS;AAAA,IACTC,MAAM;AAAA,IACNC,SAAS;AAAA,IACTC,QAAQ;AAAA,EACV;AACA,QAAM,CAACC,MAAMC,OAAO,IAAIb,SAAS,IAAI;AAErC,WAASc,gBAAgBZ,UAAuBE,gBAAgC;AAC9E,WAAOA,kBAAiBG,eAAeL,QAAO;AAAA,EAChD;AACA,QAAMa,UAAUD,gBAAgBZ,SAASE,aAAa;AAEtD,SACE,mCACGQ,kBACC,uBAAC,WAAQ,SAAkB,SAAS,MAAMC,QAAQ,KAAK,GAAG,aACxD;AAAA,2BAAC,aAAU,WAAX;AAAA;AAAA;AAAA;AAAA,WAA4B;AAAA;AAAA,IAE5B,uBAAC,OAAGE,qBAAJ;AAAA;AAAA;AAAA;AAAA,WAAY;AAAA,IAAI;AAAA,IAAIV;AAAAA,OAHtB;AAAA;AAAA;AAAA;AAAA,SAIA,KANJ;AAAA;AAAA;AAAA;AAAA,SAQA;AAEJ;AAACC,GA7BQT,OAAK;AAAAmB,KAALnB;AA8BTA,MAAMoB,OAAOhB;AAEb,SAASJ;AAAO;AAAAqB", - "names": [ - "Alert", - "AlertBS", - "AlertIcon", - "useState", - "AlertLink", - "variant", - "dismissible", - "customHeading", - "children", - "_s", - "ALERT_HEADINGS", - "success", - "info", - "warning", - "danger", - "show", - "setShow", - "getAlertHeading", - "heading", - "_c", - "Link", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/Alert.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "90e9cb0c57a5312f744522beb4f95c2ba178a22a" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 141 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 11 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 26 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 167 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Badge", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 21 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 23 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 23 - } - } - ], - "line": 19 - }, - "3": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "4": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "5": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [4], - "3": [8, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAWI;AAXJ,2BAAyB;AAAQ;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAElD,OAAOA,YAAY;AAOZ,gBAASC,MAAM;AAAA,EAAEC,UAAU;AAAA,EAAaC;AAAqB,GAAG;AACrE,SACE,uBAAC,WAAQ,IAAID,SAAS,WAAWF,OAAOE,OAAO,GAC5CC,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeH;AAAK;AAAAI", - "names": ["styles", "Badge", "variant", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/badge/Badge.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "367079259cb8d7241e8c81d1a533738521f4645a" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 143 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 26, - "column": 23 - }, - "end": { - "line": 26, - "column": 56 - } - }, - "9": { - "start": { - "line": 27, - "column": 22 - }, - "end": { - "line": 27, - "column": 60 - } - }, - "10": { - "start": { - "line": 28, - "column": 2 - }, - "end": { - "line": 39, - "column": 11 - } - }, - "11": { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 41, - "column": 12 - } - }, - "12": { - "start": { - "line": 43, - "column": 0 - }, - "end": { - "line": 43, - "column": 27 - } - }, - "13": { - "start": { - "line": 44, - "column": 0 - }, - "end": { - "line": 60, - "column": 1 - } - }, - "14": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 45, - "column": 39 - } - }, - "15": { - "start": { - "line": 46, - "column": 2 - }, - "end": { - "line": 46, - "column": 39 - } - }, - "16": { - "start": { - "line": 47, - "column": 2 - }, - "end": { - "line": 59, - "column": 5 - } - }, - "17": { - "start": { - "line": 51, - "column": 4 - }, - "end": { - "line": 51, - "column": 169 - } - }, - "18": { - "start": { - "line": 52, - "column": 4 - }, - "end": { - "line": 58, - "column": 7 - } - }, - "19": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 15 - } - }, - "20": { - "start": { - "line": 54, - "column": 8 - }, - "end": { - "line": 54, - "column": 15 - } - }, - "21": { - "start": { - "line": 55, - "column": 32 - }, - "end": { - "line": 55, - "column": 115 - } - }, - "22": { - "start": { - "line": 56, - "column": 6 - }, - "end": { - "line": 57, - "column": 54 - } - }, - "23": { - "start": { - "line": 57, - "column": 8 - }, - "end": { - "line": 57, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Button", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 22 - } - }, - "loc": { - "start": { - "line": 25, - "column": 3 - }, - "end": { - "line": 40, - "column": 1 - } - }, - "line": 25 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 50, - "column": 9 - }, - "end": { - "line": 50, - "column": 10 - } - }, - "loc": { - "start": { - "line": 50, - "column": 29 - }, - "end": { - "line": 59, - "column": 3 - } - }, - "line": 50 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 52, - "column": 27 - }, - "end": { - "line": 52, - "column": 28 - } - }, - "loc": { - "start": { - "line": 52, - "column": 44 - }, - "end": { - "line": 58, - "column": 5 - } - }, - "line": 52 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 21 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 19, - "column": 12 - }, - "end": { - "line": 19, - "column": 21 - } - } - ], - "line": 19 - }, - "3": { - "loc": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 20, - "column": 18 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 20, - "column": 13 - }, - "end": { - "line": 20, - "column": 18 - } - } - ], - "line": 20 - }, - "4": { - "loc": { - "start": { - "line": 26, - "column": 23 - }, - "end": { - "line": 26, - "column": 56 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 26, - "column": 37 - }, - "end": { - "line": 26, - "column": 51 - } - }, - { - "start": { - "line": 26, - "column": 54 - }, - "end": { - "line": 26, - "column": 56 - } - } - ], - "line": 26 - }, - "5": { - "loc": { - "start": { - "line": 27, - "column": 22 - }, - "end": { - "line": 27, - "column": 60 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 27, - "column": 42 - }, - "end": { - "line": 27, - "column": 55 - } - }, - { - "start": { - "line": 27, - "column": 58 - }, - "end": { - "line": 27, - "column": 60 - } - } - ], - "line": 27 - }, - "6": { - "loc": { - "start": { - "line": 28, - "column": 107 - }, - "end": { - "line": 28, - "column": 134 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 28, - "column": 118 - }, - "end": { - "line": 28, - "column": 124 - } - }, - { - "start": { - "line": 28, - "column": 127 - }, - "end": { - "line": 28, - "column": 134 - } - } - ], - "line": 28 - }, - "7": { - "loc": { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 33, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 29, - "column": 4 - }, - "end": { - "line": 29, - "column": 8 - } - }, - { - "start": { - "line": 29, - "column": 28 - }, - "end": { - "line": 33, - "column": 12 - } - } - ], - "line": 29 - }, - "8": { - "loc": { - "start": { - "line": 44, - "column": 0 - }, - "end": { - "line": 60, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 0 - }, - "end": { - "line": 60, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - }, - "9": { - "loc": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 53 - }, - "10": { - "loc": { - "start": { - "line": 56, - "column": 6 - }, - "end": { - "line": 57, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 56, - "column": 6 - }, - "end": { - "line": 57, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 56 - } - }, - "s": { - "0": 38, - "1": 38, - "2": 0, - "3": 38, - "4": 38, - "5": 38, - "6": 38, - "7": 38, - "8": 76, - "9": 76, - "10": 76, - "11": 38, - "12": 38, - "13": 38, - "14": 38, - "15": 38, - "16": 38, - "17": 38, - "18": 38, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 38, - "1": 76, - "2": 38, - "3": 0 - }, - "b": { - "0": [38, 0], - "1": [0, 38], - "2": [56], - "3": [66], - "4": [4, 72], - "5": [76, 0], - "6": [10, 66], - "7": [76, 10], - "8": [38, 0], - "9": [0, 0], - "10": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkCe;AAlCf,2BAAqBA;AAAwB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC7C,OAAOC,YAAY;AACnB,SAASC,UAAUC,gBAAgB;AAc5B,gBAASD,OAAO;AAAA,EACrBE,UAAU;AAAA,EACVC,WAAW;AAAA,EACXC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AACW,GAAG;AACd,QAAMC,eAAeF,cAAcP,OAAOU,UAAU;AACpD,QAAMC,cAAcR,WAAW,SAASH,OAAOY,SAAS;AAExD,SACE,uBAAC,YACC,WAAY,GAAEH,gBAAgBE,eAC9B,SACA,SAASP,WAAWS,SAAYR,SAChC,UACA,iBAAeD,UACdE;AAAAA,YAAQ,uBAAC,UAAK,WAAY,GAAEN,OAAOM,QAAQA,QAAQ,MAAK,OAAM,cAAYA,QAAlE;AAAA;AAAA;AAAA;AAAA,WAAwE;AAAA,IAChFE;AAAAA,OAPH;AAAA;AAAA;AAAA;AAAA,SAQA;AAEJ;AAACM,KAtBeb;AAAM;AAAAc", - "names": [ - "ReactNode", - "styles", - "Button", - "ButtonBS", - "variant", - "disabled", - "onClick", - "icon", - "withSpacing", - "children", - "spacingClass", - "spacing", - "borderClass", - "border", - "undefined", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button/Button.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "05976989c145d92fda83f45b43f9bcf1a13c9a96" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/icon.enum.ts": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/icon.enum.ts", - "statementMap": { - "0": { - "start": { - "line": 1, - "column": 34 - }, - "end": { - "line": 18, - "column": 14 - } - }, - "1": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 32 - } - }, - "2": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 32 - } - }, - "3": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 4, - "column": 30 - } - }, - "4": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 42 - } - }, - "5": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 6, - "column": 36 - } - }, - "6": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 38 - } - }, - "7": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 30 - } - }, - "8": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 36 - } - }, - "9": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 32 - } - }, - "10": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 11, - "column": 36 - } - }, - "11": { - "start": { - "line": 12, - "column": 2 - }, - "end": { - "line": 12, - "column": 32 - } - }, - "12": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 36 - } - }, - "13": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 36 - } - }, - "14": { - "start": { - "line": 15, - "column": 2 - }, - "end": { - "line": 15, - "column": 34 - } - }, - "15": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 16, - "column": 32 - } - }, - "16": { - "start": { - "line": 17, - "column": 2 - }, - "end": { - "line": 17, - "column": 15 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 1, - "column": 35 - }, - "end": { - "line": 1, - "column": 36 - } - }, - "loc": { - "start": { - "line": 1, - "column": 46 - }, - "end": { - "line": 18, - "column": 1 - } - }, - "line": 1 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 18, - "column": 3 - }, - "end": { - "line": 18, - "column": 13 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 18, - "column": 3 - }, - "end": { - "line": 18, - "column": 7 - } - }, - { - "start": { - "line": 18, - "column": 11 - }, - "end": { - "line": 18, - "column": 13 - } - } - ], - "line": 18 - } - }, - "s": { - "0": 12, - "1": 12, - "2": 12, - "3": 12, - "4": 12, - "5": 12, - "6": 12, - "7": 12, - "8": 12, - "9": 12, - "10": 12, - "11": 12, - "12": 12, - "13": 12, - "14": 12, - "15": 12, - "16": 12 - }, - "f": { - "0": 12 - }, - "b": { - "0": [12, 12] - }, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/icon.enum.ts" - ], - "mappings": "AAAO,WAAK,OAAL,kBAAKA,UAAL;AACL,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,gBAAa;AACb,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,cAAW;AACX,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,YAAS;AACT,EAAAA,MAAA,WAAQ;AAfE,SAAAA;AAAA,GAAA;", - "names": ["Icon"] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "d4471754a5d3cc10c87098bb7c6092445337699d" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 154 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 17 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 32 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 180 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ButtonGroup", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 27 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 20, - "1": 20, - "2": 0, - "3": 20, - "4": 20, - "5": 20, - "6": 20, - "7": 20, - "8": 24, - "9": 20, - "10": 20, - "11": 20, - "12": 20, - "13": 20, - "14": 20, - "15": 20, - "16": 20, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 20, - "1": 24, - "2": 20, - "3": 0 - }, - "b": { - "0": [20, 0], - "1": [0, 20], - "2": [20, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,eAAeC,qBAAqB;AAMtC,gBAASD,YAAY;AAAA,EAAEE;AAAAA,EAAUC;AAA8C,GAAG;AACvF,SAAO,uBAAC,iBAAc,UAAqBA,YAApC;AAAA;AAAA;AAAA;AAAA,SAA6C;AACtD;AAACC,KAFeJ;AAAW;AAAAK", - "names": ["ButtonGroup", "ButtonGroupBS", "vertical", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonGroup.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "0048e54afc5bc42edc2e8608ce83ade6d6b34de1" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 160 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 28, - "column": 23 - }, - "end": { - "line": 28, - "column": 56 - } - }, - "9": { - "start": { - "line": 29, - "column": 2 - }, - "end": { - "line": 44, - "column": 11 - } - }, - "10": { - "start": { - "line": 46, - "column": 0 - }, - "end": { - "line": 46, - "column": 20 - } - }, - "11": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 35 - } - }, - "12": { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 65, - "column": 1 - } - }, - "13": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 50, - "column": 39 - } - }, - "14": { - "start": { - "line": 51, - "column": 2 - }, - "end": { - "line": 51, - "column": 39 - } - }, - "15": { - "start": { - "line": 52, - "column": 2 - }, - "end": { - "line": 64, - "column": 5 - } - }, - "16": { - "start": { - "line": 56, - "column": 4 - }, - "end": { - "line": 56, - "column": 186 - } - }, - "17": { - "start": { - "line": 57, - "column": 4 - }, - "end": { - "line": 63, - "column": 7 - } - }, - "18": { - "start": { - "line": 58, - "column": 6 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "19": { - "start": { - "line": 59, - "column": 8 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "20": { - "start": { - "line": 60, - "column": 32 - }, - "end": { - "line": 60, - "column": 115 - } - }, - "21": { - "start": { - "line": 61, - "column": 6 - }, - "end": { - "line": 62, - "column": 54 - } - }, - "22": { - "start": { - "line": 62, - "column": 8 - }, - "end": { - "line": 62, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "DropdownButton", - "decl": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 30 - } - }, - "loc": { - "start": { - "line": 27, - "column": 3 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "line": 27 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 55, - "column": 9 - }, - "end": { - "line": 55, - "column": 10 - } - }, - "loc": { - "start": { - "line": 55, - "column": 29 - }, - "end": { - "line": 64, - "column": 3 - } - }, - "line": 55 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 57, - "column": 27 - }, - "end": { - "line": 57, - "column": 28 - } - }, - "loc": { - "start": { - "line": 57, - "column": 44 - }, - "end": { - "line": 63, - "column": 5 - } - }, - "line": 57 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 22, - "column": 21 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 22, - "column": 12 - }, - "end": { - "line": 22, - "column": 21 - } - } - ], - "line": 22 - }, - "3": { - "loc": { - "start": { - "line": 28, - "column": 23 - }, - "end": { - "line": 28, - "column": 56 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 28, - "column": 37 - }, - "end": { - "line": 28, - "column": 51 - } - }, - { - "start": { - "line": 28, - "column": 54 - }, - "end": { - "line": 28, - "column": 56 - } - } - ], - "line": 28 - }, - "4": { - "loc": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 34, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 8 - } - }, - { - "start": { - "line": 30, - "column": 28 - }, - "end": { - "line": 34, - "column": 12 - } - } - ], - "line": 30 - }, - "5": { - "loc": { - "start": { - "line": 40, - "column": 25 - }, - "end": { - "line": 40, - "column": 61 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 40, - "column": 41 - }, - "end": { - "line": 40, - "column": 52 - } - }, - { - "start": { - "line": 40, - "column": 55 - }, - "end": { - "line": 40, - "column": 61 - } - } - ], - "line": 40 - }, - "6": { - "loc": { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 65, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 65, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 49 - }, - "7": { - "loc": { - "start": { - "line": 58, - "column": 6 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 58, - "column": 6 - }, - "end": { - "line": 59, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 58 - }, - "8": { - "loc": { - "start": { - "line": 61, - "column": 6 - }, - "end": { - "line": 62, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 61, - "column": 6 - }, - "end": { - "line": 62, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 61 - } - }, - "s": { - "0": 12, - "1": 12, - "2": 0, - "3": 12, - "4": 12, - "5": 12, - "6": 12, - "7": 12, - "8": 40, - "9": 40, - "10": 12, - "11": 12, - "12": 12, - "13": 12, - "14": 12, - "15": 12, - "16": 12, - "17": 12, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 12, - "1": 40, - "2": 12, - "3": 0 - }, - "b": { - "0": [12, 0], - "1": [0, 12], - "2": [10], - "3": [4, 36], - "4": [40, 8], - "5": [6, 34], - "6": [12, 0], - "7": [0, 0], - "8": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkCQ,mBACW,cADX;AAlCR,2BAA2BA;AAAgB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAEpE,OAAOC,YAAY;AAEnB,SAASC,mBAAmB;AAcrB,gBAASC,eAAe;AAAA,EAC7BC;AAAAA,EACAC;AAAAA,EACAC,UAAU;AAAA,EACVC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AACmB,GAAG;AACtB,QAAMC,eAAeH,cAAcP,OAAOW,UAAU;AAEpD,SACE,uBAAC,oBACC,WAAY,GAAED,gBAAgBV,OAAOY,UACrC,IACA,OACE,mCACGN;AAAAA,YAAQ,uBAAC,UAAK,WAAY,GAAEN,OAAOM,QAAQA,QAAQ,MAAK,OAAM,cAAYA,QAAlE;AAAA;AAAA;AAAA;AAAA,WAAwE;AAAA,IAChFF;AAAAA,OAFH;AAAA;AAAA;AAAA;AAAA,SAGA,GAEF,SACA,IAAII,gBAAgBP,cAAcY,QACjCJ,YAXH;AAAA;AAAA;AAAA;AAAA,SAYA;AAEJ;AAACK,KA1BeZ;AAAc;AAAAa", - "names": [ - "DropdownButtonBS", - "styles", - "ButtonGroup", - "DropdownButton", - "id", - "title", - "variant", - "icon", - "withSpacing", - "asButtonGroup", - "children", - "spacingClass", - "spacing", - "border", - "undefined", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/DropdownButton.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "cdf04968525e1f00eebb67bda9fe1cfa84aef0cb" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 138 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 9 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 24 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 164 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Col", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 19 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 294, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 294, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAqBS;AArBT,2BAAqB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAoBvC,gBAASA,IAAI;AAAA,EAAEC;AAAAA,EAAU,GAAGC;AAAgB,GAAG;AACpD,SAAO,uBAAC,SAAM,GAAIA,OAAQD,YAAnB;AAAA;AAAA;AAAA;AAAA,SAA4B;AACrC;AAACE,KAFeH;AAAG;AAAAI", - "names": ["Col", "children", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Col.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "6428b2efc59c82f295de02698b3da763e2acc8c8" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 176 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 29, - "column": 11 - } - }, - "9": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 23 - } - }, - "10": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 38 - } - }, - "11": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "12": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 39 - } - }, - "13": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "14": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "15": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 41, - "column": 202 - } - }, - "16": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 48, - "column": 7 - } - }, - "17": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "18": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "19": { - "start": { - "line": 45, - "column": 32 - }, - "end": { - "line": 45, - "column": 115 - } - }, - "20": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "21": { - "start": { - "line": 47, - "column": 8 - }, - "end": { - "line": 47, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormElementLayout", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 33 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 30, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 10 - } - }, - "loc": { - "start": { - "line": 40, - "column": 29 - }, - "end": { - "line": 49, - "column": 3 - } - }, - "line": 40 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 42, - "column": 27 - }, - "end": { - "line": 42, - "column": 28 - } - }, - "loc": { - "start": { - "line": 42, - "column": 44 - }, - "end": { - "line": 48, - "column": 5 - } - }, - "line": 42 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 29, - "column": 10 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 21, - "column": 53 - }, - "end": { - "line": 25, - "column": 10 - } - }, - { - "start": { - "line": 25, - "column": 29 - }, - "end": { - "line": 29, - "column": 10 - } - } - ], - "line": 21 - }, - "3": { - "loc": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 34 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - }, - "5": { - "loc": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 46 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 138, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 138, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [0, 138], - "3": [66, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAUqC;AAVrC,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,WAAW;AAKb,gBAASC,kBAAkB;AAAA,EAChCC;AAAAA,EACAC;AAC8C,GAAG;AACjD,SAAOD,4BAA4B,mCAAGC,YAAH;AAAA;AAAA;AAAA;AAAA,SAAY,IAAM,uBAAC,OAAI,IAAI,GAAIA,YAAb;AAAA;AAAA;AAAA;AAAA,SAAsB;AAC7E;AAACC,KALeH;AAAiB;AAAAI", - "names": [ - "Col", - "FormElementLayout", - "withinMultipleFieldsGroup", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormElementLayout.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "61829908da7c8e233c1b0364db5af901656a2560" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 168 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 26 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "9": { - "start": { - "line": 28, - "column": 4 - }, - "end": { - "line": 43, - "column": 13 - } - }, - "10": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 57, - "column": 11 - } - }, - "11": { - "start": { - "line": 59, - "column": 0 - }, - "end": { - "line": 59, - "column": 15 - } - }, - "12": { - "start": { - "line": 61, - "column": 0 - }, - "end": { - "line": 61, - "column": 30 - } - }, - "13": { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 78, - "column": 1 - } - }, - "14": { - "start": { - "line": 63, - "column": 2 - }, - "end": { - "line": 63, - "column": 39 - } - }, - "15": { - "start": { - "line": 64, - "column": 2 - }, - "end": { - "line": 64, - "column": 39 - } - }, - "16": { - "start": { - "line": 65, - "column": 2 - }, - "end": { - "line": 77, - "column": 5 - } - }, - "17": { - "start": { - "line": 69, - "column": 4 - }, - "end": { - "line": 69, - "column": 194 - } - }, - "18": { - "start": { - "line": 70, - "column": 4 - }, - "end": { - "line": 76, - "column": 7 - } - }, - "19": { - "start": { - "line": 71, - "column": 6 - }, - "end": { - "line": 72, - "column": 15 - } - }, - "20": { - "start": { - "line": 72, - "column": 8 - }, - "end": { - "line": 72, - "column": 15 - } - }, - "21": { - "start": { - "line": 73, - "column": 32 - }, - "end": { - "line": 73, - "column": 115 - } - }, - "22": { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 75, - "column": 54 - } - }, - "23": { - "start": { - "line": 75, - "column": 8 - }, - "end": { - "line": 75, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormInput", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 25 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 58, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 25, - "column": 26 - }, - "end": { - "line": 25, - "column": 27 - } - }, - "loc": { - "start": { - "line": 27, - "column": 8 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 27 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 68, - "column": 9 - }, - "end": { - "line": 68, - "column": 10 - } - }, - "loc": { - "start": { - "line": 68, - "column": 29 - }, - "end": { - "line": 77, - "column": 3 - } - }, - "line": 68 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 70, - "column": 27 - }, - "end": { - "line": 70, - "column": 28 - } - }, - "loc": { - "start": { - "line": 70, - "column": 44 - }, - "end": { - "line": 76, - "column": 5 - } - }, - "line": 70 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 15 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 19, - "column": 9 - }, - "end": { - "line": 19, - "column": 15 - } - } - ], - "line": 19 - }, - "3": { - "loc": { - "start": { - "line": 28, - "column": 11 - }, - "end": { - "line": 43, - "column": 12 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 28, - "column": 36 - }, - "end": { - "line": 39, - "column": 12 - } - }, - { - "start": { - "line": 39, - "column": 31 - }, - "end": { - "line": 43, - "column": 12 - } - } - ], - "line": 28 - }, - "4": { - "loc": { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 78, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 78, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 62 - }, - "5": { - "loc": { - "start": { - "line": 71, - "column": 6 - }, - "end": { - "line": 72, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 71, - "column": 6 - }, - "end": { - "line": 72, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 71 - }, - "6": { - "loc": { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 75, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 74, - "column": 6 - }, - "end": { - "line": 75, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 74 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 92, - "9": 92, - "10": 92, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 66, - "18": 66, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 66, - "1": 92, - "2": 92, - "3": 66, - "4": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [24], - "3": [22, 70], - "4": [66, 0], - "5": [0, 0], - "6": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAwBQ,SAIF,UAJE;AAxBR,2BAAyBA;AAAkB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC5D,SAASC,yBAAyB;AAa3B,gBAASC,UAAU;AAAA,EACxBC,OAAO;AAAA,EACPC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACA,GAAGC;AACW,GAAG;AACjB,QAAMC,kBAAkBA,CAAC;AAAA,IAAEC;AAAAA,EAA4B,MAAM;AAC3D,WAAOJ,SACL,uBAAC,cAAW,WAAU,QACpB;AAAA,6BAAC,WAAW,MAAX,EAAiBA,oBAAlB;AAAA;AAAA;AAAA;AAAA,aAAyB;AAAA,MACxBI;AAAAA,SAFH;AAAA;AAAA;AAAA;AAAA,WAGA,IAEA,mCAAGA,YAAH;AAAA;AAAA;AAAA;AAAA,WAAY;AAAA,EAEhB;AAEA,SACE,uBAAC,qBAAkB,2BACjB,iCAAC,mBACC,iCAAC,OAAO,SAAP,EAAe,MAAY,UAAoB,WAAWL,UAAU,GAAIG,SAAzE;AAAA;AAAA;AAAA;AAAA,SAA+E,KADjF;AAAA;AAAA;AAAA;AAAA,SAEA,KAHF;AAAA;AAAA;AAAA;AAAA,SAIA;AAEJ;AAACG,KAzBeR;AAAS;AAAAS", - "names": [ - "InputGroup", - "FormElementLayout", - "FormInput", - "type", - "readOnly", - "prefix", - "withinMultipleFieldsGroup", - "props", - "FormInputPrefix", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormInput.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "6f2c9cd948b7bf29fa049a96133a83381a0b067e" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 176 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 17, - "column": 35 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "9": { - "start": { - "line": 18, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "10": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 25 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 40 - } - }, - "12": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "15": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 202 - } - }, - "17": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "18": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "20": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "21": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "22": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "(anonymous_1)", - "decl": { - "start": { - "line": 17, - "column": 35 - }, - "end": { - "line": 17, - "column": 36 - } - }, - "loc": { - "start": { - "line": 17, - "column": 41 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 17 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 66, - "9": 20, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 66, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 66, - "1": 20, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAII;AAJJ,OAAOA,oBAAY;AAAA;AAAmC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAE/C,aAAMC,sBAAsBA,MAAM;AACvC,SACE,uBAAC,UAAK,MAAK,OAAM,cAAW,yBAAwB,WAAWD,OAAOE,UACnE;AAAA;AAAA,IAAG;AAAA,OADN;AAAA;AAAA;AAAA;AAAA,SAGA;AAEJ;AAACC,KAPYF;AAAmB;AAAAG", - "names": ["styles", "RequiredInputSymbol", "asterisk", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/required-input-symbol/RequiredInputSymbol.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "a3b78923ace45c139825016356e286d785fe6c5a" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 150 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 23, - "column": 11 - } - }, - "9": { - "start": { - "line": 25, - "column": 0 - }, - "end": { - "line": 25, - "column": 18 - } - }, - "10": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 33 - } - }, - "11": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 44, - "column": 1 - } - }, - "12": { - "start": { - "line": 29, - "column": 2 - }, - "end": { - "line": 29, - "column": 39 - } - }, - "13": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "14": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "15": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 176 - } - }, - "16": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 42, - "column": 7 - } - }, - "17": { - "start": { - "line": 37, - "column": 6 - }, - "end": { - "line": 38, - "column": 15 - } - }, - "18": { - "start": { - "line": 38, - "column": 8 - }, - "end": { - "line": 38, - "column": 15 - } - }, - "19": { - "start": { - "line": 39, - "column": 32 - }, - "end": { - "line": 39, - "column": 115 - } - }, - "20": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 54 - } - }, - "21": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "QuestionIcon", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 28 - } - }, - "loc": { - "start": { - "line": 18, - "column": 31 - }, - "end": { - "line": 24, - "column": 1 - } - }, - "line": 18 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 34, - "column": 9 - }, - "end": { - "line": 34, - "column": 10 - } - }, - "loc": { - "start": { - "line": 34, - "column": 29 - }, - "end": { - "line": 43, - "column": 3 - } - }, - "line": 34 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 36, - "column": 27 - }, - "end": { - "line": 36, - "column": 28 - } - }, - "loc": { - "start": { - "line": 36, - "column": 44 - }, - "end": { - "line": 42, - "column": 5 - } - }, - "line": 36 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 44, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 44, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 28 - }, - "3": { - "loc": { - "start": { - "line": 37, - "column": 6 - }, - "end": { - "line": 38, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 37, - "column": 6 - }, - "end": { - "line": 38, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 37 - }, - "4": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - } - }, - "s": { - "0": 72, - "1": 72, - "2": 0, - "3": 72, - "4": 72, - "5": 72, - "6": 72, - "7": 72, - "8": 14, - "9": 72, - "10": 72, - "11": 72, - "12": 72, - "13": 72, - "14": 72, - "15": 72, - "16": 72, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 72, - "1": 14, - "2": 72, - "3": 0 - }, - "b": { - "0": [72, 0], - "1": [0, 72], - "2": [72, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAGS;AAHT,OAAOA,oBAAY;AAAA,IAA4B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC/C,SAASC,0BAA0B;AAC5B,gBAASC,eAAe;AAC7B,SAAO,uBAAC,sBAAmB,WAAWF,OAAO,kBAAkB,KAAxD;AAAA;AAAA;AAAA;AAAA,SAA0D;AACnE;AAACG,KAFeD;AAAY;AAAAE", - "names": ["styles", "QuestionCircleFill", "QuestionIcon", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/QuestionIcon.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "8af8a402ae35e0d0fda79fe0a025079e2e1df2a5" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 168 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 30, - "column": 11 - } - }, - "9": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 20 - } - }, - "10": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 35 - } - }, - "11": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "12": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "13": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "14": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "15": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 194 - } - }, - "16": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 49, - "column": 7 - } - }, - "17": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "18": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "19": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 115 - } - }, - "20": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "21": { - "start": { - "line": 48, - "column": 8 - }, - "end": { - "line": 48, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "OverlayTrigger", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 30 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 31, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 41, - "column": 9 - }, - "end": { - "line": 41, - "column": 10 - } - }, - "loc": { - "start": { - "line": 41, - "column": 29 - }, - "end": { - "line": 50, - "column": 3 - } - }, - "line": 41 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 43, - "column": 27 - }, - "end": { - "line": 43, - "column": 28 - } - }, - "loc": { - "start": { - "line": 43, - "column": 44 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "line": 43 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 35 - }, - "3": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - }, - "4": { - "loc": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 47 - } - }, - "s": { - "0": 76, - "1": 76, - "2": 0, - "3": 76, - "4": 76, - "5": 76, - "6": 76, - "7": 76, - "8": 38, - "9": 76, - "10": 76, - "11": 76, - "12": 76, - "13": 76, - "14": 76, - "15": 76, - "16": 76, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 76, - "1": 38, - "2": 76, - "3": 0 - }, - "b": { - "0": [76, 0], - "1": [0, 76], - "2": [76, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAce;AAdf,2BAA2BA;AAAkBC;AAAWC,IAAS;AAAQ,gBAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASnF,gBAASC,eAAe;AAAA,EAAEC;AAAAA,EAAWC;AAAAA,EAASC;AAA8B,GAAG;AACpF,SACE,uBAAC,oBAEC,WACA,SAAS,uBAAC,aAAWD,qBAAZ;AAAA;AAAA;AAAA;AAAA,SAAoB,GAC5BC,YAHIF,WADP;AAAA;AAAA;AAAA;AAAA,SAKA;AAEJ;AAACG,KATeJ;AAAc;AAAAK", - "names": [ - "OverlayTriggerBS", - "Tooltip", - "TooltipBS", - "OverlayTrigger", - "placement", - "message", - "children", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/overlay-trigger/OverlayTrigger.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "61a3cc28eda1734516907ddf6ebb4a34890ccb4b" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 145 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 35, - "column": 11 - } - }, - "9": { - "start": { - "line": 37, - "column": 0 - }, - "end": { - "line": 37, - "column": 13 - } - }, - "10": { - "start": { - "line": 39, - "column": 0 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "11": { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 56, - "column": 1 - } - }, - "12": { - "start": { - "line": 41, - "column": 2 - }, - "end": { - "line": 41, - "column": 39 - } - }, - "13": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 42, - "column": 39 - } - }, - "14": { - "start": { - "line": 43, - "column": 2 - }, - "end": { - "line": 55, - "column": 5 - } - }, - "15": { - "start": { - "line": 47, - "column": 4 - }, - "end": { - "line": 47, - "column": 171 - } - }, - "16": { - "start": { - "line": 48, - "column": 4 - }, - "end": { - "line": 54, - "column": 7 - } - }, - "17": { - "start": { - "line": 49, - "column": 6 - }, - "end": { - "line": 50, - "column": 15 - } - }, - "18": { - "start": { - "line": 50, - "column": 8 - }, - "end": { - "line": 50, - "column": 15 - } - }, - "19": { - "start": { - "line": 51, - "column": 32 - }, - "end": { - "line": 51, - "column": 115 - } - }, - "20": { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 53, - "column": 54 - } - }, - "21": { - "start": { - "line": 53, - "column": 8 - }, - "end": { - "line": 53, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Tooltip", - "decl": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 23 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 36, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 46, - "column": 9 - }, - "end": { - "line": 46, - "column": 10 - } - }, - "loc": { - "start": { - "line": 46, - "column": 29 - }, - "end": { - "line": 55, - "column": 3 - } - }, - "line": 46 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 48, - "column": 27 - }, - "end": { - "line": 48, - "column": 28 - } - }, - "loc": { - "start": { - "line": 48, - "column": 44 - }, - "end": { - "line": 54, - "column": 5 - } - }, - "line": 48 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 56, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 56, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "3": { - "loc": { - "start": { - "line": 49, - "column": 6 - }, - "end": { - "line": 50, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 49, - "column": 6 - }, - "end": { - "line": 50, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 49 - }, - "4": { - "loc": { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 53, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 52, - "column": 6 - }, - "end": { - "line": 53, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 52 - } - }, - "s": { - "0": 72, - "1": 72, - "2": 0, - "3": 72, - "4": 72, - "5": 72, - "6": 72, - "7": 72, - "8": 14, - "9": 72, - "10": 72, - "11": 72, - "12": 72, - "13": 72, - "14": 72, - "15": 72, - "16": 72, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 72, - "1": 14, - "2": 72, - "3": 0 - }, - "b": { - "0": [72, 0], - "1": [0, 72], - "2": [72, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcQ;AAdR,2BAA0B;AAAA,IAAuB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjD,SAASA,oBAAoB;AAC7B,OAAOC,YAAY;AACnB,SAASC,sBAAsB;AAOxB,gBAASC,QAAQ;AAAA,EAAEC;AAAAA,EAAWC;AAAsB,GAAG;AAC5D,SACE,uBAAC,kBAAe,WAAsB,SACpC,iCAAC,UAAK,MAAK,OAAM,cAAW,gBAAe,WAAWJ,OAAOK,SAC3D,iCAAC,kBAAD;AAAA;AAAA;AAAA;AAAA,SAAc,KADhB;AAAA;AAAA;AAAA;AAAA,SAEA,KAHF;AAAA;AAAA;AAAA;AAAA,SAIA;AAEJ;AAACC,KAReJ;AAAO;AAAAK", - "names": [ - "QuestionIcon", - "styles", - "OverlayTrigger", - "Tooltip", - "placement", - "message", - "tooltip", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tooltip/Tooltip.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "bba4bf0ce06dadd6c4fc7b691b0f5f77be4fe25d" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 168 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 28, - "column": 3 - } - }, - "9": { - "start": { - "line": 29, - "column": 2 - }, - "end": { - "line": 46, - "column": 11 - } - }, - "10": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 15 - } - }, - "11": { - "start": { - "line": 50, - "column": 0 - }, - "end": { - "line": 50, - "column": 30 - } - }, - "12": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "13": { - "start": { - "line": 52, - "column": 2 - }, - "end": { - "line": 52, - "column": 39 - } - }, - "14": { - "start": { - "line": 53, - "column": 2 - }, - "end": { - "line": 53, - "column": 39 - } - }, - "15": { - "start": { - "line": 54, - "column": 2 - }, - "end": { - "line": 66, - "column": 5 - } - }, - "16": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 194 - } - }, - "17": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 65, - "column": 7 - } - }, - "18": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "19": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "20": { - "start": { - "line": 62, - "column": 32 - }, - "end": { - "line": 62, - "column": 115 - } - }, - "21": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "22": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormLabel", - "decl": { - "start": { - "line": 19, - "column": 16 - }, - "end": { - "line": 19, - "column": 25 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 57, - "column": 9 - }, - "end": { - "line": 57, - "column": 10 - } - }, - "loc": { - "start": { - "line": 57, - "column": 29 - }, - "end": { - "line": 66, - "column": 3 - } - }, - "line": 57 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 59, - "column": 27 - }, - "end": { - "line": 59, - "column": 28 - } - }, - "loc": { - "start": { - "line": 59, - "column": 44 - }, - "end": { - "line": 65, - "column": 5 - } - }, - "line": 59 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 25, - "column": 22 - }, - "end": { - "line": 28, - "column": 3 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 25, - "column": 50 - }, - "end": { - "line": 25, - "column": 52 - } - }, - { - "start": { - "line": 25, - "column": 55 - }, - "end": { - "line": 28, - "column": 3 - } - } - ], - "line": 25 - }, - "3": { - "loc": { - "start": { - "line": 31, - "column": 4 - }, - "end": { - "line": 35, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 31, - "column": 4 - }, - "end": { - "line": 31, - "column": 12 - } - }, - { - "start": { - "line": 31, - "column": 32 - }, - "end": { - "line": 35, - "column": 12 - } - } - ], - "line": 31 - }, - "4": { - "loc": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 41, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 11 - } - }, - { - "start": { - "line": 37, - "column": 31 - }, - "end": { - "line": 41, - "column": 12 - } - } - ], - "line": 37 - }, - "5": { - "loc": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 51 - }, - "6": { - "loc": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 60 - }, - "7": { - "loc": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 63 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 138, - "9": 138, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 66, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 66, - "1": 138, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [0, 138], - "3": [138, 10], - "4": [138, 4], - "5": [66, 0], - "6": [0, 0], - "7": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAsBmB;AAtBnB,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,QAAQC,cAAc;AAC/B,SAASC,2BAA2B;AACpC,SAASC,eAAe;AAQjB,gBAASC,UAAU;AAAA,EACxBC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AACiC,GAAG;AACpC,QAAMC,cAAcF,4BAA4B,CAAC,IAAI;AAAA,IAAEG,QAAQ;AAAA,IAAMC,IAAI;AAAA,EAAE;AAE3E,SACE,uBAAC,OAAO,OAAP,EAAa,GAAIF,aACfD;AAAAA;AAAAA,IACAH,YAAY,uBAAC,yBAAD;AAAA;AAAA;AAAA;AAAA,WAAoB;AAAA,IAAK;AAAA,IACrCC,WAAW,uBAAC,WAAQ,WAAU,SAAQ,WAA3B;AAAA;AAAA;AAAA;AAAA,WAA6C;AAAA,OAH3D;AAAA;AAAA;AAAA;AAAA,SAIA;AAEJ;AAACM,KAfeR;AAAS;AAAAS", - "names": [ - "Form", - "FormBS", - "RequiredInputSymbol", - "Tooltip", - "FormLabel", - "required", - "message", - "withinMultipleFieldsGroup", - "children", - "layoutProps", - "column", - "sm", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormLabel.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "423943883f7e09b2554d6382cf4d760fecc72ebb" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 167 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 17 - }, - "end": { - "line": 37, - "column": 3 - } - }, - "9": { - "start": { - "line": 25, - "column": 4 - }, - "end": { - "line": 36, - "column": 13 - } - }, - "10": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 46, - "column": 11 - } - }, - "11": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 14 - } - }, - "12": { - "start": { - "line": 50, - "column": 0 - }, - "end": { - "line": 50, - "column": 29 - } - }, - "13": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "14": { - "start": { - "line": 52, - "column": 2 - }, - "end": { - "line": 52, - "column": 39 - } - }, - "15": { - "start": { - "line": 53, - "column": 2 - }, - "end": { - "line": 53, - "column": 39 - } - }, - "16": { - "start": { - "line": 54, - "column": 2 - }, - "end": { - "line": 66, - "column": 5 - } - }, - "17": { - "start": { - "line": 58, - "column": 4 - }, - "end": { - "line": 58, - "column": 193 - } - }, - "18": { - "start": { - "line": 59, - "column": 4 - }, - "end": { - "line": 65, - "column": 7 - } - }, - "19": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "20": { - "start": { - "line": 61, - "column": 8 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "21": { - "start": { - "line": 62, - "column": 32 - }, - "end": { - "line": 62, - "column": 115 - } - }, - "22": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "23": { - "start": { - "line": 64, - "column": 8 - }, - "end": { - "line": 64, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormText", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 24 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 22, - "column": 17 - }, - "end": { - "line": 22, - "column": 18 - } - }, - "loc": { - "start": { - "line": 24, - "column": 8 - }, - "end": { - "line": 37, - "column": 3 - } - }, - "line": 24 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 57, - "column": 9 - }, - "end": { - "line": 57, - "column": 10 - } - }, - "loc": { - "start": { - "line": 57, - "column": 29 - }, - "end": { - "line": 66, - "column": 3 - } - }, - "line": 57 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 59, - "column": 27 - }, - "end": { - "line": 59, - "column": 28 - } - }, - "loc": { - "start": { - "line": 59, - "column": 44 - }, - "end": { - "line": 65, - "column": 5 - } - }, - "line": 59 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 25, - "column": 11 - }, - "end": { - "line": 36, - "column": 12 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 25, - "column": 55 - }, - "end": { - "line": 29, - "column": 12 - } - }, - { - "start": { - "line": 29, - "column": 31 - }, - "end": { - "line": 36, - "column": 12 - } - } - ], - "line": 25 - }, - "3": { - "loc": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 67, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 51 - }, - "4": { - "loc": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 61, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 60 - }, - "5": { - "loc": { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 63, - "column": 6 - }, - "end": { - "line": 64, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 63 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 10, - "9": 10, - "10": 10, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 66, - "18": 66, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 66, - "1": 10, - "2": 10, - "3": 66, - "4": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [4, 6], - "3": [66, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcM;AAdN,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,QAAQC,cAAc;AAC/B,SAASC,WAAW;AAMb,gBAASC,SAAS;AAAA,EACvBC;AAAAA,EACAC;AACgC,GAAG;AACnC,QAAMC,SAASA,CAAC;AAAA,IAAED;AAAAA,EAA4B,MAAM;AAClD,WAAOD,4BACL,mCAAGC,uBAAH;AAAA;AAAA;AAAA;AAAA,WAAY,IAEZ,uBAAC,OAAI,IAAI;AAAA,MAAEE,QAAQ;AAAA,MAAGC,MAAM;AAAA,IAAE,GAAG,WAAU,QACxCH,uBADH;AAAA;AAAA;AAAA;AAAA,WAEA;AAAA,EAEJ;AAEA,SACE,uBAAC,UACC,iCAAC,OAAO,MAAP,EAAY,OAAK,MAAEA,YAApB;AAAA;AAAA;AAAA;AAAA,SAA6B,KAD/B;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACI,KAnBeN;AAAQ;AAAAO", - "names": [ - "Form", - "FormBS", - "Col", - "FormText", - "withinMultipleFieldsGroup", - "children", - "Layout", - "offset", - "span", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormText.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "82ebdf0f2121783bea93accafa373e15b2b954d6" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 169 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 31, - "column": 11 - } - }, - "9": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 16 - } - }, - "10": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 35, - "column": 31 - } - }, - "11": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "12": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "13": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 38, - "column": 39 - } - }, - "14": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 51, - "column": 5 - } - }, - "15": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 195 - } - }, - "16": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 50, - "column": 7 - } - }, - "17": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "18": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "19": { - "start": { - "line": 47, - "column": 32 - }, - "end": { - "line": 47, - "column": 115 - } - }, - "20": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "21": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormSelect", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 26 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 32, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 42, - "column": 9 - }, - "end": { - "line": 42, - "column": 10 - } - }, - "loc": { - "start": { - "line": 42, - "column": 29 - }, - "end": { - "line": 51, - "column": 3 - } - }, - "line": 42 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 44, - "column": 27 - }, - "end": { - "line": 44, - "column": 28 - } - }, - "loc": { - "start": { - "line": 44, - "column": 44 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "line": 44 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 36 - }, - "3": { - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 45 - }, - "4": { - "loc": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 48 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 28, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 28, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAgBM;AAhBN,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,QAAQC,cAAc;AAC/B,SAASC,yBAAyB;AAO3B,gBAASC,WAAW;AAAA,EACzBC;AAAAA,EACAC;AAAAA,EACA,GAAGC;AAC+B,GAAG;AACrC,SACE,uBAAC,qBAAkB,2BACjB,iCAAC,OAAO,QAAP,EAAc,GAAIA,OAAQD,YAA3B;AAAA;AAAA;AAAA;AAAA,SAAoC,KADtC;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACE,KAVeJ;AAAU;AAAAK", - "names": [ - "Form", - "FormBS", - "FormElementLayout", - "FormSelect", - "withinMultipleFieldsGroup", - "children", - "props", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormSelect.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "4918aa0d0da9e24ba4bb28f3ecc01ab909ec29a7" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 171 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 30, - "column": 11 - } - }, - "9": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 18 - } - }, - "10": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 33 - } - }, - "11": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "12": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "13": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "14": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "15": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 42, - "column": 197 - } - }, - "16": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 49, - "column": 7 - } - }, - "17": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "18": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "19": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 115 - } - }, - "20": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "21": { - "start": { - "line": 48, - "column": 8 - }, - "end": { - "line": 48, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormTextArea", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 28 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 31, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 41, - "column": 9 - }, - "end": { - "line": 41, - "column": 10 - } - }, - "loc": { - "start": { - "line": 41, - "column": 29 - }, - "end": { - "line": 50, - "column": 3 - } - }, - "line": 41 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 43, - "column": 27 - }, - "end": { - "line": 43, - "column": 28 - } - }, - "loc": { - "start": { - "line": 43, - "column": 44 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "line": 43 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 51, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 35 - }, - "3": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - }, - "4": { - "loc": { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 47, - "column": 6 - }, - "end": { - "line": 48, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 47 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 18, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 18, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAYM;AAZN,2BAAuB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAChD,SAASA,yBAAyB;AAQ3B,gBAASC,aAAa;AAAA,EAAEC;AAAAA,EAA2B,GAAGC;AAAyB,GAAG;AACvF,SACE,uBAAC,qBAAkB,2BACjB,iCAAC,OAAO,SAAP,EAAe,IAAG,YAAW,MAAM,GAAG,GAAIA,SAA3C;AAAA;AAAA;AAAA;AAAA,SAAiD,KADnD;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeH;AAAY;AAAAI", - "names": [ - "FormElementLayout", - "FormTextArea", - "withinMultipleFieldsGroup", - "props", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormTextArea.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "7510a66f27be2fe0672ee03ae9e58709d9e46c86" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 138 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 9 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 24 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 164 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Row", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 19 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 182, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 182, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcS;AAdT,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,OAAOC,aAAa;AAYtB,gBAASD,IAAI;AAAA,EAAEE;AAAAA,EAAU,GAAGC;AAAgB,GAAG;AACpD,SAAO,uBAAC,SAAM,GAAIA,OAAQD,YAAnB;AAAA;AAAA;AAAA;AAAA,SAA4B;AACrC;AAACE,KAFeJ;AAAG;AAAAK", - "names": ["Row", "RowBS", "children", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Row.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "0e44cc3c7f6e168ee204b7dff367a60462b3c746" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 171 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 27, - "column": 11 - } - }, - "9": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 18 - } - }, - "10": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 33 - } - }, - "11": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "12": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "13": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 39 - } - }, - "14": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 47, - "column": 5 - } - }, - "15": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 39, - "column": 197 - } - }, - "16": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 46, - "column": 7 - } - }, - "17": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "18": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "19": { - "start": { - "line": 43, - "column": 32 - }, - "end": { - "line": 43, - "column": 115 - } - }, - "20": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "21": { - "start": { - "line": 45, - "column": 8 - }, - "end": { - "line": 45, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormCheckbox", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 28 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 28, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 38, - "column": 9 - }, - "end": { - "line": 38, - "column": 10 - } - }, - "loc": { - "start": { - "line": 38, - "column": 29 - }, - "end": { - "line": 47, - "column": 3 - } - }, - "line": 38 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 40, - "column": 27 - }, - "end": { - "line": 40, - "column": 28 - } - }, - "loc": { - "start": { - "line": 40, - "column": 44 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "line": 40 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 48, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 32 - }, - "3": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - }, - "4": { - "loc": { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 44, - "column": 6 - }, - "end": { - "line": 45, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 44 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 30, - "9": 66, - "10": 66, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 66, - "1": 30, - "2": 66, - "3": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [66, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAUS;AAVT,2BAAuB;AAAQ,IAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASzC,gBAASA,aAAa;AAAA,EAAEC;AAAAA,EAAOC;AAAAA,EAAMC;AAAAA,EAAI,GAAGC;AAAyB,GAAG;AAC7E,SAAO,uBAAC,OAAO,OAAP,EAAa,OAAc,MAAY,MAAK,YAAW,IAAQ,GAAIA,SAApE;AAAA;AAAA;AAAA;AAAA,SAA0E;AACnF;AAACC,KAFeL;AAAY;AAAAM", - "names": ["FormCheckbox", "label", "name", "id", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/form-element/FormCheckbox.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "612c7eb6e36852ef3821cb217ced1aebb59e58bb" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 155 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 34, - "column": 35 - }, - "end": { - "line": 39, - "column": 4 - } - }, - "9": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 38, - "column": 7 - } - }, - "10": { - "start": { - "line": 40, - "column": 2 - }, - "end": { - "line": 44, - "column": 11 - } - }, - "11": { - "start": { - "line": 46, - "column": 0 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "12": { - "start": { - "line": 47, - "column": 0 - }, - "end": { - "line": 47, - "column": 28 - } - }, - "13": { - "start": { - "line": 48, - "column": 0 - }, - "end": { - "line": 48, - "column": 28 - } - }, - "14": { - "start": { - "line": 49, - "column": 0 - }, - "end": { - "line": 49, - "column": 30 - } - }, - "15": { - "start": { - "line": 50, - "column": 0 - }, - "end": { - "line": 50, - "column": 34 - } - }, - "16": { - "start": { - "line": 51, - "column": 0 - }, - "end": { - "line": 51, - "column": 26 - } - }, - "17": { - "start": { - "line": 52, - "column": 0 - }, - "end": { - "line": 52, - "column": 34 - } - }, - "18": { - "start": { - "line": 55, - "column": 0 - }, - "end": { - "line": 55, - "column": 30 - } - }, - "19": { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 72, - "column": 1 - } - }, - "20": { - "start": { - "line": 57, - "column": 2 - }, - "end": { - "line": 57, - "column": 39 - } - }, - "21": { - "start": { - "line": 58, - "column": 2 - }, - "end": { - "line": 58, - "column": 39 - } - }, - "22": { - "start": { - "line": 59, - "column": 2 - }, - "end": { - "line": 71, - "column": 5 - } - }, - "23": { - "start": { - "line": 63, - "column": 4 - }, - "end": { - "line": 63, - "column": 181 - } - }, - "24": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 70, - "column": 7 - } - }, - "25": { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 66, - "column": 15 - } - }, - "26": { - "start": { - "line": 66, - "column": 8 - }, - "end": { - "line": 66, - "column": 15 - } - }, - "27": { - "start": { - "line": 67, - "column": 32 - }, - "end": { - "line": 67, - "column": 115 - } - }, - "28": { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 69, - "column": 54 - } - }, - "29": { - "start": { - "line": 69, - "column": 8 - }, - "end": { - "line": 69, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "FormGroup", - "decl": { - "start": { - "line": 26, - "column": 9 - }, - "end": { - "line": 26, - "column": 18 - } - }, - "loc": { - "start": { - "line": 33, - "column": 3 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "line": 33 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 34, - "column": 64 - }, - "end": { - "line": 34, - "column": 65 - } - }, - "loc": { - "start": { - "line": 34, - "column": 75 - }, - "end": { - "line": 39, - "column": 3 - } - }, - "line": 34 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 62, - "column": 9 - }, - "end": { - "line": 62, - "column": 10 - } - }, - "loc": { - "start": { - "line": 62, - "column": 29 - }, - "end": { - "line": 71, - "column": 3 - } - }, - "line": 62 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 64, - "column": 27 - }, - "end": { - "line": 64, - "column": 28 - } - }, - "loc": { - "start": { - "line": 64, - "column": 44 - }, - "end": { - "line": 70, - "column": 5 - } - }, - "line": 64 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 27, - "column": 10 - } - }, - "type": "default-arg", - "locations": [ - { - "start": { - "line": 27, - "column": 7 - }, - "end": { - "line": 27, - "column": 10 - } - } - ], - "line": 27 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 59 - }, - "end": { - "line": 40, - "column": 112 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 40, - "column": 72 - }, - "end": { - "line": 40, - "column": 100 - } - }, - { - "start": { - "line": 40, - "column": 103 - }, - "end": { - "line": 40, - "column": 112 - } - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 72, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 72, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 56 - }, - "5": { - "loc": { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 66, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 65, - "column": 6 - }, - "end": { - "line": 66, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 65 - }, - "6": { - "loc": { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 69, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 68, - "column": 6 - }, - "end": { - "line": 69, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 68 - } - }, - "s": { - "0": 66, - "1": 66, - "2": 0, - "3": 66, - "4": 66, - "5": 66, - "6": 66, - "7": 66, - "8": 132, - "9": 264, - "10": 132, - "11": 66, - "12": 66, - "13": 66, - "14": 66, - "15": 66, - "16": 66, - "17": 66, - "18": 66, - "19": 66, - "20": 66, - "21": 66, - "22": 66, - "23": 66, - "24": 66, - "25": 0, - "26": 0, - "27": 0, - "28": 0, - "29": 0 - }, - "f": { - "0": 66, - "1": 132, - "2": 264, - "3": 66, - "4": 0 - }, - "b": { - "0": [66, 0], - "1": [0, 66], - "2": [132], - "3": [30, 102], - "4": [66, 0], - "5": [0, 0], - "6": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkCI;AAlCJ,OAAOA,oBAASC;AAAyB,IAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAChD,SAASC,QAAQC,cAAc;AAC/B,SAASC,iBAAiB;AAC1B,SAASC,iBAAiB;AAC1B,SAASC,gBAAgB;AACzB,SAASC,kBAAkB;AAC3B,SAASC,oBAAoB;AAC7B,SAASC,WAAqB;AAC9B,SAASC,WAAW;AACpB,SAASC,oBAAoB;AAS7B,SAASC,UAAU;AAAA,EACjBC,KAAKH;AAAAA,EACLI;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACA,GAAGC;AAC8B,GAAG;AACpC,QAAMC,2BAA2BnB,MAAMoB,SAASC,IAAIJ,UAA0BK,WAAU;AACtF,WAAOtB,MAAMuB,aAAaD,OAAO;AAAA,MAC/BR;AAAAA,MACAU,2BAA2BX,OAAOJ;AAAAA,IACpC,CAAC;AAAA,EACH,CAAC;AAED,SACE,uBAAC,OAAO,OAAP,EACC,WAAWO,aAAc,GAAED,aAAaC,eAAeD,WACvD,WAAU,QACV,IACA,GAAIG,OACHC,sCALH;AAAA;AAAA;AAAA;AAAA,SAMA;AAEJ;AAACM,KAxBQb;AA0BTA,UAAUc,QAAQrB;AAClBO,UAAUe,QAAQvB;AAClBQ,UAAUgB,SAASrB;AACnBK,UAAUiB,WAAWrB;AACrBI,UAAUkB,OAAOxB;AACjBM,UAAUmB,WAAWpB;AAErB,SAASC;AAAW;AAAAoB", - "names": [ - "React", - "PropsWithChildren", - "Form", - "FormBS", - "FormInput", - "FormLabel", - "FormText", - "FormSelect", - "FormTextArea", - "Col", - "Row", - "FormCheckbox", - "FormGroup", - "as", - "required", - "controlId", - "fieldIndex", - "children", - "props", - "childrenWithRequiredProp", - "Children", - "map", - "child", - "cloneElement", - "withinMultipleFieldsGroup", - "_c", - "Label", - "Input", - "Select", - "TextArea", - "Text", - "Checkbox", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group/FormGroup.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "ca675c936242c5486837d41d654bdf39865d91d4" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 205 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 64, - "column": 11 - } - }, - "9": { - "start": { - "line": 66, - "column": 0 - }, - "end": { - "line": 66, - "column": 26 - } - }, - "10": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 68, - "column": 41 - } - }, - "11": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "12": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 70, - "column": 39 - } - }, - "13": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 71, - "column": 39 - } - }, - "14": { - "start": { - "line": 72, - "column": 2 - }, - "end": { - "line": 84, - "column": 5 - } - }, - "15": { - "start": { - "line": 76, - "column": 4 - }, - "end": { - "line": 76, - "column": 231 - } - }, - "16": { - "start": { - "line": 77, - "column": 4 - }, - "end": { - "line": 83, - "column": 7 - } - }, - "17": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "18": { - "start": { - "line": 79, - "column": 8 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "19": { - "start": { - "line": 80, - "column": 32 - }, - "end": { - "line": 80, - "column": 115 - } - }, - "20": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "21": { - "start": { - "line": 82, - "column": 8 - }, - "end": { - "line": 82, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "DynamicFieldsButtons", - "decl": { - "start": { - "line": 20, - "column": 16 - }, - "end": { - "line": 20, - "column": 36 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 65, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 75, - "column": 9 - }, - "end": { - "line": 75, - "column": 10 - } - }, - "loc": { - "start": { - "line": 75, - "column": 29 - }, - "end": { - "line": 84, - "column": 3 - } - }, - "line": 75 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 77, - "column": 27 - }, - "end": { - "line": 77, - "column": 28 - } - }, - "loc": { - "start": { - "line": 77, - "column": 44 - }, - "end": { - "line": 83, - "column": 5 - } - }, - "line": 77 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 59, - "column": 12 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 18 - } - }, - { - "start": { - "line": 43, - "column": 38 - }, - "end": { - "line": 59, - "column": 12 - } - } - ], - "line": 43 - }, - "3": { - "loc": { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 69, - "column": 0 - }, - "end": { - "line": 85, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 69 - }, - "4": { - "loc": { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 78, - "column": 6 - }, - "end": { - "line": 79, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 78 - }, - "5": { - "loc": { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 81, - "column": 6 - }, - "end": { - "line": 82, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 81 - } - }, - "s": { - "0": 18, - "1": 18, - "2": 0, - "3": 18, - "4": 18, - "5": 18, - "6": 18, - "7": 18, - "8": 16, - "9": 18, - "10": 18, - "11": 18, - "12": 18, - "13": 18, - "14": 18, - "15": 18, - "16": 18, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 18, - "1": 16, - "2": 18, - "3": 0 - }, - "b": { - "0": [18, 0], - "1": [0, 18], - "2": [16, 4], - "3": [18, 0], - "4": [0, 0], - "5": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAsBY;AAtBZ,2BAAuB;AAAA,IAAwB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC/C,OAAOA,YAAY;AAEnB,SAASC,MAAMC,YAAY;AAC3B,SAASC,sBAAsB;AAQxB,gBAASC,qBAAqB;AAAA,EACnCC;AAAAA,EACAC;AAAAA,EACAC;AACoB,GAAG;AACvB,SACE,uBAAC,SAAI,WAAWP,OAAOQ,WACrB;AAAA,2BAAC,kBAAe,WAAU,OAAM,SAAQ,OACtC,iCAAC,SAAI,WAAWR,OAAO,mBAAmB,GACxC,iCAAC,UAAO,SAAQ,aAAY,SAASM,kBACnC,iCAAC,QAAK,WAAWN,OAAOS,MAAM,OAAM,SAApC;AAAA;AAAA;AAAA;AAAA,WAAyC,KAD3C;AAAA;AAAA;AAAA;AAAA,WAEA,KAHF;AAAA;AAAA;AAAA;AAAA,WAIA,KALF;AAAA;AAAA;AAAA;AAAA,WAMA;AAAA,IACC,CAACJ,iBACA,uBAAC,kBAAe,WAAU,OAAM,SAAQ,UACtC,iCAAC,SAAI,WAAWL,OAAO,mBAAmB,GACxC,iCAAC,UAAO,SAAQ,aAAY,aAAW,MAAC,SAASO,qBAC/C,iCAAC,QAAK,WAAWP,OAAOS,MAAM,OAAM,YAApC;AAAA;AAAA;AAAA;AAAA,WAA4C,KAD9C;AAAA;AAAA;AAAA;AAAA,WAEA,KAHF;AAAA;AAAA;AAAA;AAAA,WAIA,KALF;AAAA;AAAA;AAAA;AAAA,WAMA;AAAA,OAfJ;AAAA;AAAA;AAAA;AAAA,SAiBA;AAEJ;AAACC,KAzBeN;AAAoB;AAAAO", - "names": [ - "styles", - "Dash", - "Plus", - "OverlayTrigger", - "DynamicFieldsButtons", - "originalField", - "onAddButtonClick", - "onRemoveButtonClick", - "container", - "icon", - "_c", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/dynamic-fields-buttons/DynamicFieldsButtons.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "768f4cea3d78d59a047a6b7c8c0b628cdb42dc11" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx", - "statementMap": { - "0": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 14, - "column": 1 - } - }, - "1": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - }, - "2": { - "start": { - "line": 6, - "column": 4 - }, - "end": { - "line": 6, - "column": 165 - } - }, - "3": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 39 - } - }, - "4": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "5": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 12, - "column": 4 - } - }, - "6": { - "start": { - "line": 11, - "column": 4 - }, - "end": { - "line": 11, - "column": 171 - } - }, - "7": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 75 - } - }, - "8": { - "start": { - "line": 15, - "column": 9 - }, - "end": { - "line": 15, - "column": 23 - } - }, - "9": { - "start": { - "line": 19, - "column": 2 - }, - "end": { - "line": 19, - "column": 71 - } - }, - "10": { - "start": { - "line": 19, - "column": 38 - }, - "end": { - "line": 19, - "column": 69 - } - }, - "11": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 31, - "column": 5 - } - }, - "12": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 25, - "column": 5 - } - }, - "13": { - "start": { - "line": 24, - "column": 6 - }, - "end": { - "line": 24, - "column": 19 - } - }, - "14": { - "start": { - "line": 26, - "column": 23 - }, - "end": { - "line": 26, - "column": 64 - } - }, - "15": { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 29, - "column": 5 - } - }, - "16": { - "start": { - "line": 28, - "column": 6 - }, - "end": { - "line": 28, - "column": 80 - } - }, - "17": { - "start": { - "line": 30, - "column": 4 - }, - "end": { - "line": 30, - "column": 49 - } - }, - "18": { - "start": { - "line": 34, - "column": 22 - }, - "end": { - "line": 36, - "column": 3 - } - }, - "19": { - "start": { - "line": 35, - "column": 4 - }, - "end": { - "line": 35, - "column": 69 - } - }, - "20": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 42, - "column": 4 - } - }, - "21": { - "start": { - "line": 45, - "column": 2 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "22": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 101 - } - }, - "23": { - "start": { - "line": 47, - "column": 30 - }, - "end": { - "line": 47, - "column": 63 - } - }, - "24": { - "start": { - "line": 48, - "column": 19 - }, - "end": { - "line": 48, - "column": 79 - } - }, - "25": { - "start": { - "line": 48, - "column": 30 - }, - "end": { - "line": 48, - "column": 79 - } - }, - "26": { - "start": { - "line": 49, - "column": 22 - }, - "end": { - "line": 49, - "column": 110 - } - }, - "27": { - "start": { - "line": 49, - "column": 38 - }, - "end": { - "line": 49, - "column": 110 - } - }, - "28": { - "start": { - "line": 49, - "column": 91 - }, - "end": { - "line": 49, - "column": 107 - } - }, - "29": { - "start": { - "line": 50, - "column": 2 - }, - "end": { - "line": 54, - "column": 4 - } - }, - "30": { - "start": { - "line": 56, - "column": 0 - }, - "end": { - "line": 56, - "column": 46 - } - }, - "31": { - "start": { - "line": 57, - "column": 0 - }, - "end": { - "line": 73, - "column": 1 - } - }, - "32": { - "start": { - "line": 58, - "column": 2 - }, - "end": { - "line": 58, - "column": 39 - } - }, - "33": { - "start": { - "line": 59, - "column": 2 - }, - "end": { - "line": 59, - "column": 39 - } - }, - "34": { - "start": { - "line": 60, - "column": 2 - }, - "end": { - "line": 72, - "column": 5 - } - }, - "35": { - "start": { - "line": 64, - "column": 4 - }, - "end": { - "line": 64, - "column": 197 - } - }, - "36": { - "start": { - "line": 65, - "column": 4 - }, - "end": { - "line": 71, - "column": 7 - } - }, - "37": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 15 - } - }, - "38": { - "start": { - "line": 67, - "column": 8 - }, - "end": { - "line": 67, - "column": 15 - } - }, - "39": { - "start": { - "line": 68, - "column": 32 - }, - "end": { - "line": 68, - "column": 115 - } - }, - "40": { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 70, - "column": 54 - } - }, - "41": { - "start": { - "line": 70, - "column": 8 - }, - "end": { - "line": 70, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 10, - "column": 24 - }, - "end": { - "line": 10, - "column": 25 - } - }, - "loc": { - "start": { - "line": 10, - "column": 38 - }, - "end": { - "line": 12, - "column": 3 - } - }, - "line": 10 - }, - "1": { - "name": "getFieldsWithIndex", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 27 - } - }, - "loc": { - "start": { - "line": 18, - "column": 36 - }, - "end": { - "line": 20, - "column": 1 - } - }, - "line": 18 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 19, - "column": 20 - }, - "end": { - "line": 19, - "column": 21 - } - }, - "loc": { - "start": { - "line": 19, - "column": 38 - }, - "end": { - "line": 19, - "column": 69 - } - }, - "line": 19 - }, - "3": { - "name": "getFieldWithIndex", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 26 - } - }, - "loc": { - "start": { - "line": 21, - "column": 46 - }, - "end": { - "line": 32, - "column": 1 - } - }, - "line": 21 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 22, - "column": 35 - }, - "end": { - "line": 22, - "column": 36 - } - }, - "loc": { - "start": { - "line": 22, - "column": 46 - }, - "end": { - "line": 31, - "column": 3 - } - }, - "line": 22 - }, - "5": { - "name": "getPropsWithFieldIndex", - "decl": { - "start": { - "line": 33, - "column": 9 - }, - "end": { - "line": 33, - "column": 31 - } - }, - "loc": { - "start": { - "line": 33, - "column": 51 - }, - "end": { - "line": 43, - "column": 1 - } - }, - "line": 33 - }, - "6": { - "name": "(anonymous_6)", - "decl": { - "start": { - "line": 34, - "column": 22 - }, - "end": { - "line": 34, - "column": 23 - } - }, - "loc": { - "start": { - "line": 34, - "column": 34 - }, - "end": { - "line": 36, - "column": 3 - } - }, - "line": 34 - }, - "7": { - "name": "useFields", - "decl": { - "start": { - "line": 44, - "column": 16 - }, - "end": { - "line": 44, - "column": 25 - } - }, - "loc": { - "start": { - "line": 44, - "column": 59 - }, - "end": { - "line": 55, - "column": 1 - } - }, - "line": 44 - }, - "8": { - "name": "(anonymous_8)", - "decl": { - "start": { - "line": 48, - "column": 19 - }, - "end": { - "line": 48, - "column": 20 - } - }, - "loc": { - "start": { - "line": 48, - "column": 30 - }, - "end": { - "line": 48, - "column": 79 - } - }, - "line": 48 - }, - "9": { - "name": "(anonymous_9)", - "decl": { - "start": { - "line": 49, - "column": 22 - }, - "end": { - "line": 49, - "column": 23 - } - }, - "loc": { - "start": { - "line": 49, - "column": 38 - }, - "end": { - "line": 49, - "column": 110 - } - }, - "line": 49 - }, - "10": { - "name": "(anonymous_10)", - "decl": { - "start": { - "line": 49, - "column": 81 - }, - "end": { - "line": 49, - "column": 82 - } - }, - "loc": { - "start": { - "line": 49, - "column": 91 - }, - "end": { - "line": 49, - "column": 107 - } - }, - "line": 49 - }, - "11": { - "name": "(anonymous_11)", - "decl": { - "start": { - "line": 63, - "column": 9 - }, - "end": { - "line": 63, - "column": 10 - } - }, - "loc": { - "start": { - "line": 63, - "column": 29 - }, - "end": { - "line": 72, - "column": 3 - } - }, - "line": 63 - }, - "12": { - "name": "(anonymous_12)", - "decl": { - "start": { - "line": 65, - "column": 27 - }, - "end": { - "line": 65, - "column": 28 - } - }, - "loc": { - "start": { - "line": 65, - "column": 44 - }, - "end": { - "line": 71, - "column": 5 - } - }, - "line": 65 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 14, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 4, - "column": 0 - }, - "end": { - "line": 14, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 4 - }, - "1": { - "loc": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 7, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "2": { - "loc": { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 25, - "column": 5 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 23, - "column": 4 - }, - "end": { - "line": 25, - "column": 5 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 23 - }, - "3": { - "loc": { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 29, - "column": 5 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 27, - "column": 4 - }, - "end": { - "line": 29, - "column": 5 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 27 - }, - "4": { - "loc": { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 68 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 35, - "column": 11 - }, - "end": { - "line": 35, - "column": 39 - } - }, - { - "start": { - "line": 35, - "column": 43 - }, - "end": { - "line": 35, - "column": 68 - } - } - ], - "line": 35 - }, - "5": { - "loc": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 42, - "column": 3 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 37, - "column": 30 - }, - "end": { - "line": 40, - "column": 3 - } - }, - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 42, - "column": 3 - } - } - ], - "line": 37 - }, - "6": { - "loc": { - "start": { - "line": 46, - "column": 32 - }, - "end": { - "line": 46, - "column": 101 - } - }, - "type": "cond-expr", - "locations": [ - { - "start": { - "line": 46, - "column": 52 - }, - "end": { - "line": 46, - "column": 86 - } - }, - { - "start": { - "line": 46, - "column": 89 - }, - "end": { - "line": 46, - "column": 101 - } - } - ], - "line": 46 - }, - "7": { - "loc": { - "start": { - "line": 57, - "column": 0 - }, - "end": { - "line": 73, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 57, - "column": 0 - }, - "end": { - "line": 73, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 57 - }, - "8": { - "loc": { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 66, - "column": 6 - }, - "end": { - "line": 67, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 66 - }, - "9": { - "loc": { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 70, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 69, - "column": 6 - }, - "end": { - "line": 70, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 69 - } - }, - "s": { - "0": 26, - "1": 26, - "2": 0, - "3": 26, - "4": 26, - "5": 26, - "6": 0, - "7": 26, - "8": 26, - "9": 22, - "10": 36, - "11": 216, - "12": 288, - "13": 72, - "14": 216, - "15": 216, - "16": 144, - "17": 216, - "18": 216, - "19": 216, - "20": 216, - "21": 78, - "22": 78, - "23": 78, - "24": 78, - "25": 14, - "26": 78, - "27": 8, - "28": 16, - "29": 78, - "30": 26, - "31": 26, - "32": 26, - "33": 26, - "34": 26, - "35": 26, - "36": 26, - "37": 0, - "38": 0, - "39": 0, - "40": 0, - "41": 0 - }, - "f": { - "0": 0, - "1": 22, - "2": 36, - "3": 216, - "4": 288, - "5": 216, - "6": 216, - "7": 78, - "8": 14, - "9": 8, - "10": 16, - "11": 26, - "12": 0 - }, - "b": { - "0": [26, 0], - "1": [0, 26], - "2": [72, 216], - "3": [144, 72], - "4": [216, 216], - "5": [24, 192], - "6": [36, 42], - "7": [26, 0], - "8": [0, 0], - "9": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": ";;;;;;;;;;;;;;;AAAA,OAAOA,SAAkCC,gBAAgB;AACzD,SAASC,iBAAiB;AAE1B,SAASC,mBAAmBC,QAA0B;AACpD,SAAOA,OAAOC,IAAI,CAACC,OAAOC,UAAUC,kBAAkBF,OAAOC,KAAK,CAAC;AACrE;AAEA,SAASC,kBAAkBF,OAAkBG,YAAoB;AAC/D,SAAOT,MAAMU,SAASL,IAAIC,OAAO,CAACK,UAAqB;AACrD,QAAI,CAACX,MAAMY,eAAeD,KAAK,GAAG;AAChC,aAAOA;AAAAA,IACT;AAGA,UAAME,aAAaC,uBAAuBH,OAAOF,UAAU;AAG3D,QAAIE,MAAMI,MAAMC,UAAU;AAExBH,iBAAWG,WAAWR,kBAAkBG,MAAMI,MAAMC,UAAUP,UAAU;AAAA,IAC1E;AAGA,WAAOT,MAAMiB,aAAaN,OAAOE,UAAU;AAAA,EAC7C,CAAC;AACH;AAEA,SAASC,uBAAuBH,OAAqBF,YAAoB;AACvE,QAAMS,cAAcA,CAACP,WAAqB;AACxC,WAAOX,MAAMY,eAAeD,MAAK,KAAKA,OAAMQ,SAASjB;AAAAA,EACvD;AAGA,SAAOgB,YAAYP,KAAK,IACpB;AAAA,IAAE,GAAGA,MAAMI;AAAAA,IAAON,YAAYA,WAAWW,SAAS;AAAA,EAAE,IACpD;AAAA,IAAE,GAAGT,MAAMI;AAAAA,EAAM;AACvB;AAEO,gBAASM,UAAUC,cAAqCC,mBAA6B;AAAAC;AAC1F,QAAMC,wBAAwBF,oBAC1Bf,kBAAkBc,cAAc,CAAC,IACjCA;AACJ,QAAM,CAAClB,QAAQsB,SAAS,IAAIzB,SAAS,CAACwB,qBAAqB,CAAC;AAE5D,QAAME,WAAWA,CAACrB,UAChBoB,UAAUvB,mBAAmB,CAAC,GAAGC,QAAQE,KAAK,CAAC,CAAC;AAElD,QAAMsB,cAAcA,CAACnB,eACnBiB,UAAUvB,mBAAmBC,OAAOyB,OAAO,CAACC,GAAGC,MAAMA,MAAMtB,UAAU,CAAC,CAAC;AAEzE,SAAO;AAAA,IAAEL;AAAAA,IAAQuB;AAAAA,IAAUC;AAAAA,EAAY;AACzC;AAACJ,GAbeH,WAAS", - "names": [ - "React", - "useState", - "FormGroup", - "getFieldsWithIndex", - "fields", - "map", - "field", - "index", - "getFieldWithIndex", - "fieldIndex", - "Children", - "child", - "isValidElement", - "childProps", - "getPropsWithFieldIndex", - "props", - "children", - "cloneElement", - "isFormGroup", - "type", - "toString", - "useFields", - "initialField", - "withDynamicFields", - "_s", - "initialFieldWithIndex", - "setFields", - "addField", - "removeField", - "filter", - "_", - "i" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/useFields.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "d43bed93692e550ff6a0c714f97c1528834f73d9" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 189 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 16, - "column": 9 - }, - "end": { - "line": 16, - "column": 23 - } - }, - "9": { - "start": { - "line": 24, - "column": 14 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "10": { - "start": { - "line": 28, - "column": 22 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "11": { - "start": { - "line": 47, - "column": 0 - }, - "end": { - "line": 47, - "column": 11 - } - }, - "12": { - "start": { - "line": 55, - "column": 2 - }, - "end": { - "line": 55, - "column": 7 - } - }, - "13": { - "start": { - "line": 60, - "column": 6 - }, - "end": { - "line": 60, - "column": 44 - } - }, - "14": { - "start": { - "line": 61, - "column": 2 - }, - "end": { - "line": 96, - "column": 11 - } - }, - "15": { - "start": { - "line": 62, - "column": 25 - }, - "end": { - "line": 62, - "column": 35 - } - }, - "16": { - "start": { - "line": 63, - "column": 4 - }, - "end": { - "line": 91, - "column": 13 - } - }, - "17": { - "start": { - "line": 78, - "column": 174 - }, - "end": { - "line": 78, - "column": 189 - } - }, - "18": { - "start": { - "line": 78, - "column": 218 - }, - "end": { - "line": 78, - "column": 236 - } - }, - "19": { - "start": { - "line": 98, - "column": 0 - }, - "end": { - "line": 100, - "column": 3 - } - }, - "20": { - "start": { - "line": 99, - "column": 2 - }, - "end": { - "line": 99, - "column": 21 - } - }, - "21": { - "start": { - "line": 101, - "column": 0 - }, - "end": { - "line": 101, - "column": 34 - } - }, - "22": { - "start": { - "line": 103, - "column": 0 - }, - "end": { - "line": 103, - "column": 26 - } - }, - "23": { - "start": { - "line": 104, - "column": 0 - }, - "end": { - "line": 104, - "column": 49 - } - }, - "24": { - "start": { - "line": 105, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "25": { - "start": { - "line": 106, - "column": 2 - }, - "end": { - "line": 106, - "column": 39 - } - }, - "26": { - "start": { - "line": 107, - "column": 2 - }, - "end": { - "line": 107, - "column": 39 - } - }, - "27": { - "start": { - "line": 108, - "column": 2 - }, - "end": { - "line": 120, - "column": 5 - } - }, - "28": { - "start": { - "line": 112, - "column": 4 - }, - "end": { - "line": 112, - "column": 215 - } - }, - "29": { - "start": { - "line": 113, - "column": 4 - }, - "end": { - "line": 119, - "column": 7 - } - }, - "30": { - "start": { - "line": 114, - "column": 6 - }, - "end": { - "line": 115, - "column": 15 - } - }, - "31": { - "start": { - "line": 115, - "column": 8 - }, - "end": { - "line": 115, - "column": 15 - } - }, - "32": { - "start": { - "line": 116, - "column": 32 - }, - "end": { - "line": 116, - "column": 115 - } - }, - "33": { - "start": { - "line": 117, - "column": 6 - }, - "end": { - "line": 118, - "column": 54 - } - }, - "34": { - "start": { - "line": 118, - "column": 8 - }, - "end": { - "line": 118, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "(anonymous_1)", - "decl": { - "start": { - "line": 24, - "column": 14 - }, - "end": { - "line": 24, - "column": 15 - } - }, - "loc": { - "start": { - "line": 28, - "column": 22 - }, - "end": { - "line": 46, - "column": 8 - } - }, - "line": 28 - }, - "2": { - "name": "FormGroupWithMultipleFields", - "decl": { - "start": { - "line": 48, - "column": 16 - }, - "end": { - "line": 48, - "column": 43 - } - }, - "loc": { - "start": { - "line": 54, - "column": 3 - }, - "end": { - "line": 97, - "column": 1 - } - }, - "line": 54 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 61, - "column": 65 - }, - "end": { - "line": 61, - "column": 66 - } - }, - "loc": { - "start": { - "line": 61, - "column": 83 - }, - "end": { - "line": 92, - "column": 3 - } - }, - "line": 61 - }, - "4": { - "name": "(anonymous_4)", - "decl": { - "start": { - "line": 78, - "column": 168 - }, - "end": { - "line": 78, - "column": 169 - } - }, - "loc": { - "start": { - "line": 78, - "column": 174 - }, - "end": { - "line": 78, - "column": 189 - } - }, - "line": 78 - }, - "5": { - "name": "(anonymous_5)", - "decl": { - "start": { - "line": 78, - "column": 212 - }, - "end": { - "line": 78, - "column": 213 - } - }, - "loc": { - "start": { - "line": 78, - "column": 218 - }, - "end": { - "line": 78, - "column": 236 - } - }, - "line": 78 - }, - "6": { - "name": "(anonymous_6)", - "decl": { - "start": { - "line": 98, - "column": 71 - }, - "end": { - "line": 98, - "column": 72 - } - }, - "loc": { - "start": { - "line": 98, - "column": 82 - }, - "end": { - "line": 100, - "column": 1 - } - }, - "line": 98 - }, - "7": { - "name": "(anonymous_7)", - "decl": { - "start": { - "line": 111, - "column": 9 - }, - "end": { - "line": 111, - "column": 10 - } - }, - "loc": { - "start": { - "line": 111, - "column": 29 - }, - "end": { - "line": 120, - "column": 3 - } - }, - "line": 111 - }, - "8": { - "name": "(anonymous_8)", - "decl": { - "start": { - "line": 113, - "column": 27 - }, - "end": { - "line": 113, - "column": 28 - } - }, - "loc": { - "start": { - "line": 113, - "column": 44 - }, - "end": { - "line": 119, - "column": 5 - } - }, - "line": 113 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 10 - } - }, - { - "start": { - "line": 31, - "column": 30 - }, - "end": { - "line": 35, - "column": 10 - } - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 41, - "column": 10 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 9 - } - }, - { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 41, - "column": 10 - } - } - ], - "line": 37 - }, - "4": { - "loc": { - "start": { - "line": 64, - "column": 53 - }, - "end": { - "line": 68, - "column": 14 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 64, - "column": 53 - }, - "end": { - "line": 64, - "column": 65 - } - }, - { - "start": { - "line": 64, - "column": 85 - }, - "end": { - "line": 68, - "column": 14 - } - } - ], - "line": 64 - }, - "5": { - "loc": { - "start": { - "line": 78, - "column": 53 - }, - "end": { - "line": 82, - "column": 14 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 78, - "column": 53 - }, - "end": { - "line": 78, - "column": 70 - } - }, - { - "start": { - "line": 78, - "column": 90 - }, - "end": { - "line": 82, - "column": 14 - } - } - ], - "line": 78 - }, - "6": { - "loc": { - "start": { - "line": 105, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 105, - "column": 0 - }, - "end": { - "line": 121, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 105 - }, - "7": { - "loc": { - "start": { - "line": 114, - "column": 6 - }, - "end": { - "line": 115, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 114, - "column": 6 - }, - "end": { - "line": 115, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 114 - }, - "8": { - "loc": { - "start": { - "line": 117, - "column": 6 - }, - "end": { - "line": 118, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 117, - "column": 6 - }, - "end": { - "line": 118, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 117 - } - }, - "s": { - "0": 18, - "1": 18, - "2": 0, - "3": 18, - "4": 18, - "5": 18, - "6": 36, - "7": 18, - "8": 18, - "9": 18, - "10": 46, - "11": 18, - "12": 46, - "13": 46, - "14": 46, - "15": 50, - "16": 50, - "17": 4, - "18": 4, - "19": 18, - "20": 16, - "21": 18, - "22": 18, - "23": 18, - "24": 18, - "25": 18, - "26": 18, - "27": 18, - "28": 18, - "29": 18, - "30": 0, - "31": 0, - "32": 0, - "33": 0, - "34": 0 - }, - "f": { - "0": 36, - "1": 46, - "2": 46, - "3": 50, - "4": 4, - "5": 4, - "6": 16, - "7": 18, - "8": 0 - }, - "b": { - "0": [18, 0], - "1": [0, 18], - "2": [46, 10], - "3": [46, 0], - "4": [50, 46], - "5": [50, 16], - "6": [18, 0], - "7": [0, 0], - "8": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAkByB,SAerB,UAfqB;;;;;;;;;;;;;;;;AAlBzB,SAASA,WAAW;AACpB,SAASC,WAAW;AAEpB,OAAOC,YAAY;AACnB,SAASC,2BAA2B;AACpC,SAASC,4BAA4B;AACrC,SAASC,iBAAiB;AAC1B,SAASC,eAAe;AASxB,MAAMC,QAAQA,CAAC;AAAA,EAAEC;AAAAA,EAAOC;AAAAA,EAAUC;AAAmD,MACnF,uBAAC,UAAK,WAAWR,OAAOM,OACrBA;AAAAA;AAAAA,EAAM;AAAA,EAAEC,YAAY,uBAAC,yBAAD;AAAA;AAAA;AAAA;AAAA,SAAoB;AAAA,EAAK;AAAA,EAC7CC,WAAW,uBAAC,WAAQ,WAAU,SAAQ,WAA3B;AAAA;AAAA;AAAA;AAAA,SAA6C;AAAA,KAF3D;AAAA;AAAA;AAAA;AAAA,OAGA;AACDC,KALKJ;AAOC,gBAASK,4BAA4B;AAAA,EAC1CJ;AAAAA,EACAK;AAAAA,EACAJ;AAAAA,EACAC;AAAAA,EACAI;AACmD,GAAG;AAAAC;AACtD,QAAM;AAAA,IAAEC;AAAAA,IAAQC;AAAAA,IAAUC;AAAAA,EAAY,IAAIb,UAAUS,UAAUD,iBAAiB;AAE/E,SACE,mCACGG,iBAAOG,IAAI,CAACC,OAAOC,UAAU;AAC5B,UAAMC,eAAeD,SAAS;AAE9B,WACE,uBAAC,OACC;AAAA,6BAAC,OAAI,IAAI,GACNC,0BAAgB,uBAAC,SAAM,OAAc,UAAoB,WAAzC;AAAA;AAAA;AAAA;AAAA,aAA0D,KAD7E;AAAA;AAAA;AAAA;AAAA,aAEA;AAAA,MACA,uBAAC,OAAI,IAAI,GAAIF,mBAAb;AAAA;AAAA;AAAA;AAAA,aAAmB;AAAA,MACnB,uBAAC,OAAI,IAAI,GACNP,+BACC,uBAAC,wBACC,eAAeS,cACf,kBAAkB,MAAML,SAASG,KAAK,GACtC,qBAAqB,MAAMF,YAAYG,KAAK,KAH9C;AAAA;AAAA;AAAA;AAAA,aAGgD,KALpD;AAAA;AAAA;AAAA;AAAA,aAQA;AAAA,SAbQA,OAAV;AAAA;AAAA;AAAA;AAAA,WAcA;AAAA,EAEJ,CAAC,KArBH;AAAA;AAAA;AAAA;AAAA,SAsBA;AAEJ;AAACN,GAlCeH,6BAA2B;AAAA,UAOCP,SAAS;AAAA;AAAAkB,MAPrCX;AAA2B;AAAAY;AAAAA", - "names": [ - "Row", - "Col", - "styles", - "RequiredInputSymbol", - "DynamicFieldsButtons", - "useFields", - "Tooltip", - "Title", - "title", - "required", - "message", - "_c", - "FormGroupWithMultipleFields", - "withDynamicFields", - "children", - "_s", - "fields", - "addField", - "removeField", - "map", - "field", - "index", - "isFirstField", - "_c2", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/form-group-multiple-fields/FormGroupWithMultipleFields.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "c1f97da1c1953b0f4109fa796945363e9e3d4800" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 139 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 24, - "column": 2 - }, - "end": { - "line": 28, - "column": 11 - } - }, - "9": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 10 - } - }, - "10": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 31, - "column": 23 - } - }, - "11": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 59 - } - }, - "12": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 35, - "column": 25 - } - }, - "13": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "14": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 37, - "column": 39 - } - }, - "15": { - "start": { - "line": 38, - "column": 2 - }, - "end": { - "line": 38, - "column": 39 - } - }, - "16": { - "start": { - "line": 39, - "column": 2 - }, - "end": { - "line": 51, - "column": 5 - } - }, - "17": { - "start": { - "line": 43, - "column": 4 - }, - "end": { - "line": 43, - "column": 165 - } - }, - "18": { - "start": { - "line": 44, - "column": 4 - }, - "end": { - "line": 50, - "column": 7 - } - }, - "19": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "20": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "21": { - "start": { - "line": 47, - "column": 32 - }, - "end": { - "line": 47, - "column": 115 - } - }, - "22": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "23": { - "start": { - "line": 49, - "column": 8 - }, - "end": { - "line": 49, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Form", - "decl": { - "start": { - "line": 19, - "column": 9 - }, - "end": { - "line": 19, - "column": 13 - } - }, - "loc": { - "start": { - "line": 23, - "column": 3 - }, - "end": { - "line": 29, - "column": 1 - } - }, - "line": 23 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 42, - "column": 9 - }, - "end": { - "line": 42, - "column": 10 - } - }, - "loc": { - "start": { - "line": 42, - "column": 29 - }, - "end": { - "line": 51, - "column": 3 - } - }, - "line": 42 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 44, - "column": 27 - }, - "end": { - "line": 44, - "column": 28 - } - }, - "loc": { - "start": { - "line": 44, - "column": 44 - }, - "end": { - "line": 50, - "column": 5 - } - }, - "line": 44 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 52, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 36 - }, - "3": { - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 45 - }, - "4": { - "loc": { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 48, - "column": 6 - }, - "end": { - "line": 49, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 48 - } - }, - "s": { - "0": 2, - "1": 2, - "2": 0, - "3": 2, - "4": 2, - "5": 2, - "6": 2, - "7": 2, - "8": 2, - "9": 2, - "10": 2, - "11": 2, - "12": 2, - "13": 2, - "14": 2, - "15": 2, - "16": 2, - "17": 2, - "18": 2, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 2, - "1": 2, - "2": 2, - "3": 0 - }, - "b": { - "0": [2, 0], - "1": [0, 2], - "2": [2, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAYI;AAZJ,2BAAoBA;AAAyB;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACpD,SAASC,iBAAiB;AAC1B,SAASC,QAAQC,cAAc;AAC/B,SAASC,mCAAmC;AAO5C,SAASF,KAAK;AAAA,EAAEG;AAAAA,EAAWC;AAAAA,EAAUC;AAAuC,GAAG;AAC7E,SACE,uBAAC,UAAO,WAAsB,UAC3BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANQN;AAQTA,KAAKO,QAAQR;AACbC,KAAKQ,0BAA0BN;AAE/B,SAASF;AAAM;AAAAS", - "names": [ - "PropsWithChildren", - "FormGroup", - "Form", - "FormBS", - "FormGroupWithMultipleFields", - "validated", - "onSubmit", - "children", - "_c", - "Group", - "GroupWithMultipleFields", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/form/Form.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "fa496c3beb610da03a008791d93ee60f226df793" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 147 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 17 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 32 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 173 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalHeader", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 27 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,YAAY;AAAA,EAAEC;AAA4B,GAAG;AAC3D,SAAO,uBAAC,MAAM,QAAN,EAAa,aAAW,MAAEA,YAA3B;AAAA;AAAA;AAAA;AAAA,SAAoC;AAC7C;AAACC,KAFeF;AAAW;AAAAG", - "names": ["Modal", "ModalHeader", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalHeader.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "620fa8d2f4b5be1cfff389a838f0a7a83d57da9a" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 146 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 16 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 31 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 172 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalTitle", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 26 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,WAAW;AAAA,EAAEC;AAA4B,GAAG;AAC1D,SAAO,uBAAC,MAAM,OAAN,EAAaA,YAAd;AAAA;AAAA;AAAA;AAAA,SAAuB;AAChC;AAACC,KAFeF;AAAU;AAAAG", - "names": ["Modal", "ModalTitle", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalTitle.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "9e80a1c87b30e9f5f45b524016c4cb44f65accab" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 145 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 15 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 30 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 171 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalBody", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,UAAU;AAAA,EAAEC;AAA4B,GAAG;AACzD,SAAO,uBAAC,MAAM,MAAN,EAAYA,YAAb;AAAA;AAAA;AAAA;AAAA,SAAsB;AAC/B;AAACC,KAFeF;AAAS;AAAAG", - "names": ["Modal", "ModalBody", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalBody.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "78fd60523247d71855e9717d2674b0e0d5499d1b" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 147 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 20, - "column": 2 - }, - "end": { - "line": 24, - "column": 11 - } - }, - "9": { - "start": { - "line": 26, - "column": 0 - }, - "end": { - "line": 26, - "column": 17 - } - }, - "10": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 32 - } - }, - "11": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "12": { - "start": { - "line": 30, - "column": 2 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "13": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "14": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "15": { - "start": { - "line": 36, - "column": 4 - }, - "end": { - "line": 36, - "column": 173 - } - }, - "16": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 43, - "column": 7 - } - }, - "17": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "18": { - "start": { - "line": 39, - "column": 8 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "19": { - "start": { - "line": 40, - "column": 32 - }, - "end": { - "line": 40, - "column": 115 - } - }, - "20": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "21": { - "start": { - "line": 42, - "column": 8 - }, - "end": { - "line": 42, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "ModalFooter", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 27 - } - }, - "loc": { - "start": { - "line": 19, - "column": 3 - }, - "end": { - "line": 25, - "column": 1 - } - }, - "line": 19 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 35, - "column": 9 - }, - "end": { - "line": 35, - "column": 10 - } - }, - "loc": { - "start": { - "line": 35, - "column": 29 - }, - "end": { - "line": 44, - "column": 3 - } - }, - "line": 35 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 37, - "column": 27 - }, - "end": { - "line": 37, - "column": 28 - } - }, - "loc": { - "start": { - "line": 37, - "column": 44 - }, - "end": { - "line": 43, - "column": 5 - } - }, - "line": 37 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 45, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 29 - }, - "3": { - "loc": { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 38, - "column": 6 - }, - "end": { - "line": 39, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 38 - }, - "4": { - "loc": { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 6 - }, - "end": { - "line": 42, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 8, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 8, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAIS;AAJT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,aAAa;AAEf,gBAASC,YAAY;AAAA,EAAEC;AAA4B,GAAG;AAC3D,SAAO,uBAAC,MAAM,QAAN,EAAcA,YAAf;AAAA;AAAA;AAAA;AAAA,SAAwB;AACjC;AAACC,KAFeF;AAAW;AAAAG", - "names": ["Modal", "ModalFooter", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/ModalFooter.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "56657e8053e4b875b20d15e7659bba062b9d1390" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 141 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 27, - "column": 2 - }, - "end": { - "line": 31, - "column": 11 - } - }, - "9": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 11 - } - }, - "10": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 34, - "column": 27 - } - }, - "11": { - "start": { - "line": 35, - "column": 0 - }, - "end": { - "line": 35, - "column": 25 - } - }, - "12": { - "start": { - "line": 36, - "column": 0 - }, - "end": { - "line": 36, - "column": 23 - } - }, - "13": { - "start": { - "line": 37, - "column": 0 - }, - "end": { - "line": 37, - "column": 27 - } - }, - "14": { - "start": { - "line": 40, - "column": 0 - }, - "end": { - "line": 40, - "column": 26 - } - }, - "15": { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 57, - "column": 1 - } - }, - "16": { - "start": { - "line": 42, - "column": 2 - }, - "end": { - "line": 42, - "column": 39 - } - }, - "17": { - "start": { - "line": 43, - "column": 2 - }, - "end": { - "line": 43, - "column": 39 - } - }, - "18": { - "start": { - "line": 44, - "column": 2 - }, - "end": { - "line": 56, - "column": 5 - } - }, - "19": { - "start": { - "line": 48, - "column": 4 - }, - "end": { - "line": 48, - "column": 167 - } - }, - "20": { - "start": { - "line": 49, - "column": 4 - }, - "end": { - "line": 55, - "column": 7 - } - }, - "21": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "22": { - "start": { - "line": 51, - "column": 8 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "23": { - "start": { - "line": 52, - "column": 32 - }, - "end": { - "line": 52, - "column": 115 - } - }, - "24": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 54 - } - }, - "25": { - "start": { - "line": 54, - "column": 8 - }, - "end": { - "line": 54, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Modal", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 14 - } - }, - "loc": { - "start": { - "line": 26, - "column": 3 - }, - "end": { - "line": 32, - "column": 1 - } - }, - "line": 26 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 47, - "column": 9 - }, - "end": { - "line": 47, - "column": 10 - } - }, - "loc": { - "start": { - "line": 47, - "column": 29 - }, - "end": { - "line": 56, - "column": 3 - } - }, - "line": 47 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 49, - "column": 27 - }, - "end": { - "line": 49, - "column": 28 - } - }, - "loc": { - "start": { - "line": 49, - "column": 44 - }, - "end": { - "line": 55, - "column": 5 - } - }, - "line": 49 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 57, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 41, - "column": 0 - }, - "end": { - "line": 57, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 41 - }, - "3": { - "loc": { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 50, - "column": 6 - }, - "end": { - "line": 51, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 50 - }, - "4": { - "loc": { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 53, - "column": 6 - }, - "end": { - "line": 54, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 53 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 8, - "19": 8, - "20": 8, - "21": 0, - "22": 0, - "23": 0, - "24": 0, - "25": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAeI;AAfJ,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,SAASC,eAAe;AACjC,SAASC,mBAAmB;AAC5B,SAASC,kBAAkB;AAC3B,SAASC,iBAAiB;AAC1B,SAASC,mBAAmB;AAQ5B,SAASL,MAAM;AAAA,EAAEM;AAAAA,EAAMC;AAAAA,EAAQC;AAAAA,EAAMC;AAAwC,GAAG;AAC9E,SACE,uBAAC,WAAQ,MAAY,QAAgB,MAClCA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANQV;AAQTA,MAAMW,SAAST;AACfF,MAAMY,QAAQT;AACdH,MAAMa,OAAOT;AACbJ,MAAMc,SAAST;AAEf,SAASL;AAAO;AAAAe", - "names": [ - "Modal", - "BSModal", - "ModalHeader", - "ModalTitle", - "ModalBody", - "ModalFooter", - "show", - "onHide", - "size", - "children", - "_c", - "Header", - "Title", - "Body", - "Footer", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/modal/Modal.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "adf9c4b59b94fe83bf019215e2ab9cbe7126ea54" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 171 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 24 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 39 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 197 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "NavbarDropdownItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 34 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 8, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 8, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAcI;AAdJ,2BAAoB;AAAyB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQtC,gBAASA,mBAAmB;AAAA,EACjCC;AAAAA,EACAC;AAAAA,EACAC;AAC0C,GAAG;AAC7C,SACE,uBAAC,YAAY,MAAZ,EAAiB,MAAY,SAC3BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KAVeJ;AAAkB;AAAAK", - "names": ["NavbarDropdownItem", "href", "onClick", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdownItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "5a85c0c32b6046d19ab0bbcfa4461031cc5f832b" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 167 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 23, - "column": 2 - }, - "end": { - "line": 27, - "column": 11 - } - }, - "9": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 20 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 41 - } - }, - "11": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 33, - "column": 35 - } - }, - "12": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "13": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 39 - } - }, - "14": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 36, - "column": 39 - } - }, - "15": { - "start": { - "line": 37, - "column": 2 - }, - "end": { - "line": 49, - "column": 5 - } - }, - "16": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 41, - "column": 193 - } - }, - "17": { - "start": { - "line": 42, - "column": 4 - }, - "end": { - "line": 48, - "column": 7 - } - }, - "18": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "19": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "20": { - "start": { - "line": 45, - "column": 32 - }, - "end": { - "line": 45, - "column": 115 - } - }, - "21": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "22": { - "start": { - "line": 47, - "column": 8 - }, - "end": { - "line": 47, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "NavbarDropdown", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 23 - } - }, - "loc": { - "start": { - "line": 22, - "column": 3 - }, - "end": { - "line": 28, - "column": 1 - } - }, - "line": 22 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 40, - "column": 9 - }, - "end": { - "line": 40, - "column": 10 - } - }, - "loc": { - "start": { - "line": 40, - "column": 29 - }, - "end": { - "line": 49, - "column": 3 - } - }, - "line": 40 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 42, - "column": 27 - }, - "end": { - "line": 42, - "column": 28 - } - }, - "loc": { - "start": { - "line": 42, - "column": 44 - }, - "end": { - "line": 48, - "column": 5 - } - }, - "line": 42 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 34, - "column": 0 - }, - "end": { - "line": 50, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 34 - }, - "3": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - }, - "4": { - "loc": { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 46, - "column": 6 - }, - "end": { - "line": 47, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 46 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 10, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 8, - "1": 10, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAWI;AAXJ,2BAAwBA;AAAqB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAE9D,SAASC,0BAA0B;AAOnC,SAASC,eAAe;AAAA,EAAEC;AAAAA,EAAOC;AAAAA,EAAIC;AAA2C,GAAG;AACjF,SACE,uBAAC,iBAAc,OAAc,IAC1BA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANQJ;AAQTA,eAAeK,OAAON;AAEtB,SAASC;AAAgB;AAAAM", - "names": [ - "NavDropdownBS", - "NavbarDropdownItem", - "NavbarDropdown", - "title", - "id", - "children", - "_c", - "Item", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/navbar-dropdown/NavbarDropdown.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "baa3be8707527de3aadf5ad31b5c49f7729113e3" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 144 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 15 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 30 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 170 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Container", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 25 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAA0B;AAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACjC,SAASA,aAAaC,mBAAmB;AAOlC,gBAASD,UAAU;AAAA,EAAEE;AAAAA,EAAU,GAAGC;AAAsB,GAAG;AAChE,SAAO,uBAAC,eAAY,GAAIA,OAAQD,YAAzB;AAAA;AAAA;AAAA;AAAA,SAAkC;AAC3C;AAACE,KAFeJ;AAAS;AAAAK", - "names": ["Container", "ContainerBS", "children", "props", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/grid/Container.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "2d5546c61a75370d79e6c30756777cbb48b3d218" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 147 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 16 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 31 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 173 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "NavbarLink", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 26 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 20, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 8, - "1": 20, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAQS;AART,2BAAoB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAO9B,gBAASA,WAAW;AAAA,EAAEC;AAAAA,EAAMC;AAA6C,GAAG;AACjF,SAAO,uBAAC,IAAI,MAAJ,EAAS,MAAaA,YAAvB;AAAA;AAAA;AAAA;AAAA,SAAgC;AACzC;AAACC,KAFeH;AAAU;AAAAI", - "names": ["NavbarLink", "href", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/NavbarLink.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "401cca4b54ba78d8771681e772326f646b4a3fe8" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 143 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 25, - "column": 2 - }, - "end": { - "line": 60, - "column": 11 - } - }, - "9": { - "start": { - "line": 62, - "column": 0 - }, - "end": { - "line": 62, - "column": 12 - } - }, - "10": { - "start": { - "line": 63, - "column": 0 - }, - "end": { - "line": 63, - "column": 25 - } - }, - "11": { - "start": { - "line": 64, - "column": 0 - }, - "end": { - "line": 64, - "column": 33 - } - }, - "12": { - "start": { - "line": 67, - "column": 0 - }, - "end": { - "line": 67, - "column": 27 - } - }, - "13": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 84, - "column": 1 - } - }, - "14": { - "start": { - "line": 69, - "column": 2 - }, - "end": { - "line": 69, - "column": 39 - } - }, - "15": { - "start": { - "line": 70, - "column": 2 - }, - "end": { - "line": 70, - "column": 39 - } - }, - "16": { - "start": { - "line": 71, - "column": 2 - }, - "end": { - "line": 83, - "column": 5 - } - }, - "17": { - "start": { - "line": 75, - "column": 4 - }, - "end": { - "line": 75, - "column": 169 - } - }, - "18": { - "start": { - "line": 76, - "column": 4 - }, - "end": { - "line": 82, - "column": 7 - } - }, - "19": { - "start": { - "line": 77, - "column": 6 - }, - "end": { - "line": 78, - "column": 15 - } - }, - "20": { - "start": { - "line": 78, - "column": 8 - }, - "end": { - "line": 78, - "column": 15 - } - }, - "21": { - "start": { - "line": 79, - "column": 32 - }, - "end": { - "line": 79, - "column": 115 - } - }, - "22": { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 81, - "column": 54 - } - }, - "23": { - "start": { - "line": 81, - "column": 8 - }, - "end": { - "line": 81, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Navbar", - "decl": { - "start": { - "line": 21, - "column": 9 - }, - "end": { - "line": 21, - "column": 15 - } - }, - "loc": { - "start": { - "line": 24, - "column": 3 - }, - "end": { - "line": 61, - "column": 1 - } - }, - "line": 24 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 74, - "column": 9 - }, - "end": { - "line": 74, - "column": 10 - } - }, - "loc": { - "start": { - "line": 74, - "column": 29 - }, - "end": { - "line": 83, - "column": 3 - } - }, - "line": 74 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 76, - "column": 27 - }, - "end": { - "line": 76, - "column": 28 - } - }, - "loc": { - "start": { - "line": 76, - "column": 44 - }, - "end": { - "line": 82, - "column": 5 - } - }, - "line": 76 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 84, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 68, - "column": 0 - }, - "end": { - "line": 84, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 68 - }, - "3": { - "loc": { - "start": { - "line": 77, - "column": 6 - }, - "end": { - "line": 78, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 77, - "column": 6 - }, - "end": { - "line": 78, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 77 - }, - "4": { - "loc": { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 81, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 80, - "column": 6 - }, - "end": { - "line": 81, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 80 - } - }, - "s": { - "0": 8, - "1": 8, - "2": 0, - "3": 8, - "4": 8, - "5": 8, - "6": 8, - "7": 8, - "8": 18, - "9": 8, - "10": 8, - "11": 8, - "12": 8, - "13": 8, - "14": 8, - "15": 8, - "16": 8, - "17": 8, - "18": 8, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0 - }, - "f": { - "0": 8, - "1": 18, - "2": 8, - "3": 0 - }, - "b": { - "0": [8, 0], - "1": [0, 8], - "2": [8, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAsBU;AAtBV,2BAA2B;AAAQ;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACpD,SAASA,WAAW;AACpB,SAASC,sBAAsB;AAC/B,SAASC,iBAAiB;AAE1B,SAASC,kBAAkB;AAY3B,SAASC,OAAO;AAAA,EAAEC;AAAAA,EAAOC;AAAyC,GAAG;AACnE,SACE,uBAAC,YAAS,kBAAgB,MAAC,IAAG,SAAQ,QAAO,MAAK,OAAM,OACtD,iCAAC,aACC;AAAA,2BAAC,SAAS,OAAT,EAAe,MAAMD,MAAME,MAC1B;AAAA,6BAAC,SAAI,OAAM,MAAK,QAAO,MAAK,KAAKF,MAAMG,YAAY,KAAI,sBAAvD;AAAA;AAAA;AAAA;AAAA,aAAyE;AAAA,MACxEH,MAAMI;AAAAA,SAFT;AAAA;AAAA;AAAA;AAAA,WAGA;AAAA,IACA,uBAAC,SAAS,QAAT,EAAgB,iBAAc,2BAA/B;AAAA;AAAA;AAAA;AAAA,WAAsD;AAAA,IACtD,uBAAC,SAAS,UAAT,EAAkB,IAAG,yBACpB,iCAAC,OAAKH,YAAN;AAAA;AAAA;AAAA;AAAA,WAAe,KADjB;AAAA;AAAA;AAAA;AAAA,WAEA;AAAA,OARF;AAAA;AAAA;AAAA;AAAA,SASA,KAVF;AAAA;AAAA;AAAA;AAAA,SAWA;AAEJ;AAACI,KAfQN;AAiBTA,OAAOO,OAAOR;AACdC,OAAOQ,WAAWX;AAElB,SAASG;AAAQ;AAAAS", - "names": [ - "Nav", - "NavbarDropdown", - "Container", - "NavbarLink", - "Navbar", - "brand", - "children", - "href", - "logoImgSrc", - "title", - "_c", - "Link", - "Dropdown", - "$RefreshReg$" - ], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/navbar/Navbar.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "75e5759e8eb87130aa43da7345b7ed4ecae2fcab" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 141 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 11 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 26 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 167 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Table", - "decl": { - "start": { - "line": 18, - "column": 16 - }, - "end": { - "line": 18, - "column": 21 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 4, - "1": 4, - "2": 0, - "3": 4, - "4": 4, - "5": 4, - "6": 4, - "7": 4, - "8": 4, - "9": 4, - "10": 4, - "11": 4, - "12": 4, - "13": 4, - "14": 4, - "15": 4, - "16": 4, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 4, - "1": 4, - "2": 4, - "3": 0 - }, - "b": { - "0": [4, 0], - "1": [0, 4], - "2": [4, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAMI;AANJ,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,SAASC,eAAe;AACjC,OAAOC,YAAY;AAEZ,gBAASF,MAAM;AAAA,EAAEG;AAA4B,GAAG;AACrD,SACE,uBAAC,WAAQ,SAAO,MAAC,UAAQ,MAAC,WAAWD,OAAOE,OACzCD,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACE,KANeL;AAAK;AAAAM", - "names": ["Table", "TableBS", "styles", "children", "table", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/table/Table.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "b3d156e18395a90e6c5f3859cf6215dee74af63f" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 138 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 9 - } - }, - "10": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 30, - "column": 24 - } - }, - "11": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "12": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "13": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 33, - "column": 39 - } - }, - "14": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 46, - "column": 5 - } - }, - "15": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 38, - "column": 164 - } - }, - "16": { - "start": { - "line": 39, - "column": 4 - }, - "end": { - "line": 45, - "column": 7 - } - }, - "17": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "18": { - "start": { - "line": 41, - "column": 8 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "19": { - "start": { - "line": 42, - "column": 32 - }, - "end": { - "line": 42, - "column": 115 - } - }, - "20": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "21": { - "start": { - "line": 44, - "column": 8 - }, - "end": { - "line": 44, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Tab", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 19 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 37, - "column": 9 - }, - "end": { - "line": 37, - "column": 10 - } - }, - "loc": { - "start": { - "line": 37, - "column": 29 - }, - "end": { - "line": 46, - "column": 3 - } - }, - "line": 37 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 39, - "column": 27 - }, - "end": { - "line": 39, - "column": 28 - } - }, - "loc": { - "start": { - "line": 39, - "column": 44 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "line": 39 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 31, - "column": 0 - }, - "end": { - "line": 47, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 31 - }, - "3": { - "loc": { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 40, - "column": 6 - }, - "end": { - "line": 41, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 40 - }, - "4": { - "loc": { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 43, - "column": 6 - }, - "end": { - "line": 44, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 43 - } - }, - "s": { - "0": 6, - "1": 6, - "2": 0, - "3": 6, - "4": 6, - "5": 6, - "6": 6, - "7": 6, - "8": 0, - "9": 6, - "10": 6, - "11": 6, - "12": 6, - "13": 6, - "14": 6, - "15": 6, - "16": 6, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 6, - "1": 0, - "2": 6, - "3": 0 - }, - "b": { - "0": [6, 0], - "1": [0, 6], - "2": [6, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AAUI;AAVJ,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,OAAOC,aAAa;AAOtB,gBAASD,IAAI;AAAA,EAAEE;AAAAA,EAAOC;AAAAA,EAAUC;AAAsC,GAAG;AAC9E,SACE,uBAAC,SAAM,OAAc,UAClBA,YADH;AAAA;AAAA;AAAA;AAAA,SAEA;AAEJ;AAACC,KANeL;AAAG;AAAAM", - "names": ["Tab", "TabBS", "title", "eventKey", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tab.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "eb50ddc066a18343f25bb8cf5f2b8d433740e2a1" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 139 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 22, - "column": 2 - }, - "end": { - "line": 26, - "column": 11 - } - }, - "9": { - "start": { - "line": 28, - "column": 0 - }, - "end": { - "line": 28, - "column": 10 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 15 - } - }, - "11": { - "start": { - "line": 32, - "column": 0 - }, - "end": { - "line": 32, - "column": 25 - } - }, - "12": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 49, - "column": 1 - } - }, - "13": { - "start": { - "line": 34, - "column": 2 - }, - "end": { - "line": 34, - "column": 39 - } - }, - "14": { - "start": { - "line": 35, - "column": 2 - }, - "end": { - "line": 35, - "column": 39 - } - }, - "15": { - "start": { - "line": 36, - "column": 2 - }, - "end": { - "line": 48, - "column": 5 - } - }, - "16": { - "start": { - "line": 40, - "column": 4 - }, - "end": { - "line": 40, - "column": 165 - } - }, - "17": { - "start": { - "line": 41, - "column": 4 - }, - "end": { - "line": 47, - "column": 7 - } - }, - "18": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 15 - } - }, - "19": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 15 - } - }, - "20": { - "start": { - "line": 44, - "column": 32 - }, - "end": { - "line": 44, - "column": 115 - } - }, - "21": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 54 - } - }, - "22": { - "start": { - "line": 46, - "column": 8 - }, - "end": { - "line": 46, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "Tabs", - "decl": { - "start": { - "line": 18, - "column": 9 - }, - "end": { - "line": 18, - "column": 13 - } - }, - "loc": { - "start": { - "line": 21, - "column": 3 - }, - "end": { - "line": 27, - "column": 1 - } - }, - "line": 21 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 39, - "column": 9 - }, - "end": { - "line": 39, - "column": 10 - } - }, - "loc": { - "start": { - "line": 39, - "column": 29 - }, - "end": { - "line": 48, - "column": 3 - } - }, - "line": 39 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 41, - "column": 27 - }, - "end": { - "line": 41, - "column": 28 - } - }, - "loc": { - "start": { - "line": 41, - "column": 44 - }, - "end": { - "line": 47, - "column": 5 - } - }, - "line": 41 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 49, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 33, - "column": 0 - }, - "end": { - "line": 49, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 33 - }, - "3": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - }, - "4": { - "loc": { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 45, - "column": 6 - }, - "end": { - "line": 46, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 45 - } - }, - "s": { - "0": 6, - "1": 6, - "2": 0, - "3": 6, - "4": 6, - "5": 6, - "6": 6, - "7": 6, - "8": 10, - "9": 6, - "10": 6, - "11": 6, - "12": 6, - "13": 6, - "14": 6, - "15": 6, - "16": 6, - "17": 6, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0 - }, - "f": { - "0": 6, - "1": 10, - "2": 6, - "3": 0 - }, - "b": { - "0": [6, 0], - "1": [0, 6], - "2": [6, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAA0B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACzC,SAASA,WAAW;AACpB,SAASC,QAAQC,cAAc;AAM/B,SAASD,KAAK;AAAA,EAAEE;AAAAA,EAAkBC;AAAuC,GAAG;AAC1E,SAAO,uBAAC,UAAO,kBAAqCA,YAA7C;AAAA;AAAA;AAAA;AAAA,SAAsD;AAC/D;AAACC,KAFQJ;AAITA,KAAKD,MAAMA;AAEX,SAASC;AAAM;AAAAK", - "names": ["Tab", "Tabs", "TabsBS", "defaultActiveKey", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/tabs/Tabs.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "c4bd44e44bb2d037d4ff06341cc274a505319413" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx", - "statementMap": { - "0": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "1": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "2": { - "start": { - "line": 7, - "column": 4 - }, - "end": { - "line": 7, - "column": 165 - } - }, - "3": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 39 - } - }, - "4": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 39 - } - }, - "5": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 13, - "column": 4 - } - }, - "6": { - "start": { - "line": 12, - "column": 4 - }, - "end": { - "line": 12, - "column": 185 - } - }, - "7": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 75 - } - }, - "8": { - "start": { - "line": 21, - "column": 2 - }, - "end": { - "line": 25, - "column": 11 - } - }, - "9": { - "start": { - "line": 27, - "column": 0 - }, - "end": { - "line": 27, - "column": 24 - } - }, - "10": { - "start": { - "line": 29, - "column": 0 - }, - "end": { - "line": 29, - "column": 39 - } - }, - "11": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "12": { - "start": { - "line": 31, - "column": 2 - }, - "end": { - "line": 31, - "column": 39 - } - }, - "13": { - "start": { - "line": 32, - "column": 2 - }, - "end": { - "line": 32, - "column": 39 - } - }, - "14": { - "start": { - "line": 33, - "column": 2 - }, - "end": { - "line": 45, - "column": 5 - } - }, - "15": { - "start": { - "line": 37, - "column": 4 - }, - "end": { - "line": 37, - "column": 211 - } - }, - "16": { - "start": { - "line": 38, - "column": 4 - }, - "end": { - "line": 44, - "column": 7 - } - }, - "17": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "18": { - "start": { - "line": 40, - "column": 8 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "19": { - "start": { - "line": 41, - "column": 32 - }, - "end": { - "line": 41, - "column": 115 - } - }, - "20": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "21": { - "start": { - "line": 43, - "column": 8 - }, - "end": { - "line": 43, - "column": 54 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 11, - "column": 24 - }, - "end": { - "line": 11, - "column": 25 - } - }, - "loc": { - "start": { - "line": 11, - "column": 38 - }, - "end": { - "line": 13, - "column": 3 - } - }, - "line": 11 - }, - "1": { - "name": "DropdownButtonItem", - "decl": { - "start": { - "line": 17, - "column": 16 - }, - "end": { - "line": 17, - "column": 34 - } - }, - "loc": { - "start": { - "line": 20, - "column": 3 - }, - "end": { - "line": 26, - "column": 1 - } - }, - "line": 20 - }, - "2": { - "name": "(anonymous_2)", - "decl": { - "start": { - "line": 36, - "column": 9 - }, - "end": { - "line": 36, - "column": 10 - } - }, - "loc": { - "start": { - "line": 36, - "column": 29 - }, - "end": { - "line": 45, - "column": 3 - } - }, - "line": 36 - }, - "3": { - "name": "(anonymous_3)", - "decl": { - "start": { - "line": 38, - "column": 27 - }, - "end": { - "line": 38, - "column": 28 - } - }, - "loc": { - "start": { - "line": 38, - "column": 44 - }, - "end": { - "line": 44, - "column": 5 - } - }, - "line": 38 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 5, - "column": 0 - }, - "end": { - "line": 15, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 5 - }, - "1": { - "loc": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 8, - "column": 3 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 6 - }, - "2": { - "loc": { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 30, - "column": 0 - }, - "end": { - "line": 46, - "column": 1 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 30 - }, - "3": { - "loc": { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 39, - "column": 6 - }, - "end": { - "line": 40, - "column": 15 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 39 - }, - "4": { - "loc": { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - "type": "if", - "locations": [ - { - "start": { - "line": 42, - "column": 6 - }, - "end": { - "line": 43, - "column": 54 - } - }, - { - "start": {}, - "end": {} - } - ], - "line": 42 - } - }, - "s": { - "0": 6, - "1": 6, - "2": 0, - "3": 6, - "4": 6, - "5": 6, - "6": 6, - "7": 6, - "8": 10, - "9": 6, - "10": 6, - "11": 6, - "12": 6, - "13": 6, - "14": 6, - "15": 6, - "16": 6, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0 - }, - "f": { - "0": 6, - "1": 10, - "2": 6, - "3": 0 - }, - "b": { - "0": [6, 0], - "1": [0, 6], - "2": [6, 0], - "3": [0, 0], - "4": [0, 0] - }, - "inputSourceMap": { - "version": 3, - "mappings": "AASS;AATT,2BAAqBA;AAAkB;AAAiB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQjD,gBAASC,mBAAmB;AAAA,EAAEC;AAAAA,EAAMC;AAA4B,GAAG;AACxE,SAAO,uBAAC,WAAW,MAAX,EAAgB,MAAaA,YAA9B;AAAA;AAAA;AAAA;AAAA,SAAuC;AAChD;AAACC,KAFeH;AAAkB;AAAAI", - "names": ["DropdownBS", "DropdownButtonItem", "href", "children", "_c", "$RefreshReg$"], - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx" - ], - "file": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/dropdown-button/dropdown-button-item/DropdownButtonItem.tsx" - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "3046ab81c1cfd74934774f62c455d230599c2ac9" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts", - "statementMap": { - "0": { - "start": { - "line": 1, - "column": 34 - }, - "end": { - "line": 18, - "column": 14 - } - }, - "1": { - "start": { - "line": 2, - "column": 2 - }, - "end": { - "line": 2, - "column": 32 - } - }, - "2": { - "start": { - "line": 3, - "column": 2 - }, - "end": { - "line": 3, - "column": 32 - } - }, - "3": { - "start": { - "line": 4, - "column": 2 - }, - "end": { - "line": 4, - "column": 30 - } - }, - "4": { - "start": { - "line": 5, - "column": 2 - }, - "end": { - "line": 5, - "column": 42 - } - }, - "5": { - "start": { - "line": 6, - "column": 2 - }, - "end": { - "line": 6, - "column": 36 - } - }, - "6": { - "start": { - "line": 7, - "column": 2 - }, - "end": { - "line": 7, - "column": 38 - } - }, - "7": { - "start": { - "line": 8, - "column": 2 - }, - "end": { - "line": 8, - "column": 30 - } - }, - "8": { - "start": { - "line": 9, - "column": 2 - }, - "end": { - "line": 9, - "column": 36 - } - }, - "9": { - "start": { - "line": 10, - "column": 2 - }, - "end": { - "line": 10, - "column": 32 - } - }, - "10": { - "start": { - "line": 11, - "column": 2 - }, - "end": { - "line": 11, - "column": 36 - } - }, - "11": { - "start": { - "line": 12, - "column": 2 - }, - "end": { - "line": 12, - "column": 32 - } - }, - "12": { - "start": { - "line": 13, - "column": 2 - }, - "end": { - "line": 13, - "column": 36 - } - }, - "13": { - "start": { - "line": 14, - "column": 2 - }, - "end": { - "line": 14, - "column": 36 - } - }, - "14": { - "start": { - "line": 15, - "column": 2 - }, - "end": { - "line": 15, - "column": 34 - } - }, - "15": { - "start": { - "line": 16, - "column": 2 - }, - "end": { - "line": 16, - "column": 32 - } - }, - "16": { - "start": { - "line": 17, - "column": 2 - }, - "end": { - "line": 17, - "column": 15 - } - } - }, - "fnMap": { - "0": { - "name": "(anonymous_0)", - "decl": { - "start": { - "line": 1, - "column": 35 - }, - "end": { - "line": 1, - "column": 36 - } - }, - "loc": { - "start": { - "line": 1, - "column": 46 - }, - "end": { - "line": 18, - "column": 1 - } - }, - "line": 1 - } - }, - "branchMap": { - "0": { - "loc": { - "start": { - "line": 18, - "column": 3 - }, - "end": { - "line": 18, - "column": 13 - } - }, - "type": "binary-expr", - "locations": [ - { - "start": { - "line": 18, - "column": 3 - }, - "end": { - "line": 18, - "column": 7 - } - }, - { - "start": { - "line": 18, - "column": 11 - }, - "end": { - "line": 18, - "column": 13 - } - } - ], - "line": 18 - } - }, - "s": { - "0": 12, - "1": 12, - "2": 12, - "3": 12, - "4": 12, - "5": 12, - "6": 12, - "7": 12, - "8": 12, - "9": 12, - "10": 12, - "11": 12, - "12": 12, - "13": 12, - "14": 12, - "15": 12, - "16": 12 - }, - "f": { - "0": 12 - }, - "b": { - "0": [12, 12] - }, - "inputSourceMap": { - "version": 3, - "sources": [ - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/Icon.enum.ts" - ], - "mappings": "AAAO,WAAK,OAAL,kBAAKA,UAAL;AACL,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,gBAAa;AACb,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,cAAW;AACX,EAAAA,MAAA,UAAO;AACP,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,WAAQ;AACR,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,aAAU;AACV,EAAAA,MAAA,YAAS;AACT,EAAAA,MAAA,WAAQ;AAfE,SAAAA;AAAA,GAAA;", - "names": ["Icon"] - }, - "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", - "hash": "875c90456c27fc75e15c5fc89a86b1f34a8eedce" - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertVariant.ts": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/alert/AlertVariant.ts", - "statementMap": {}, - "fnMap": {}, - "branchMap": {}, - "s": {}, - "f": {}, - "b": {} - }, - "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonToolbar.tsx": { - "path": "/Users/melina/GitHub/dataverse-frontend/packages/design-system/src/lib/components/button-group/ButtonToolbar.tsx", - "statementMap": {}, - "fnMap": {}, - "branchMap": {}, - "s": {}, - "f": {}, - "b": {} - } -} From 3d7e8e83caf7c38b7eea2f34de7b3a37507e4074 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Mon, 15 May 2023 16:43:49 +0200 Subject: [PATCH 18/24] fix(.env): typo in backend_url --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index 72ded949d..d32cbbb03 100644 --- a/.env +++ b/.env @@ -1 +1 @@ -VITE_DATAVERSE_BACKEND_URL=http://http://localhost:8000 +VITE_DATAVERSE_BACKEND_URL=http://localhost:8000 From 5659f050de3bc1c37246a3536f62a28dbae9337b Mon Sep 17 00:00:00 2001 From: MellyGray Date: Tue, 16 May 2023 09:52:20 +0200 Subject: [PATCH 19/24] fix(README): update Storybook ports --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d558f95af..cd13c6909 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,11 @@ Launches the prettier formatter. We recommend you to configure your IDE to run p ### `npm run storybook` Runs the Storybook in the development mode. -Open [http://localhost:6006](http://localhost:6006) to view it in your browser. + +There are 2 Storybook instances, one for the Design System and one for the Dataverse Frontend. + +Open [http://localhost:6006](http://localhost:6006) to view the Dataverse Frontend Storybook in your browser. +Open [http://localhost:6007](http://localhost:6007) to view the Design System Storybook in your browser. ## Local development environment From bd45ca2377fd924aedfd01b21702a8d055fc6b29 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Tue, 16 May 2023 10:03:51 +0200 Subject: [PATCH 20/24] feat(README): add change in the style guide --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cd13c6909..1d330c684 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Launches the prettier formatter. We recommend you to configure your IDE to run p ### `npm run storybook` -Runs the Storybook in the development mode. +Runs the Storybook in the development mode. There are 2 Storybook instances, one for the Design System and one for the Dataverse Frontend. @@ -170,3 +170,9 @@ A base path for the frontend application can be established on the remote server ### Links We added the underline to the links to make them accessible. + +### File Label + +Now we are using Bootstrap with a theme, so there is only one definition for the secondary color. Since Bootstrap applies +the secondary color to the labels automatically, the color of the File label is now the global secondary color which is +a lighter sade of grey than what it used to be. From 1d5bb86756fcef6f4656a86081e0ab49f8a7ebc9 Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Tue, 16 May 2023 09:14:12 -0400 Subject: [PATCH 21/24] clean up Changes from the Style Guide #78 --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1d330c684..bdd59301b 100644 --- a/README.md +++ b/README.md @@ -165,14 +165,16 @@ It is important that the remote instance is correctly pre-configured, with the P A base path for the frontend application can be established on the remote server by setting the corresponding field in the workflow inputs. This mechanism prevents conflicts between the frontend application and any pre-existing deployed application running on Payara, which can potentially be a Dataverse backend. This way, only the routes with the base path included will redirect to the frontend application. -## Changes in the Style Guide +## Changes from the Style Guide + +The design system and frontend in this repo are inspired by the Dataverse Project [Style Guide](https://guides.dataverse.org/en/latest/style/index.html), but the following changes have been made, especially for accessibility. ### Links -We added the underline to the links to make them accessible. +We added an underline to links to make them accessible. -### File Label +### File label Now we are using Bootstrap with a theme, so there is only one definition for the secondary color. Since Bootstrap applies -the secondary color to the labels automatically, the color of the File label is now the global secondary color which is -a lighter sade of grey than what it used to be. +the secondary color to the labels automatically, the color of the file label is now the global secondary color which is +a lighter shade of grey than what it used to be. From da8ed00e5e7c05af121db12d7f57125841152dbb Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Tue, 16 May 2023 09:26:18 -0400 Subject: [PATCH 22/24] change to Dataverse Title to be more realistic #78 --- .../infrastructure/repositories/DatasetJSDataverseRepository.ts | 2 +- src/stories/dataset/Dataset.stories.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dataset/infrastructure/repositories/DatasetJSDataverseRepository.ts b/src/dataset/infrastructure/repositories/DatasetJSDataverseRepository.ts index 0a9e1db81..3971f5ac7 100644 --- a/src/dataset/infrastructure/repositories/DatasetJSDataverseRepository.ts +++ b/src/dataset/infrastructure/repositories/DatasetJSDataverseRepository.ts @@ -9,7 +9,7 @@ export class DatasetJSDataverseRepository implements DatasetRepository { setTimeout(() => { resolve({ id: id, - title: 'Dataset title', + title: 'Dataset Title', labels: [ { value: 'Version 1.0', semanticMeaning: LabelSemanticMeaning.FILE }, { value: 'Draft', semanticMeaning: LabelSemanticMeaning.DATASET } diff --git a/src/stories/dataset/Dataset.stories.tsx b/src/stories/dataset/Dataset.stories.tsx index 6fcbcc23a..92e121990 100644 --- a/src/stories/dataset/Dataset.stories.tsx +++ b/src/stories/dataset/Dataset.stories.tsx @@ -22,7 +22,7 @@ class DatasetMockRepository implements DatasetRepository { setTimeout(() => { resolve({ id: id, - title: 'Dataset title', + title: 'Dataset Title', labels: [ { value: 'Version 1.0', semanticMeaning: LabelSemanticMeaning.FILE }, { value: 'Draft', semanticMeaning: LabelSemanticMeaning.DATASET } From 35d71777e0b76f110541170a1c45dc63da7fa349 Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Tue, 16 May 2023 09:30:15 -0400 Subject: [PATCH 23/24] fix test:unit command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bdd59301b..71afa3c01 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Open [http://localhost:5173](http://localhost:5173) to view it in your browser. The page will reload when you make changes. You may also see any lint errors in the console. -### `npm test:unit` +### `npm run test:unit` Launches the test runner for the unit tests in the interactive watch mode. If you prefer to see the tests executing in cypress you can run `npm run cy:open-unit` From 5291c383641e0f82dbdc21a663eb82d17b343bf2 Mon Sep 17 00:00:00 2001 From: MellyGray Date: Tue, 16 May 2023 16:30:19 +0200 Subject: [PATCH 24/24] fix(e2e): missing configuration details --- .env | 2 +- cypress.config.ts | 2 +- package-lock.json | 67 +++++++++++++++++++++ package.json | 1 + tests/e2e/sections/dataset/Dataset.spec.tsx | 8 +-- 5 files changed, 71 insertions(+), 9 deletions(-) diff --git a/.env b/.env index d32cbbb03..a89b5fbf6 100644 --- a/.env +++ b/.env @@ -1 +1 @@ -VITE_DATAVERSE_BACKEND_URL=http://localhost:8000 +VITE_DATAVERSE_BACKEND_URL=https://demo.dataverse.org diff --git a/cypress.config.ts b/cypress.config.ts index a77d295a8..38d50e59f 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -5,7 +5,7 @@ import path from 'path' export default defineConfig({ video: false, e2e: { - baseUrl: 'http://localhost:5173', + baseUrl: 'http://localhost:5173/spa', specPattern: 'tests/e2e/**/*.spec.{js,jsx,ts,tsx}', screenshotOnRunFailure: false, video: false, diff --git a/package-lock.json b/package-lock.json index 85697e671..c0a974199 100644 --- a/package-lock.json +++ b/package-lock.json @@ -52,6 +52,7 @@ "@vitejs/plugin-react": "^3.1.0", "axe-playwright": "^1.2.3", "babel-plugin-named-exports-order": "^0.0.2", + "chai": "^4.3.7", "chai-as-promised": "^7.1.1", "concurrently": "^8.0.1", "cypress": "^12.5.1", @@ -8405,6 +8406,15 @@ "node": ">=0.8" } }, + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/assign-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", @@ -9590,6 +9600,24 @@ "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/chai": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz", + "integrity": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==", + "dev": true, + "dependencies": { + "assertion-error": "^1.1.0", + "check-error": "^1.0.2", + "deep-eql": "^4.1.2", + "get-func-name": "^2.0.0", + "loupe": "^2.3.1", + "pathval": "^1.1.1", + "type-detect": "^4.0.5" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/chai-as-promised": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-7.1.1.tgz", @@ -11032,6 +11060,18 @@ "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "dev": true }, + "node_modules/deep-eql": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", + "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", + "dev": true, + "dependencies": { + "type-detect": "^4.0.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/deep-equal": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", @@ -13658,6 +13698,15 @@ "node": "6.* || 8.* || >= 10.*" } }, + "node_modules/get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/get-intrinsic": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", @@ -20337,6 +20386,15 @@ "node": ">=0.10.0" } }, + "node_modules/loupe": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz", + "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==", + "dev": true, + "dependencies": { + "get-func-name": "^2.0.0" + } + }, "node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", @@ -22294,6 +22352,15 @@ "integrity": "sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==", "dev": true }, + "node_modules/pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/peek-stream": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", diff --git a/package.json b/package.json index 82b158d93..942d20ee7 100644 --- a/package.json +++ b/package.json @@ -110,6 +110,7 @@ "@vitejs/plugin-react": "^3.1.0", "axe-playwright": "^1.2.3", "babel-plugin-named-exports-order": "^0.0.2", + "chai": "^4.3.7", "chai-as-promised": "^7.1.1", "concurrently": "^8.0.1", "cypress": "^12.5.1", diff --git a/tests/e2e/sections/dataset/Dataset.spec.tsx b/tests/e2e/sections/dataset/Dataset.spec.tsx index b16fe76ad..5472d1137 100644 --- a/tests/e2e/sections/dataset/Dataset.spec.tsx +++ b/tests/e2e/sections/dataset/Dataset.spec.tsx @@ -1,17 +1,11 @@ describe('Dataset', () => { it('successfully loads a dataset when passing the id', () => { - cy.visit('/dataset/12345') + cy.visit('/datasets/12345') cy.findByRole('heading', { name: 'Dataset Title' }).should('exist') cy.findByText('Version 1.0').should('exist') cy.findByText('Draft').should('exist') }) - it('renders Hello Dataverse when no id is provided', () => { - cy.visit('/dataset') - - cy.findAllByText(/Hello Dataverse/i).should('exist') - }) - // TODO - Add test for when the dataset is not found and loading skeleton when the js-dataverse module is ready })