diff --git a/.github/workflows/publish-backoffice.yml b/.github/workflows/publish-backoffice.yml index 68d5c22c08..951400b8da 100644 --- a/.github/workflows/publish-backoffice.yml +++ b/.github/workflows/publish-backoffice.yml @@ -9,8 +9,11 @@ on: branches: - dev - test - - staging - prod + - staging + - sb + - demo + env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository_owner }}/backoffice diff --git a/.github/workflows/publish-headless-example.yml b/.github/workflows/publish-headless-example.yml index ba3502027a..2ff06ea775 100644 --- a/.github/workflows/publish-headless-example.yml +++ b/.github/workflows/publish-headless-example.yml @@ -11,6 +11,8 @@ on: - test - prod - staging + - sb + - demo env: REGISTRY: ghcr.io diff --git a/.github/workflows/publish-kyb-app.yml b/.github/workflows/publish-kyb-app.yml index 0d0d15f6fe..3e01c879a1 100644 --- a/.github/workflows/publish-kyb-app.yml +++ b/.github/workflows/publish-kyb-app.yml @@ -11,6 +11,8 @@ on: - test - prod - staging + - sb + - demo env: REGISTRY: ghcr.io diff --git a/.github/workflows/publish-websocket.yml b/.github/workflows/publish-websocket.yml index 3d26f2dc7e..2efc4e8f13 100644 --- a/.github/workflows/publish-websocket.yml +++ b/.github/workflows/publish-websocket.yml @@ -11,6 +11,8 @@ on: - test - prod - staging + - sb + - demo env: REGISTRY: ghcr.io diff --git a/.github/workflows/publish-workflows-dashboard.yml b/.github/workflows/publish-workflows-dashboard.yml index 7efe2163bd..9654b1bb6d 100644 --- a/.github/workflows/publish-workflows-dashboard.yml +++ b/.github/workflows/publish-workflows-dashboard.yml @@ -11,6 +11,8 @@ on: - test - prod - staging + - sb + - demo env: REGISTRY: ghcr.io diff --git a/.github/workflows/publish-workflows-service.yml b/.github/workflows/publish-workflows-service.yml index 254b4e6fbc..95ec504573 100644 --- a/.github/workflows/publish-workflows-service.yml +++ b/.github/workflows/publish-workflows-service.yml @@ -11,6 +11,8 @@ on: - test - prod - staging + - sb + - demo env: REGISTRY: ghcr.io @@ -37,7 +39,7 @@ jobs: uses: docker/setup-qemu-action@v2 with: platforms: 'arm64,arm' - + - name: Log in to the Container registry uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 with: @@ -50,7 +52,7 @@ jobs: run: | PACKAGE_VERSION=$(jq -r '.version' services/workflows-service/package.json) echo "::set-output name=version::$PACKAGE_VERSION" - + - name: Print the version run: echo "The version was ${{ steps.get_version.outputs.version }}" @@ -77,13 +79,13 @@ jobs: type=raw,value=commit-${{ github.sha }}-prod type=raw,value=${{ steps.get_version.outputs.version }}-prod type=raw,value=latest - + - name: Build and push Docker image for Prod if: github.ref == 'refs/heads/prod' uses: docker/build-push-action@v4 with: context: services/workflows-service - platforms: linux/amd64, linux/arm64 + platforms: linux/amd64 push: true tags: ${{ steps.prodmeta.outputs.tags }} @@ -92,6 +94,6 @@ jobs: uses: docker/build-push-action@v4 with: context: services/workflows-service - platforms: linux/amd64, linux/arm64 + platforms: linux/amd64 push: true tags: ${{ steps.branchmeta.outputs.tags }} diff --git a/apps/backoffice-v2/package.json b/apps/backoffice-v2/package.json index 7554d51542..d2c0cfe231 100644 --- a/apps/backoffice-v2/package.json +++ b/apps/backoffice-v2/package.json @@ -49,7 +49,7 @@ "build-storybook": "storybook build" }, "dependencies": { - "@ballerine/common": "0.5.19", + "@ballerine/common": "0.6.7", "@ballerine/ui": "0.2.10", "@ballerine/workflow-browser-sdk": "0.4.22", "@ballerine/workflow-node-sdk": "0.4.16", diff --git a/apps/backoffice-v2/src/pages/Entity/components/Details/interfaces.ts b/apps/backoffice-v2/src/pages/Entity/components/Details/interfaces.ts index 2d1d29f8a0..51624f3864 100644 --- a/apps/backoffice-v2/src/pages/Entity/components/Details/interfaces.ts +++ b/apps/backoffice-v2/src/pages/Entity/components/Details/interfaces.ts @@ -13,6 +13,8 @@ export interface IDetailsProps { dropdownOptions?: Array<{ label: string; value: string }>; dependantOn?: string; dependantValue?: string; + minimum?: string; + maximum?: string; }>; }; } diff --git a/apps/backoffice-v2/src/pages/Entity/components/EditableDetails/EditableDetails.tsx b/apps/backoffice-v2/src/pages/Entity/components/EditableDetails/EditableDetails.tsx index 2b7a0e82fe..881883d632 100644 --- a/apps/backoffice-v2/src/pages/Entity/components/EditableDetails/EditableDetails.tsx +++ b/apps/backoffice-v2/src/pages/Entity/components/EditableDetails/EditableDetails.tsx @@ -127,7 +127,18 @@ export const EditableDetails: FunctionComponent = ({ })} > {formData?.map( - ({ title, isEditable, type, format, pattern, value, valueAlias, dropdownOptions }) => { + ({ + title, + isEditable, + type, + format, + minimum, + maximum, + pattern, + value, + valueAlias, + dropdownOptions, + }) => { const originalValue = form.watch(title); const displayValue = (value: unknown) => { @@ -157,6 +168,16 @@ export const EditableDetails: FunctionComponent = ({ ].every(Boolean); const isSelect = isInput && !!dropdownOptions; + let inputType: string; + + if (!format) { + inputType = type === 'string' ? 'text' : type; + } else if (format === 'date-time') { + inputType = 'datetime-local'; + } else { + inputType = format; + } + return ( {toStartCase(camelCaseToSpace(title))} @@ -224,7 +245,10 @@ export const EditableDetails: FunctionComponent = ({ {isInput && !isSelect && ( ; }>; valueId: string; diff --git a/apps/backoffice-v2/src/pages/Entity/hooks/useTasks/useTasks.tsx b/apps/backoffice-v2/src/pages/Entity/hooks/useTasks/useTasks.tsx index 35218b162e..0e70822050 100644 --- a/apps/backoffice-v2/src/pages/Entity/hooks/useTasks/useTasks.tsx +++ b/apps/backoffice-v2/src/pages/Entity/hooks/useTasks/useTasks.tsx @@ -144,7 +144,16 @@ export const useTasks = ({ )?.map( ([ title, - { type, format, pattern, isEditable = true, dropdownOptions, value }, + { + type, + format, + pattern, + isEditable = true, + dropdownOptions, + value, + formatMinimum, + formatMaximum, + }, ]) => { const fieldValue = value || (properties?.[title] ?? ''); const isEditableDecision = isDoneWithRevision || !decision?.status; @@ -160,6 +169,8 @@ export const useTasks = ({ caseState.writeEnabled && getIsEditable(isEditable, title), dropdownOptions, + minimum: formatMinimum, + maximum: formatMaximum, }; }, ), diff --git a/deploy/helm/README.md b/deploy/helm/README.md index 69136f3004..bfe8ad9327 100644 --- a/deploy/helm/README.md +++ b/deploy/helm/README.md @@ -1,11 +1,22 @@ # Install ballerine using helm chart -Ballerine is a collection of services like workflow-service, backendoffice. +Ballerine is a collection of services like workflow-service, backoffice. In values.yaml we have sections to enable/disable them based on the necessity like below ``` bash workflowService: enabled: true +. +. + +backoffice: + enabled: true +. +. +headlessexample: + enabled: true +. +. ``` ## Prerequisites @@ -69,7 +80,8 @@ postgresql: ### Installing Ballerine helm chart ``` bash -helm install ballerine . -n ballerine --create-namespace -f values.yaml +helm dep build +helm install ballerine . -n ballerine --create-namespace -f example.values.yaml ``` ### Troubleshooting diff --git a/deploy/helm/example.values.yaml b/deploy/helm/example.values.yaml index 6ea06d69e7..4bb1fe7f2d 100644 --- a/deploy/helm/example.values.yaml +++ b/deploy/helm/example.values.yaml @@ -1,5 +1,8 @@ ## Postgres params postgresql: + image: + repository: sibedge/postgres-plv8 + tag: 15.3-3.1.7 enabled: true auth: username: admin @@ -26,7 +29,7 @@ backoffice: protocol: TCP image: registry: ghcr.io - repository: "pratapalakshmi/backoffice" + repository: "ballerine-io/backoffice" pullPolicy: Always pullSecrets: "" tag: "dev" @@ -45,7 +48,7 @@ headlessexample: protocol: TCP image: registry: ghcr.io - repository: "pratapalakshmi/headless-example" + repository: "ballerine-io/headless-example" pullPolicy: Always pullSecrets: "" tag: "dev" @@ -64,7 +67,7 @@ workflowsdashboard: protocol: TCP image: registry: ghcr.io - repository: "pratapalakshmi/workflows-dashboard" + repository: "ballerine-io/workflows-dashboard" pullPolicy: Always pullSecrets: "" tag: "dev" @@ -84,7 +87,7 @@ websocketService: protocol: TCP image: registry: ghcr.io - repository: "pratapalakshmi/websocket-service" + repository: "ballerine-io/websocket-service" pullPolicy: Always tag: "dev" applicationConfig: @@ -107,7 +110,7 @@ workflowService: protocol: TCP image: registry: ghcr.io - repository: "pratapalakshmi/workflows-service" + repository: "ballerine-io/workflows-service" pullPolicy: Always pullSecrets: "" tag: "dev" @@ -130,3 +133,4 @@ workflowService: WEBHOOK_URL: "" WEBHOOK_SECRET: "webhook_secret" WORKFLOW_DASHBOARD_CORS_ORIGIN: "http://localhost:5200" + KYB_EXAMPLE_CORS_ORIGIN: "http://localhost:5201" diff --git a/packages/blocks/CHANGELOG.md b/packages/blocks/CHANGELOG.md index 3ed0c41ef3..1e969e3368 100644 --- a/packages/blocks/CHANGELOG.md +++ b/packages/blocks/CHANGELOG.md @@ -1,5 +1,26 @@ # @ballerine/blocks +## 0.0.13 + +### Patch Changes + +- Updated dependencies [3f69ed94] + - @ballerine/common@0.6.0 + +## 0.0.12 + +### Patch Changes + +- Updated dependencies [204b5479] + - @ballerine/common@0.5.24 + +## 0.0.11 + +### Patch Changes + +- Updated dependencies [9d0c7f92] + - @ballerine/common@0.5.23 + ## 0.0.10 ### Patch Changes diff --git a/packages/blocks/package.json b/packages/blocks/package.json index 1656f555ca..f5d61112da 100644 --- a/packages/blocks/package.json +++ b/packages/blocks/package.json @@ -2,7 +2,7 @@ "private": false, "name": "@ballerine/blocks", "author": "Ballerine ", - "version": "0.0.10", + "version": "0.0.13", "description": "blocks", "module": "./dist/esm/index.js", "main": "./dist/cjs/index.js", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 4376a9e437..c2734b1c53 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,5 +1,17 @@ # @ballerine/common +## 0.5.24 + +### Patch Changes + +- 204b5479: updated document schemas + +## 0.5.23 + +### Patch Changes + +- 9d0c7f92: updated document schemas + ## 0.5.22 ### Patch Changes diff --git a/packages/common/package.json b/packages/common/package.json index 43fa838975..c63d76c351 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -2,7 +2,7 @@ "private": false, "name": "@ballerine/common", "author": "Ballerine ", - "version": "0.5.22", + "version": "0.6.7", "description": "common", "module": "./dist/esm/index.js", "main": "./dist/cjs/index.js", @@ -45,6 +45,7 @@ "@types/babel__core": "^7.20.0", "@types/fs-extra": "^11.0.1", "@types/json-logic-js": "^2.0.1", + "@types/json-schema": "^7.0.12", "@types/node": "^18.14.0", "@typescript-eslint/eslint-plugin": "^5.48.1", "@typescript-eslint/parser": "^5.48.1", @@ -75,6 +76,7 @@ "zod": "^3.21.4" }, "dependencies": { + "@sinclair/typebox": "^0.31.7", "ajv": "^8.12.0", "json-schema-to-zod": "^0.6.3" } diff --git a/packages/common/src/index.ts b/packages/common/src/index.ts index 341307d236..b5c2ba4378 100644 --- a/packages/common/src/index.ts +++ b/packages/common/src/index.ts @@ -17,7 +17,6 @@ export { raise, log, dump, - verifySignature, } from './utils'; export type { IErrorWithMessage } from './utils'; @@ -25,8 +24,7 @@ export type { Serializable, AnyRecord } from './types'; export type { DefaultContextSchema, TDefaultSchemaDocumentPage, TDocument } from './schemas'; export { - ghanaDocuments, - certificateOfResidenceGH, + getGhanaDocuments, getDocumentsByCountry, getDocumentId, defaultContextSchema, diff --git a/packages/common/src/schemas/documents/workflow/documents/schemas/CA.ts b/packages/common/src/schemas/documents/workflow/documents/schemas/CA.ts index c25ab5e60c..13b9622a07 100644 --- a/packages/common/src/schemas/documents/workflow/documents/schemas/CA.ts +++ b/packages/common/src/schemas/documents/workflow/documents/schemas/CA.ts @@ -1,6 +1,6 @@ import { TDocument } from '@/schemas'; -export const canadaDocuments: TDocument[] = [ +export const getCanadaDocuments = (): TDocument[] => [ { category: 'incorporation', type: 'pdf', diff --git a/packages/common/src/schemas/documents/workflow/documents/schemas/GH.ts b/packages/common/src/schemas/documents/workflow/documents/schemas/GH.ts index 02a823e81a..bb2b79fe59 100644 --- a/packages/common/src/schemas/documents/workflow/documents/schemas/GH.ts +++ b/packages/common/src/schemas/documents/workflow/documents/schemas/GH.ts @@ -1,871 +1,771 @@ import { TDocument } from '../types'; +import { Type } from '@sinclair/typebox'; const ghNationalIdNumber = '^$|^GHA-\\d{9}-\\d{1}$'; const alphaNumeric = '^[a-zA-Z0-9]*$'; -export const certificateOfResidenceGH: TDocument = { - category: 'proof_of_address', - type: 'water_bill', - issuer: { - type: 'local_authority', - city: 'Accra', - name: 'Accra Metropolitan Assembly', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - physicalAddress: { - type: 'string', - }, - amountDue: { - type: 'number', - }, - issuingDate: { - type: 'string', - format: 'date', - }, - }, - }, -}; +export const getGhanaDocuments = (): TDocument[] => { + const TypeAlphanumericString = Type.String({ pattern: '^[a-zA-Z0-9]*$' }); + const TypePastDate = Type.String({ + format: 'date', + formatMaximum: new Date().toISOString().split('T')[0], + }); + const TypeFutureDate = Type.String({ + format: 'date', + formatMinimum: new Date().toISOString().split('T')[0], + }); + const TypeNationalIdNumber = Type.String({ pattern: ghNationalIdNumber }); + const TypeStringAtLeastOneWord = Type.String({ minLength: 1 }); + const TypeStringEnum = (values: [...T]) => + Type.Unsafe({ + type: 'string', + enum: values, + }); -export const ghanaDocuments: TDocument[] = [ - { - category: 'financial_information', - type: 'mtn_statement', - issuer: { - country: 'GH', + return [ + // Financial Information + { + category: 'financial_information', + type: 'mtn_statement', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + msisdn: Type.String({ pattern: '^233[0-9]{9}$' }), + accountHolderName: TypeStringAtLeastOneWord, + from: Type.String({ format: 'date' }), + to: Type.String({ format: 'date' }), + timeRun: Type.String({ format: 'date-time' }), + }), + }, + { + category: 'financial_information', + type: 'bank_statement', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + issuer: TypeStringEnum([ + 'Absa Bank Ghana Limited', + 'Access Bank Ghana Plc', + 'Agricultural Development Bank of Ghana', + 'Bank of Africa Ghana Limited', + 'CalBank Limited', + 'Consolidated Bank Ghana Limited', + 'Ecobank Ghana Limited', + 'FBN Bank Ghana Limited', + 'Fidelity Bank Ghana Limited', + 'First Atlantic Bank Limited', + 'First National Bank Ghana', + 'GCB Bank Limited', + 'Guaranty Trust Bank Ghana Limited', + 'National Investment Bank Limited', + 'OmniBSIC Bank Ghana Limited', + 'Prudential Bank Limited', + 'Republic Bank Ghana', + 'Societe Generale Ghana Limited', + 'Stanbic Bank Ghana Limited', + 'Standard Chartered Bank Ghana Limited', + 'United Bank for Africa Ghana Limited', + 'Zenith Bank Ghana Limited', + ]), + printDate: Type.String({ format: 'date-time' }), + accountHolderName: TypeStringAtLeastOneWord, + from: Type.String({ format: 'date' }), + to: Type.String({ format: 'date' }), + accountNumber: Type.Optional(Type.String()), + }), }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - accountNameHolder: { - type: 'string', - }, - msisdn: { - type: 'string', - pattern: '^233[0-9]{9}$', - }, - from: { - type: 'string', - format: 'date', - }, - to: { - type: 'string', - format: 'date', - }, - timeRun: { - type: 'string', - format: 'date', - }, - accountHolderName: { - type: 'string', - }, - maxBalanceRecorded: { - type: 'number', + + // Proof of Address + { + category: 'proof_of_address', + type: 'water_bill', + issuer: { + type: 'local_authority', + country: 'GH', + }, + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + userAddress: { + type: 'string', + }, + physicalAddress: { + type: 'string', + }, + amountDue: { + type: 'number', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_address', - type: 'water_bill', - issuer: { - type: 'local_authority', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - physicalAddress: { - type: 'string', - }, - amountDue: { - type: 'number', - }, - issuingDate: { - type: 'string', - format: 'date', - }, + { + category: 'proof_of_address', + type: 'electricity_bill', + issuer: { + type: 'local_authority', + city: 'Accra', + name: 'Electricity Company of Ghana', + country: 'GH', }, - }, - }, - { - category: 'proof_of_address', - type: 'electricity_bill', - issuer: { - type: 'local_authority', - city: 'Accra', - name: 'Electricity Company of Ghana', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - physicalAddress: { - type: 'string', - }, - amountDue: { - type: 'number', - }, - issuingDate: { - type: 'string', - format: 'date', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + userAddress: { + type: 'string', + }, + physicalAddress: { + type: 'string', + }, + amountDue: { + type: 'number', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_address', - type: 'tenancy_agreement', - issuer: { - type: 'private', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - physicalAddress: { - type: 'string', - }, - rentalAmount: { - type: 'number', - }, - issuingDate: { - type: 'string', - format: 'date', - }, + { + category: 'proof_of_address', + type: 'tenancy_agreement', + issuer: { + type: 'private', + country: 'GH', }, - }, - }, - { - category: 'proof_of_employment', - type: 'payslip', - issuer: { - type: 'private', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - employeeName: { - type: 'string', - }, - position: { - type: 'string', - }, - salaryAmount: { - type: 'number', - }, - issuingDate: { - type: 'string', - format: 'date', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + userAddress: { + type: 'string', + }, + physicalAddress: { + type: 'string', + }, + rentalAmount: { + type: 'number', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_employment', - type: 'appointment_letter', - issuer: { - type: 'private', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - employeeName: { - type: 'string', - }, - position: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', - }, + { + category: 'proof_of_address', + type: 'bank_statement', + issuer: { + type: 'bank', + country: 'GH', }, - }, - }, - { - category: 'proof_of_address', - type: 'bank_statement', - issuer: { - type: 'bank', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - physicalAddress: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + userAddress: { + type: 'string', + }, + physicalAddress: { + type: 'string', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_address', - type: 'mortgage_statement', - issuer: { - type: 'bank', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - physicalAddress: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', - }, + { + category: 'proof_of_address', + type: 'mortgage_statement', + issuer: { + type: 'bank', + country: 'GH', }, - }, - }, - { - category: 'proof_of_address', - type: 'property_rate', - issuer: { - type: 'local_authority', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - physicalAddress: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + userAddress: { + type: 'string', + }, + physicalAddress: { + type: 'string', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_address', - type: 'birth_certificate', - issuer: { - type: 'government', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - birthPlace: { - type: 'string', - }, - dateOfBirth: { - type: 'string', - format: 'date', - }, - issuingDate: { - type: 'string', - format: 'date', - }, + { + category: 'proof_of_address', + type: 'property_rate', + issuer: { + type: 'local_authority', + country: 'GH', }, - }, - }, - { - category: 'proof_of_employment', - type: 'ssnit_pension_statement', - issuer: { - type: 'government', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - employeeName: { - type: 'string', - }, - employerName: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + userAddress: { + type: 'string', + }, + physicalAddress: { + type: 'string', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_employment', - type: 'introductory_letter', - issuer: { - type: 'private', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - employeeName: { - type: 'string', - }, - position: { - type: 'string', - }, - employerName: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', - }, + { + category: 'proof_of_address', + type: 'form_a', + issuer: { + type: 'government', + country: 'GH', }, - }, - }, - { - category: 'proof_of_employment', - type: 'form_a', - issuer: { - type: 'private', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - employeeName: { - type: 'string', - }, - position: { - type: 'string', - }, - employerName: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + userAddress: { + type: 'string', + }, + physicalAddress: { + type: 'string', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_address', - type: 'form_a', - issuer: { - type: 'government', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - physicalAddress: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', - }, + { + category: 'proof_of_address', + type: 'form_3', + issuer: { + type: 'government', + country: 'GH', }, - }, - }, - { - category: 'proof_of_employment', - type: 'form_3', - issuer: { - type: 'private', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - employeeName: { - type: 'string', - }, - position: { - type: 'string', - }, - employerName: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + userAddress: { + type: 'string', + }, + physicalAddress: { + type: 'string', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_address', - type: 'form_3', - issuer: { - type: 'government', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - physicalAddress: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', - }, + { + category: 'proof_of_address', + type: 'form_4', + issuer: { + type: 'government', + country: 'GH', }, - }, - }, - { - category: 'proof_of_address', - type: 'form_4', - issuer: { - type: 'government', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - userAddress: { - type: 'string', - }, - physicalAddress: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + userAddress: { + type: 'string', + }, + physicalAddress: { + type: 'string', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_employment', - type: 'form_4', - issuer: { - type: 'private', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { - nationalIdNumber: { - type: 'string', - pattern: ghNationalIdNumber, - }, - docNumber: { - type: 'string', - pattern: alphaNumeric, - }, - employeeName: { - type: 'string', - }, - position: { - type: 'string', - }, - employerName: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', + + // Proof of Employment + { + category: 'proof_of_employment', + type: 'payslip', + issuer: { + type: 'private', + country: 'GH', + }, + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + employeeName: { + type: 'string', + }, + position: { + type: 'string', + }, + salaryAmount: { + type: 'number', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_registration', - type: 'certificate_of_registration', - issuer: { - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - // required: ['companyName', 'taxIdNumber', 'registrationNumber'], - properties: { - companyName: { - type: 'string', - }, - taxIdNumber: { - type: 'string', - pattern: alphaNumeric, - }, - registrationNumber: { - type: 'string', - pattern: alphaNumeric, - }, - issuingDate: { - type: 'string', - format: 'date', - }, + { + category: 'proof_of_employment', + type: 'appointment_letter', + issuer: { + type: 'private', + country: 'GH', }, - }, - }, - { - category: 'proof_of_registration', - type: 'district_assembly_certificate', - issuer: { - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - // required: ['certificateNo', 'companyName'], - properties: { - certificateNo: { - type: 'string', - pattern: alphaNumeric, - }, - registrationNumber: { - type: 'string', - pattern: alphaNumeric, - }, - companyName: { - type: 'string', - }, - issuingDate: { - type: 'string', - format: 'date', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + employeeName: { + type: 'string', + }, + position: { + type: 'string', + }, + issuingDate: { + type: 'string', + format: 'date', + }, + salaryAmount: { + type: 'number', + }, }, }, }, - }, - { - category: 'proof_of_registration', - type: 'form_a', - issuer: { - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - // required: ['registrationNumber', 'taxIdNumber'], - properties: { - registrationNumber: { - type: 'string', - pattern: alphaNumeric, - }, - taxIdNumber: { - type: 'string', - pattern: alphaNumeric, + { + category: 'proof_of_employment', + type: 'ssnit_pension_statement', + issuer: { + type: 'government', + country: 'GH', + }, + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + employeeName: { + type: 'string', + }, + employerName: { + type: 'string', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'proof_of_registration', - type: 'shareholder_details', - issuer: { - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - // required: ['firstName', 'lastName'], - properties: { - firstName: { - type: 'string', - }, - middleName: { - type: 'string', - }, - lastName: { - type: 'string', + { + category: 'proof_of_employment', + type: 'introductory_letter', + issuer: { + type: 'private', + country: 'GH', + }, + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + employeeName: { + type: 'string', + }, + position: { + type: 'string', + }, + employerName: { + type: 'string', + }, + issuingDate: { + type: 'string', + format: 'date', + }, }, }, }, - }, - { - category: 'company_structure', - type: 'shareholders', - issuer: { - type: 'private', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { + { + category: 'proof_of_employment', + type: 'form_a', + issuer: { + type: 'private', + country: 'GH', + }, + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', properties: { - firstName: { + nationalIdNumber: { type: 'string', + pattern: ghNationalIdNumber, }, - middleName: { + docNumber: { type: 'string', + pattern: alphaNumeric, }, - lastName: { + employeeName: { + type: 'string', + }, + position: { + type: 'string', + }, + employerName: { + type: 'string', + }, + issuingDate: { type: 'string', + format: 'date', }, }, }, }, - }, - { - category: 'registration_document', - type: 'certificate_of_incorporation', - issuer: { - type: 'private', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - type: 'object', - properties: { + { + category: 'proof_of_employment', + type: 'form_3', + issuer: { + type: 'private', + country: 'GH', + }, + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', properties: { - companyName: { + nationalIdNumber: { type: 'string', + pattern: ghNationalIdNumber, }, - country: { + docNumber: { type: 'string', + pattern: alphaNumeric, }, - state: { + employeeName: { type: 'string', }, - vat: { + position: { type: 'string', }, - companyType: { + employerName: { type: 'string', }, - establishmentDate: { + issuingDate: { type: 'string', + format: 'date', }, }, }, }, - }, - { - category: 'proof_of_bank_account', - type: 'bank_statement', - issuer: { - type: 'private', - country: 'GH', - }, - issuingVersion: 1, - version: 1, - propertiesSchema: { - country: { - type: 'string', + { + category: 'proof_of_employment', + type: 'form_4', + issuer: { + type: 'private', + country: 'GH', }, - name: { - type: 'string', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + properties: { + nationalIdNumber: { + type: 'string', + pattern: ghNationalIdNumber, + }, + docNumber: { + type: 'string', + pattern: alphaNumeric, + }, + employeeName: { + type: 'string', + }, + position: { + type: 'string', + }, + employerName: { + type: 'string', + }, + issuingDate: { + type: 'string', + format: 'date', + }, + }, }, - holderName: { - type: 'string', + }, + + // Proof of Registration + { + category: 'proof_of_registration', + type: 'certificate_of_registration', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + taxIdNumber: TypeAlphanumericString, + registrationNumber: TypeAlphanumericString, + issueDate: TypePastDate, + }), + }, + { + category: 'proof_of_registration', + type: 'operating_permit', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + registrationNumber: Type.Optional(TypeAlphanumericString), + issueDate: TypePastDate, + expirationDate: TypeFutureDate, + }), + }, + { + category: 'proof_of_registration', + type: 'district_assembly_certificate', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + certificateNumber: TypeAlphanumericString, + businessName: TypeAlphanumericString, + registrationNumber: Type.Optional(TypeAlphanumericString), + issueDate: TypePastDate, + }), + }, + { + category: 'proof_of_registration', + type: 'form_a', + issuer: { + country: 'GH', + }, + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + required: ['registrationNumber', 'taxIdNumber'], + properties: { + registrationNumber: { + type: 'string', + pattern: alphaNumeric, + }, + taxIdNumber: { + type: 'string', + pattern: alphaNumeric, + }, + }, }, - accountNumber: { - type: 'string', + }, + { + category: 'proof_of_registration', + type: 'shareholder_details', + issuer: { + country: 'GH', }, - currency: { - type: 'string', + issuingVersion: 1, + version: 1, + propertiesSchema: { + type: 'object', + required: ['firstName', 'lastName'], + properties: { + firstName: { + type: 'string', + }, + middleName: { + type: 'string', + }, + lastName: { + type: 'string', + }, + }, }, }, - }, -]; + + // Proof of Ownership + { + category: 'proof_of_ownership', + type: 'form_a', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + registrationNumber: TypeAlphanumericString, + taxIdNumber: TypeAlphanumericString, + issueDate: TypePastDate, + firstName: Type.String(), + middleName: Type.Optional(Type.String()), + lastName: Type.String(), + dateOfBirth: TypePastDate, + nationalIdNumber: TypeNationalIdNumber, + }), + }, + { + category: 'proof_of_ownership', + type: 'permit', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + issueDate: TypePastDate, + }), + }, + { + category: 'proof_of_ownership', + type: 'property_rate', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + issueDate: TypePastDate, + }), + }, + ]; +}; diff --git a/packages/common/src/schemas/documents/workflow/documents/schemas/UG.ts b/packages/common/src/schemas/documents/workflow/documents/schemas/UG.ts new file mode 100644 index 0000000000..eae38dd30c --- /dev/null +++ b/packages/common/src/schemas/documents/workflow/documents/schemas/UG.ts @@ -0,0 +1,208 @@ +import { TDocument } from '@/schemas'; +import { Type } from '@sinclair/typebox'; + +export const getUgandaDocuments = (): TDocument[] => { + const TypeAlphanumericString = Type.String({ pattern: '^[a-zA-Z0-9]*$' }); + const TypePastDate = Type.String({ + format: 'date', + formatMaximum: new Date().toISOString().split('T')[0], + }); + const TypeStringEnum = (values: [...T]) => + Type.Unsafe({ + type: 'string', + enum: values, + }); + const TypeStringAtLeastOneWord = Type.String({ minLength: 1 }); + const TypeUgandaMobileNumber = Type.String({ pattern: '^256[0-9]{9}$' }); + + return [ + // Proof of Registration + { + category: 'proof_of_registration', + type: 'certificate_of_registration', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + registrationNumber: TypeAlphanumericString, + issueDate: TypePastDate, + }), + }, + { + category: 'proof_of_registration', + type: 'trade_license', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + registrationNumber: TypeAlphanumericString, + issuer: TypeStringEnum(['KCCA', 'Other']), + expirationDate: Type.Optional(TypePastDate), + }), + }, + { + category: 'proof_of_registration', + type: 'association_letter', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + isOwnerNameOnDocument: Type.Boolean(), + isValidIssuer: Type.Boolean(), + isDocumentStampedAndValid: Type.Boolean(), + issueDate: TypePastDate, + }), + }, + + // Business Ownership + { + category: 'business_ownership', + type: 'business_registration_form', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + registrationNumber: TypeAlphanumericString, + businessName: Type.String(), + taxIdNumber: Type.String(), + issueDate: TypePastDate, + ownerName: Type.String(), + }), + }, + + // Financial Statement + { + category: 'financial_information', + type: 'mtn_statement', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + dateOfStatement: Type.String({ format: 'date-time' }), + from: Type.String({ format: 'date' }), + to: Type.String({ format: 'date' }), + msisdn: TypeUgandaMobileNumber, + accountHolderName: TypeStringAtLeastOneWord, + }), + }, + { + category: 'financial_information', + type: 'airtel_statement', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + from: Type.String({ format: 'date' }), + to: Type.String({ format: 'date' }), + msisdn: TypeUgandaMobileNumber, + accountHolderName: TypeStringAtLeastOneWord, + }), + }, + { + category: 'financial_information', + type: 'bank_statement', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + bankName: TypeStringEnum([ + 'ABC Bank Uganda Limited', + 'Absa Bank Uganda Limited', + 'Bank of Africa Uganda Limited', + 'Bank of Baroda Uganda Limited', + 'Bank of India Uganda Limited', + 'Cairo Bank Uganda', + 'Centenary Bank', + 'Citibank Uganda', + 'DFCU Bank', + 'Diamond Trust Bank', + 'Ecobank Uganda', + 'Equity Bank Uganda Limited', + 'Exim Bank (Uganda)', + 'Finance Trust Bank', + 'Guaranty Trust Bank', + 'Housing Finance Bank', + 'I&M Bank Uganda', + 'KCB Bank Uganda Limited', + 'NCBA Bank Uganda', + 'Opportunity Bank Uganda Limited', + 'PostBank Uganda', + 'Stanbic Bank Uganda Limited', + 'Standard Chartered Uganda', + 'Tropical Bank', + 'United Bank for Africa', + 'Other', + ]), + printDate: Type.Optional(Type.String({ format: 'date' })), + from: Type.String({ format: 'date' }), + to: Type.String({ format: 'date' }), + accountHolderName: TypeStringAtLeastOneWord, + accountNumber: Type.Optional(Type.String()), + }), + }, + + // Proof of Address + { + category: 'proof_of_address', + type: 'water_bill', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + name: TypeStringAtLeastOneWord, + nationalIdNumber: Type.String(), + userAddress: Type.String(), + physicalAddress: Type.String(), + amountDue: Type.Number(), + }), + }, + { + category: 'proof_of_address', + type: 'electricity_bill', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + name: TypeStringAtLeastOneWord, + nationalIdNumber: Type.Optional(Type.String()), + userAddress: Type.String(), + physicalAddress: Type.String(), + amountDue: Type.Number(), + issueDate: TypePastDate, + }), + }, + + // Proof of Employment + { + category: 'proof_of_employment', + type: 'payslip', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + salaryAmount: Type.Number({ minimum: 1 }), + employerName: TypeStringAtLeastOneWord, + employeeId: Type.String(), + position: Type.String(), + issueDate: TypePastDate, + nationalIdNumber: Type.String(), + }), + }, + { + category: 'proof_of_employment', + type: 'appointment_letter', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + salaryAmount: Type.Optional(Type.Number({ minimum: 1 })), + employerName: TypeStringAtLeastOneWord, + nationalIdNumber: Type.String(), + position: Type.String(), + issueDate: TypePastDate, + }), + }, + ]; +}; diff --git a/packages/common/src/schemas/documents/workflow/documents/schemas/index.ts b/packages/common/src/schemas/documents/workflow/documents/schemas/index.ts index 8ae114d17d..a6a49c9480 100644 --- a/packages/common/src/schemas/documents/workflow/documents/schemas/index.ts +++ b/packages/common/src/schemas/documents/workflow/documents/schemas/index.ts @@ -1,16 +1,18 @@ -import { ghanaDocuments } from './GH'; +import { getGhanaDocuments } from './GH'; import { TDocument } from '../types'; import { countryCodes } from '@/countries'; import { DefaultContextSchema } from '@/schemas'; -import { canadaDocuments } from './CA'; +import { getCanadaDocuments } from './CA'; +import { getUgandaDocuments } from '@/schemas/documents/workflow/documents/schemas/UG'; -const documentIdsByCountry: Partial> = { - GH: ghanaDocuments, - CA: canadaDocuments, +const documentIdsByCountry: Partial TDocument[]>> = { + GH: getGhanaDocuments, + CA: getCanadaDocuments, + UG: getUgandaDocuments, }; export const getDocumentsByCountry = (countryCode: (typeof countryCodes)[number]): TDocument[] => { - return documentIdsByCountry[countryCode] || []; + return documentIdsByCountry[countryCode]?.() || []; }; export const getDocumentId = ( diff --git a/packages/common/src/schemas/documents/workflow/documents/types.ts b/packages/common/src/schemas/documents/workflow/documents/types.ts index 60189da314..64766b8792 100644 --- a/packages/common/src/schemas/documents/workflow/documents/types.ts +++ b/packages/common/src/schemas/documents/workflow/documents/types.ts @@ -1,5 +1,6 @@ -import { DefaultContextSchema } from '../../context'; +import { DefaultContextSchema } from '@/schemas'; +import { JSONSchema7 } from 'json-schema'; export type TDocument = Omit & { - propertiesSchema: any; + propertiesSchema: JSONSchema7; }; diff --git a/packages/common/src/schemas/index.ts b/packages/common/src/schemas/index.ts index c8066a7024..b6af8ae604 100644 --- a/packages/common/src/schemas/index.ts +++ b/packages/common/src/schemas/index.ts @@ -1,9 +1,6 @@ export { type DefaultContextSchema } from './documents/context'; export { type TDefaultSchemaDocumentPage } from './documents/default-context-page-schema'; export { defaultContextSchema } from './documents/default-context-schema'; -export { - ghanaDocuments, - certificateOfResidenceGH, -} from './documents/workflow/documents/schemas/GH'; +export { getGhanaDocuments } from './documents/workflow/documents/schemas/GH'; export { getDocumentsByCountry, getDocumentId } from './documents/workflow/documents/schemas/index'; export { type TDocument } from './documents/workflow/documents/types'; diff --git a/packages/common/src/types/any-record/any-record.ts b/packages/common/src/types/any-record/any-record.ts new file mode 100644 index 0000000000..6cabbc71bf --- /dev/null +++ b/packages/common/src/types/any-record/any-record.ts @@ -0,0 +1 @@ +export type AnyRecord = Record; diff --git a/packages/common/src/types/any-record/index.ts b/packages/common/src/types/any-record/index.ts new file mode 100644 index 0000000000..6845178874 --- /dev/null +++ b/packages/common/src/types/any-record/index.ts @@ -0,0 +1 @@ +export { AnyRecord } from './any-record'; diff --git a/packages/common/src/utils/index.ts b/packages/common/src/utils/index.ts index 5b8663012a..7e7fc4a5bd 100644 --- a/packages/common/src/utils/index.ts +++ b/packages/common/src/utils/index.ts @@ -17,4 +17,3 @@ export { raise } from './raise'; export { log } from './log'; export { dump } from './dump'; export { type IErrorWithMessage } from './is-error-with-message'; -export { verifySignature } from './verify-signature'; diff --git a/packages/config/cspell.base.cjs b/packages/config/cspell.base.cjs index 09609c05fd..7579101809 100644 --- a/packages/config/cspell.base.cjs +++ b/packages/config/cspell.base.cjs @@ -10,6 +10,7 @@ module.exports = { '[a-zA-Z0-9+/]{2,}={0,2}', ], words: [ + 'géné', 'Lilyan', 'Brockside', 'buhgdawe', diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 61c0c2c31f..8e64043844 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -61,8 +61,8 @@ importers: apps/backoffice-v2: dependencies: '@ballerine/common': - specifier: 0.5.19 - version: 0.5.19 + specifier: 0.6.7 + version: link:../../packages/common '@ballerine/ui': specifier: 0.2.10 version: link:../../packages/ui @@ -194,7 +194,7 @@ importers: version: 4.0.2(eslint@8.22.0) vite-plugin-terminal: specifier: ^1.1.0 - version: 1.1.0(vite@4.4.9) + version: 1.1.0(vite@4.4.6) zod: specifier: ^3.21.4 version: 3.21.4 @@ -228,7 +228,7 @@ importers: version: 7.0.0-rc.10(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) '@storybook/react-vite': specifier: ^7.0.0-rc.10 - version: 7.0.0-rc.10(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@4.4.9) + version: 7.0.0-rc.10(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@4.4.6) '@storybook/testing-library': specifier: ^0.0.14-next.1 version: 0.0.14-next.1 @@ -267,7 +267,7 @@ importers: version: 5.56.0(eslint@8.22.0)(typescript@4.9.5) '@vitejs/plugin-react-swc': specifier: ^3.0.1 - version: 3.2.0(vite@4.4.9) + version: 3.2.0(vite@4.4.6) autoprefixer: specifier: ^10.4.7 version: 10.4.14(postcss@8.4.21) @@ -312,7 +312,7 @@ importers: version: 7.0.0-rc.10 storybook-addon-react-router-v6: specifier: ^1.0.2 - version: 1.0.2(@storybook/blocks@7.0.0-rc.10)(@storybook/components@7.2.1)(@storybook/core-events@7.2.1)(@storybook/manager-api@7.2.1)(@storybook/preview-api@7.2.1)(@storybook/theming@7.2.1)(@storybook/types@7.2.1)(react-dom@18.2.0)(react-router-dom@6.11.2)(react-router@6.11.2)(react@18.2.0) + version: 1.0.2(@storybook/blocks@7.0.0-rc.10)(@storybook/components@7.1.0)(@storybook/core-events@7.1.0)(@storybook/manager-api@7.1.0)(@storybook/preview-api@7.1.0)(@storybook/theming@7.1.0)(@storybook/types@7.1.0)(react-dom@18.2.0)(react-router-dom@6.11.2)(react-router@6.11.2)(react@18.2.0) tailwindcss: specifier: ^3.2.4 version: 3.2.7(postcss@8.4.21)(ts-node@10.9.1) @@ -321,10 +321,10 @@ importers: version: 4.9.5 vite: specifier: ^4.3.9 - version: 4.4.9(@types/node@18.15.10)(less@4.2.0) + version: 4.4.6(@types/node@18.15.10)(less@4.1.3) vite-plugin-mkcert: specifier: ^1.16.0 - version: 1.16.0(vite@4.4.9) + version: 1.16.0(vite@4.4.6) vitest: specifier: ^0.29.8 version: 0.29.8 @@ -693,7 +693,7 @@ importers: devDependencies: '@tailwindcss/line-clamp': specifier: 0.4.4 - version: 0.4.4(tailwindcss@3.3.3) + version: 0.4.4(tailwindcss@3.3.2) '@types/lodash': specifier: ^4.14.191 version: 4.14.191 @@ -702,49 +702,49 @@ importers: version: 6.9.7 '@types/react': specifier: ^18.2.14 - version: 18.2.14 + version: 18.2.15 '@types/react-dom': specifier: ^18.2.6 - version: 18.2.6 + version: 18.2.7 '@types/uuid': specifier: ^9.0.2 version: 9.0.2 '@typescript-eslint/eslint-plugin': specifier: ^5.61.0 - version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.46.0)(typescript@5.1.6) + version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6) '@typescript-eslint/parser': specifier: ^5.61.0 - version: 5.61.0(eslint@8.46.0)(typescript@5.1.6) + version: 5.61.0(eslint@8.44.0)(typescript@5.1.6) '@vitejs/plugin-react': specifier: ^4.0.1 - version: 4.0.1(vite@4.4.9) + version: 4.0.1(vite@4.4.6) autoprefixer: specifier: 10.4.14 version: 10.4.14(postcss@8.4.27) eslint: specifier: ^8.44.0 - version: 8.46.0 + version: 8.44.0 eslint-plugin-react-hooks: specifier: ^4.6.0 - version: 4.6.0(eslint@8.46.0) + version: 4.6.0(eslint@8.44.0) eslint-plugin-react-refresh: specifier: ^0.4.1 - version: 0.4.1(eslint@8.46.0) + version: 0.4.1(eslint@8.44.0) tailwindcss: specifier: ^3.3.2 - version: 3.3.3(ts-node@10.9.1) + version: 3.3.2(ts-node@10.9.1) tailwindcss-animate: specifier: 1.0.5 - version: 1.0.5(tailwindcss@3.3.3) + version: 1.0.5(tailwindcss@3.3.2) typescript: specifier: ^5.0.2 version: 5.1.6 vite: specifier: ^4.4.0 - version: 4.4.9(@types/node@18.15.10)(less@4.2.0) + version: 4.4.6(@types/node@18.15.10)(less@4.1.3) vite-plugin-checker: specifier: ^0.6.1 - version: 0.6.1(eslint@8.46.0)(typescript@5.1.6)(vite@4.4.9) + version: 0.6.1(eslint@8.44.0)(typescript@5.1.6)(vite@4.4.6) packages/blocks: dependencies: @@ -796,7 +796,7 @@ importers: version: 7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6) '@storybook/react-vite': specifier: ^7.1.0 - version: 7.1.0(react-dom@18.2.0)(react@18.2.0)(rollup@2.70.2)(typescript@5.1.6)(vite@4.4.9) + version: 7.1.0(react-dom@18.2.0)(react@18.2.0)(rollup@2.70.2)(typescript@5.1.6)(vite@4.4.6) '@storybook/testing-library': specifier: ^0.2.0 version: 0.2.0 @@ -811,13 +811,13 @@ importers: version: 18.15.10 '@types/react': specifier: ^18.0.14 - version: 18.2.14 + version: 18.2.15 '@typescript-eslint/eslint-plugin': specifier: ^5.48.1 - version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.46.0)(typescript@5.1.6) + version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6) '@typescript-eslint/parser': specifier: ^5.48.1 - version: 5.61.0(eslint@8.46.0)(typescript@5.1.6) + version: 5.61.0(eslint@8.44.0)(typescript@5.1.6) '@vitest/coverage-istanbul': specifier: ^0.28.4 version: 0.28.5(jsdom@20.0.3) @@ -826,25 +826,25 @@ importers: version: 7.6.0 eslint: specifier: ^8.32.0 - version: 8.46.0 + version: 8.44.0 eslint-config-prettier: specifier: ^6.11.0 - version: 6.15.0(eslint@8.46.0) + version: 6.15.0(eslint@8.44.0) eslint-plugin-eslint-comments: specifier: ^3.2.0 - version: 3.2.0(eslint@8.46.0) + version: 3.2.0(eslint@8.44.0) eslint-plugin-functional: specifier: ^3.0.2 - version: 3.7.2(eslint@8.46.0)(typescript@5.1.6) + version: 3.7.2(eslint@8.44.0)(typescript@5.1.6) eslint-plugin-import: specifier: ^2.22.0 - version: 2.27.5(@typescript-eslint/parser@5.61.0)(eslint@8.46.0) + version: 2.27.5(@typescript-eslint/parser@5.61.0)(eslint@8.44.0) eslint-plugin-storybook: specifier: ^0.6.13 - version: 0.6.13(eslint@8.46.0)(typescript@5.1.6) + version: 0.6.13(eslint@8.44.0)(typescript@5.1.6) eslint-plugin-unused-imports: specifier: ^2.0.0 - version: 2.0.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint@8.46.0) + version: 2.0.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint@8.44.0) fs-extra: specifier: ^11.1.0 version: 11.1.0 @@ -889,16 +889,19 @@ importers: version: 5.1.6 vite: specifier: ^4.4.6 - version: 4.4.9(@types/node@18.15.10)(less@4.2.0) + version: 4.4.6(@types/node@18.15.10)(less@4.1.3) vite-tsconfig-paths: specifier: ^4.0.7 - version: 4.0.7(typescript@5.1.6)(vite@4.4.9) + version: 4.0.7(typescript@5.1.6)(vite@4.4.6) vitest: specifier: ^0.33.0 - version: 0.33.0(less@4.2.0) + version: 0.33.0(less@4.1.3) packages/common: dependencies: + '@sinclair/typebox': + specifier: ^0.31.7 + version: 0.31.7 ajv: specifier: ^8.12.0 version: 8.12.0 @@ -939,6 +942,9 @@ importers: '@types/json-logic-js': specifier: ^2.0.1 version: 2.0.1 + '@types/json-schema': + specifier: ^7.0.12 + version: 7.0.12 '@types/node': specifier: ^18.14.0 version: 18.15.10 @@ -1140,25 +1146,25 @@ importers: dependencies: '@emotion/react': specifier: ^11.11.1 - version: 11.11.1(@types/react@18.2.14)(react@18.2.0) + version: 11.11.1(@types/react@18.2.15)(react@18.2.0) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.14)(react@18.2.0) + version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0) '@mui/material': specifier: ^5.14.2 - version: 5.14.4(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 5.14.2(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) '@mui/x-date-pickers': specifier: ^6.10.2 - version: 6.11.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.10)(@mui/material@5.14.4)(@mui/system@5.14.4)(dayjs@1.11.7)(react-dom@18.2.0)(react@18.2.0) + version: 6.10.2(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.13)(@mui/material@5.14.2)(@mui/system@5.14.7)(dayjs@1.11.7)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-checkbox': specifier: ^1.0.1 version: 1.0.3(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-dialog': specifier: ^1.0.2 - version: 1.0.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.3(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-dropdown-menu': specifier: ^2.0.5 - version: 2.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 2.0.5(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-icons': specifier: ^1.3.0 version: 1.3.0(react@18.2.0) @@ -1167,7 +1173,7 @@ importers: version: 2.0.1(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-popover': specifier: ^1.0.6 - version: 1.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.6(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-scroll-area': specifier: ^1.0.2 version: 1.0.3(react-dom@18.2.0)(react@18.2.0) @@ -1194,7 +1200,7 @@ importers: version: 1.2.1 cmdk: specifier: ^0.2.0 - version: 0.2.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 0.2.0(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) dayjs: specifier: ^1.11.6 version: 1.11.7 @@ -1212,47 +1218,47 @@ importers: version: 18.2.0(react@18.2.0) react-json-view: specifier: ^1.21.3 - version: 1.21.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 1.21.3(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) react-phone-input-2: specifier: ^2.15.1 version: 2.15.1(react-dom@18.2.0)(react@18.2.0) tailwind-merge: specifier: ^1.10.0 - version: 1.13.2 + version: 1.10.0 devDependencies: '@cspell/cspell-types': specifier: ^6.31.1 version: 6.31.1 '@storybook/addon-essentials': specifier: ^7.0.26 - version: 7.1.0(react-dom@18.2.0)(react@18.2.0) + version: 7.0.26(react-dom@18.2.0)(react@18.2.0) '@storybook/addon-interactions': specifier: ^7.0.26 - version: 7.1.0(react-dom@18.2.0)(react@18.2.0) + version: 7.0.26(react-dom@18.2.0)(react@18.2.0) '@storybook/addon-links': specifier: ^7.0.26 - version: 7.1.0(react-dom@18.2.0)(react@18.2.0) + version: 7.0.26(react-dom@18.2.0)(react@18.2.0) '@storybook/addon-styling': specifier: ^1.3.2 - version: 1.3.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(less@4.2.0)(postcss@8.4.27)(react-dom@18.2.0)(react@18.2.0)(webpack@5.76.2) + version: 1.3.2(less@4.1.3)(postcss@8.4.27)(react-dom@18.2.0)(react@18.2.0)(webpack@5.76.2) '@storybook/blocks': specifier: ^7.0.26 - version: 7.1.0(react-dom@18.2.0)(react@18.2.0) + version: 7.0.26(react-dom@18.2.0)(react@18.2.0) '@storybook/builder-vite': specifier: ^7.0.26 - version: 7.0.26(typescript@4.9.5)(vite@4.4.9) + version: 7.0.26(typescript@4.9.5)(vite@4.4.6) '@storybook/react': specifier: ^7.0.26 - version: 7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) + version: 7.0.26(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) '@storybook/react-vite': specifier: ^7.0.26 - version: 7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@4.4.9) + version: 7.0.26(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@4.4.6) '@storybook/testing-library': specifier: ^0.0.14-next.2 version: 0.0.14-next.2 '@tailwindcss/line-clamp': specifier: 0.4.4 - version: 0.4.4(tailwindcss@3.3.3) + version: 0.4.4(tailwindcss@3.3.2) '@types/lodash': specifier: ^4.14.191 version: 4.14.191 @@ -1261,19 +1267,19 @@ importers: version: 20.4.1 '@types/react': specifier: ^18.0.37 - version: 18.2.14 + version: 18.2.15 '@types/react-dom': specifier: ^18.0.5 - version: 18.2.6 + version: 18.0.11 '@typescript-eslint/eslint-plugin': specifier: ^5.61.0 - version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.46.0)(typescript@4.9.5) + version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^5.61.0 - version: 5.61.0(eslint@8.46.0)(typescript@4.9.5) + version: 5.61.0(eslint@8.44.0)(typescript@4.9.5) '@vitejs/plugin-react': specifier: ^4.0.1 - version: 4.0.1(vite@4.4.9) + version: 4.0.1(vite@4.4.6) autoprefixer: specifier: 10.4.14 version: 10.4.14(postcss@8.4.27) @@ -1282,16 +1288,16 @@ importers: version: 6.31.2 eslint: specifier: ^8.44.0 - version: 8.46.0 + version: 8.44.0 eslint-plugin-react-hooks: specifier: ^4.6.0 - version: 4.6.0(eslint@8.46.0) + version: 4.6.0(eslint@8.44.0) eslint-plugin-react-refresh: specifier: ^0.4.1 - version: 0.4.1(eslint@8.46.0) + version: 0.4.1(eslint@8.44.0) eslint-plugin-storybook: specifier: ^0.6.6 - version: 0.6.13(eslint@8.46.0)(typescript@4.9.5) + version: 0.6.11(eslint@8.44.0)(typescript@4.9.5) fast-glob: specifier: ^3.3.0 version: 3.3.0 @@ -1300,25 +1306,25 @@ importers: version: 15.8.1 storybook: specifier: ^7.0.26 - version: 7.1.0 + version: 7.0.26 tailwindcss: specifier: ^3.3.2 - version: 3.3.3(ts-node@10.9.1) + version: 3.3.2(ts-node@10.9.1) tailwindcss-animate: specifier: 1.0.5 - version: 1.0.5(tailwindcss@3.3.3) + version: 1.0.5(tailwindcss@3.3.2) typescript: specifier: ^4.9.5 version: 4.9.5 vite: specifier: ^4.3.9 - version: 4.4.9(@types/node@20.4.1)(less@4.2.0) + version: 4.4.6(@types/node@20.4.1)(less@4.1.3) vite-plugin-dts: specifier: ^1.6.6 - version: 1.7.3(@types/node@20.4.1)(vite@4.4.9) + version: 1.7.3(@types/node@20.4.1)(vite@4.4.6) vitest: specifier: ^0.33.0 - version: 0.33.0(less@4.2.0) + version: 0.33.0(less@4.1.3) packages/workflow-core: dependencies: @@ -1970,7 +1976,7 @@ importers: specifier: 3.325.0 version: 3.325.0 '@ballerine/common': - specifier: 0.5.22 + specifier: 0.6.7 version: link:../../packages/common '@ballerine/workflow-core': specifier: 0.4.30 @@ -2239,16 +2245,16 @@ importers: version: 4.13.1 '@astrojs/mdx': specifier: 0.19.7 - version: 0.19.7(astro@2.6.6) + version: 0.19.7(astro@2.7.2) '@astrojs/react': specifier: ^2.2.1 - version: 2.2.1(@types/react-dom@18.2.6)(@types/react@17.0.45)(react-dom@18.2.0)(react@18.2.0) + version: 2.2.1(@types/react-dom@18.0.11)(@types/react@17.0.45)(react-dom@18.2.0)(react@18.2.0) '@astrojs/solid-js': specifier: ^1.2.3 version: 1.2.3(@babel/core@7.22.5)(solid-js@1.4.3)(vite@3.2.5) '@astrojs/tailwind': specifier: ^4.0.0 - version: 4.0.0(astro@2.6.6)(tailwindcss@3.3.3)(ts-node@10.9.1) + version: 4.0.0(astro@2.7.2)(tailwindcss@3.3.2)(ts-node@10.9.1) '@ballerine/common': specifier: 0.5.19 version: 0.5.19 @@ -2266,10 +2272,10 @@ importers: version: 17.0.45 '@types/react-dom': specifier: ^18.0.0 - version: 18.2.6 + version: 18.0.11 astro: specifier: ^2.6.6 - version: 2.6.6(@types/node@18.15.10) + version: 2.7.2(@types/node@18.15.10) react: specifier: ^18.2.0 version: 18.2.0 @@ -2306,13 +2312,13 @@ importers: version: 8.8.0(eslint@8.44.0) eslint-config-standard-with-typescript: specifier: ^23.0.0 - version: 23.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.6.1)(eslint-plugin-promise@6.1.1)(eslint@8.44.0)(typescript@4.9.5) + version: 23.0.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.6.1)(eslint-plugin-promise@6.1.1)(eslint@8.44.0)(typescript@4.9.5) eslint-plugin-astro: specifier: ^0.21.0 version: 0.21.0(eslint@8.44.0) eslint-plugin-unused-imports: specifier: ^2.0.0 - version: 2.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.44.0) + version: 2.0.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint@8.44.0) html-escaper: specifier: ^3.0.3 version: 3.0.3 @@ -2344,41 +2350,41 @@ packages: resolution: {integrity: sha512-UV46bnkTztyADFaETfzFC5ryIdGVb2zpAoYgu0tfcuYWjhg1KbLXveFffZIrGVoboqmAk1b+jMrl6iCja1i3lg==} dev: false - /@algolia/cache-browser-local-storage@4.19.1: - resolution: {integrity: sha512-FYAZWcGsFTTaSAwj9Std8UML3Bu8dyWDncM7Ls8g+58UOe4XYdlgzXWbrIgjaguP63pCCbMoExKr61B+ztK3tw==} + /@algolia/cache-browser-local-storage@4.18.0: + resolution: {integrity: sha512-rUAs49NLlO8LVLgGzM4cLkw8NJLKguQLgvFmBEe3DyzlinoqxzQMHfKZs6TSq4LZfw/z8qHvRo8NcTAAUJQLcw==} dependencies: - '@algolia/cache-common': 4.19.1 + '@algolia/cache-common': 4.18.0 dev: false /@algolia/cache-common@4.13.1: resolution: {integrity: sha512-7Vaf6IM4L0Jkl3sYXbwK+2beQOgVJ0mKFbz/4qSxKd1iy2Sp77uTAazcX+Dlexekg1fqGUOSO7HS4Sx47ZJmjA==} dev: false - /@algolia/cache-common@4.19.1: - resolution: {integrity: sha512-XGghi3l0qA38HiqdoUY+wvGyBsGvKZ6U3vTiMBT4hArhP3fOGLXpIINgMiiGjTe4FVlTa5a/7Zf2bwlIHfRqqg==} + /@algolia/cache-common@4.18.0: + resolution: {integrity: sha512-BmxsicMR4doGbeEXQu8yqiGmiyvpNvejYJtQ7rvzttEAMxOPoWEHrWyzBQw4x7LrBY9pMrgv4ZlUaF8PGzewHg==} dev: false - /@algolia/cache-in-memory@4.19.1: - resolution: {integrity: sha512-+PDWL+XALGvIginigzu8oU6eWw+o76Z8zHbBovWYcrtWOEtinbl7a7UTt3x3lthv+wNuFr/YD1Gf+B+A9V8n5w==} + /@algolia/cache-in-memory@4.18.0: + resolution: {integrity: sha512-evD4dA1nd5HbFdufBxLqlJoob7E2ozlqJZuV3YlirNx5Na4q1LckIuzjNYZs2ddLzuTc/Xd5O3Ibf7OwPskHxw==} dependencies: - '@algolia/cache-common': 4.19.1 + '@algolia/cache-common': 4.18.0 dev: false - /@algolia/client-account@4.19.1: - resolution: {integrity: sha512-Oy0ritA2k7AMxQ2JwNpfaEcgXEDgeyKu0V7E7xt/ZJRdXfEpZcwp9TOg4TJHC7Ia62gIeT2Y/ynzsxccPw92GA==} + /@algolia/client-account@4.18.0: + resolution: {integrity: sha512-XsDnlROr3+Z1yjxBJjUMfMazi1V155kVdte6496atvBgOEtwCzTs3A+qdhfsAnGUvaYfBrBkL0ThnhMIBCGcew==} dependencies: - '@algolia/client-common': 4.19.1 - '@algolia/client-search': 4.19.1 - '@algolia/transporter': 4.19.1 + '@algolia/client-common': 4.18.0 + '@algolia/client-search': 4.18.0 + '@algolia/transporter': 4.18.0 dev: false - /@algolia/client-analytics@4.19.1: - resolution: {integrity: sha512-5QCq2zmgdZLIQhHqwl55ZvKVpLM3DNWjFI4T+bHr3rGu23ew2bLO4YtyxaZeChmDb85jUdPDouDlCumGfk6wOg==} + /@algolia/client-analytics@4.18.0: + resolution: {integrity: sha512-chEUSN4ReqU7uRQ1C8kDm0EiPE+eJeAXiWcBwLhEynfNuTfawN9P93rSZktj7gmExz0C8XmkbBU19IQ05wCNrQ==} dependencies: - '@algolia/client-common': 4.19.1 - '@algolia/client-search': 4.19.1 - '@algolia/requester-common': 4.19.1 - '@algolia/transporter': 4.19.1 + '@algolia/client-common': 4.18.0 + '@algolia/client-search': 4.18.0 + '@algolia/requester-common': 4.18.0 + '@algolia/transporter': 4.18.0 dev: false /@algolia/client-common@4.13.1: @@ -2388,19 +2394,19 @@ packages: '@algolia/transporter': 4.13.1 dev: false - /@algolia/client-common@4.19.1: - resolution: {integrity: sha512-3kAIVqTcPrjfS389KQvKzliC559x+BDRxtWamVJt8IVp7LGnjq+aVAXg4Xogkur1MUrScTZ59/AaUd5EdpyXgA==} + /@algolia/client-common@4.18.0: + resolution: {integrity: sha512-7N+soJFP4wn8tjTr3MSUT/U+4xVXbz4jmeRfWfVAzdAbxLAQbHa0o/POSdTvQ8/02DjCLelloZ1bb4ZFVKg7Wg==} dependencies: - '@algolia/requester-common': 4.19.1 - '@algolia/transporter': 4.19.1 + '@algolia/requester-common': 4.18.0 + '@algolia/transporter': 4.18.0 dev: false - /@algolia/client-personalization@4.19.1: - resolution: {integrity: sha512-8CWz4/H5FA+krm9HMw2HUQenizC/DxUtsI5oYC0Jxxyce1vsr8cb1aEiSJArQT6IzMynrERif1RVWLac1m36xw==} + /@algolia/client-personalization@4.18.0: + resolution: {integrity: sha512-+PeCjODbxtamHcPl+couXMeHEefpUpr7IHftj4Y4Nia1hj8gGq4VlIcqhToAw8YjLeCTfOR7r7xtj3pJcYdP8A==} dependencies: - '@algolia/client-common': 4.19.1 - '@algolia/requester-common': 4.19.1 - '@algolia/transporter': 4.19.1 + '@algolia/client-common': 4.18.0 + '@algolia/requester-common': 4.18.0 + '@algolia/transporter': 4.18.0 dev: false /@algolia/client-search@4.13.1: @@ -2411,46 +2417,46 @@ packages: '@algolia/transporter': 4.13.1 dev: false - /@algolia/client-search@4.19.1: - resolution: {integrity: sha512-mBecfMFS4N+yK/p0ZbK53vrZbL6OtWMk8YmnOv1i0LXx4pelY8TFhqKoTit3NPVPwoSNN0vdSN9dTu1xr1XOVw==} + /@algolia/client-search@4.18.0: + resolution: {integrity: sha512-F9xzQXTjm6UuZtnsLIew6KSraXQ0AzS/Ee+OD+mQbtcA/K1sg89tqb8TkwjtiYZ0oij13u3EapB3gPZwm+1Y6g==} dependencies: - '@algolia/client-common': 4.19.1 - '@algolia/requester-common': 4.19.1 - '@algolia/transporter': 4.19.1 + '@algolia/client-common': 4.18.0 + '@algolia/requester-common': 4.18.0 + '@algolia/transporter': 4.18.0 dev: false /@algolia/logger-common@4.13.1: resolution: {integrity: sha512-L6slbL/OyZaAXNtS/1A8SAbOJeEXD5JcZeDCPYDqSTYScfHu+2ePRTDMgUTY4gQ7HsYZ39N1LujOd8WBTmM2Aw==} dev: false - /@algolia/logger-common@4.19.1: - resolution: {integrity: sha512-i6pLPZW/+/YXKis8gpmSiNk1lOmYCmRI6+x6d2Qk1OdfvX051nRVdalRbEcVTpSQX6FQAoyeaui0cUfLYW5Elw==} + /@algolia/logger-common@4.18.0: + resolution: {integrity: sha512-46etYgSlkoKepkMSyaoriSn2JDgcrpc/nkOgou/lm0y17GuMl9oYZxwKKTSviLKI5Irk9nSKGwnBTQYwXOYdRg==} dev: false - /@algolia/logger-console@4.19.1: - resolution: {integrity: sha512-jj72k9GKb9W0c7TyC3cuZtTr0CngLBLmc8trzZlXdfvQiigpUdvTi1KoWIb2ZMcRBG7Tl8hSb81zEY3zI2RlXg==} + /@algolia/logger-console@4.18.0: + resolution: {integrity: sha512-3P3VUYMl9CyJbi/UU1uUNlf6Z8N2ltW3Oqhq/nR7vH0CjWv32YROq3iGWGxB2xt3aXobdUPXs6P0tHSKRmNA6g==} dependencies: - '@algolia/logger-common': 4.19.1 + '@algolia/logger-common': 4.18.0 dev: false - /@algolia/requester-browser-xhr@4.19.1: - resolution: {integrity: sha512-09K/+t7lptsweRTueHnSnmPqIxbHMowejAkn9XIcJMLdseS3zl8ObnS5GWea86mu3vy4+8H+ZBKkUN82Zsq/zg==} + /@algolia/requester-browser-xhr@4.18.0: + resolution: {integrity: sha512-/AcWHOBub2U4TE/bPi4Gz1XfuLK6/7dj4HJG+Z2SfQoS1RjNLshZclU3OoKIkFp8D2NC7+BNsPvr9cPLyW8nyQ==} dependencies: - '@algolia/requester-common': 4.19.1 + '@algolia/requester-common': 4.18.0 dev: false /@algolia/requester-common@4.13.1: resolution: {integrity: sha512-eGVf0ID84apfFEuXsaoSgIxbU3oFsIbz4XiotU3VS8qGCJAaLVUC5BUJEkiFENZIhon7hIB4d0RI13HY4RSA+w==} dev: false - /@algolia/requester-common@4.19.1: - resolution: {integrity: sha512-BisRkcWVxrDzF1YPhAckmi2CFYK+jdMT60q10d7z3PX+w6fPPukxHRnZwooiTUrzFe50UBmLItGizWHP5bDzVQ==} + /@algolia/requester-common@4.18.0: + resolution: {integrity: sha512-xlT8R1qYNRBCi1IYLsx7uhftzdfsLPDGudeQs+xvYB4sQ3ya7+ppolB/8m/a4F2gCkEO6oxpp5AGemM7kD27jA==} dev: false - /@algolia/requester-node-http@4.19.1: - resolution: {integrity: sha512-6DK52DHviBHTG2BK/Vv2GIlEw7i+vxm7ypZW0Z7vybGCNDeWzADx+/TmxjkES2h15+FZOqVf/Ja677gePsVItA==} + /@algolia/requester-node-http@4.18.0: + resolution: {integrity: sha512-TGfwj9aeTVgOUhn5XrqBhwUhUUDnGIKlI0kCBMdR58XfXcfdwomka+CPIgThRbfYw04oQr31A6/95ZH2QVJ9UQ==} dependencies: - '@algolia/requester-common': 4.19.1 + '@algolia/requester-common': 4.18.0 dev: false /@algolia/transporter@4.13.1: @@ -2461,12 +2467,12 @@ packages: '@algolia/requester-common': 4.13.1 dev: false - /@algolia/transporter@4.19.1: - resolution: {integrity: sha512-nkpvPWbpuzxo1flEYqNIbGz7xhfhGOKGAZS7tzC+TELgEmi7z99qRyTfNSUlW7LZmB3ACdnqAo+9A9KFBENviQ==} + /@algolia/transporter@4.18.0: + resolution: {integrity: sha512-xbw3YRUGtXQNG1geYFEDDuFLZt4Z8YNKbamHPkzr3rWc6qp4/BqEeXcI2u/P/oMq2yxtXgMxrCxOPA8lyIe5jw==} dependencies: - '@algolia/cache-common': 4.19.1 - '@algolia/logger-common': 4.19.1 - '@algolia/requester-common': 4.19.1 + '@algolia/cache-common': 4.18.0 + '@algolia/logger-common': 4.18.0 + '@algolia/requester-common': 4.18.0 dev: false /@alloc/quick-lru@5.2.0: @@ -2589,7 +2595,7 @@ packages: resolution: {integrity: sha512-r1w81DpR+KyRWd3f+rk6TNqMgedmAxZP5v5KWlXQWlgMUUtyEJch0DKEci1SorPMiSeM8XPl7MZ3miJ60JIpQg==} dependencies: '@jsdevtools/ono': 7.1.3 - '@types/json-schema': 7.0.11 + '@types/json-schema': 7.0.12 call-me-maybe: 1.0.2 js-yaml: 4.1.0 dev: false @@ -2598,18 +2604,18 @@ packages: resolution: {integrity: sha512-QL5qMGkfsC1/kDjJF4RRagz8/hACBUb19cHWrQ8AROphS42qXM6JhoO1Og5FohV3p2VfT5CdEJspn4uNsgZvmw==} dev: true - /@astrojs/compiler@1.8.1: - resolution: {integrity: sha512-C28qplQzgIJ+JU9S+1wNx+ue2KCBUp0TTAd10EWAEkk4RsL3Tzlw0BYvLDDb4KP9jS48lXmR4/1TtZ4aavYJ8Q==} + /@astrojs/compiler@1.5.1: + resolution: {integrity: sha512-iIGKu/uzB8sJ5VveQf0eHrVPPFEcrvSlp4qShYMOuY2aMmK2RVXQlX9dUjtmBQ+NAokfIOb7fwCutvH+p13l+g==} - /@astrojs/internal-helpers@0.1.2: - resolution: {integrity: sha512-YXLk1CUDdC9P5bjFZcGjz+cE/ZDceXObDTXn/GCID4r8LjThuexxi+dlJqukmUpkSItzQqgzfWnrPLxSFPejdA==} + /@astrojs/internal-helpers@0.1.1: + resolution: {integrity: sha512-+LySbvFbjv2nO2m/e78suleQOGEru4Cnx73VsZbrQgB2u7A4ddsQg3P2T0zC0e10jgcT+c6nNlKeLpa6nRhQIg==} dev: false /@astrojs/language-server@1.0.8: resolution: {integrity: sha512-gssRxLGb8XnvKpqSzrDW5jdzdFnXD7eBXVkPCkkt2hv7Qzb+SAzv6hVgMok3jDCxpR1aeB+XNd9Qszj2h29iog==} hasBin: true dependencies: - '@astrojs/compiler': 1.8.1 + '@astrojs/compiler': 1.5.1 '@jridgewell/trace-mapping': 0.3.17 '@vscode/emmet-helper': 2.8.6 events: 3.3.0 @@ -2624,13 +2630,13 @@ packages: vscode-uri: 3.0.7 dev: false - /@astrojs/markdown-remark@2.2.1(astro@2.6.6): + /@astrojs/markdown-remark@2.2.1(astro@2.7.2): resolution: {integrity: sha512-VF0HRv4GpC1XEMLnsKf6jth7JSmlt9qpqP0josQgA2eSpCIAC/Et+y94mgdBIZVBYH/yFnMoIxgKVe93xfO2GA==} peerDependencies: astro: ^2.5.0 dependencies: '@astrojs/prism': 2.1.2 - astro: 2.6.6(@types/node@18.15.10) + astro: 2.7.2(@types/node@18.15.10) github-slugger: 1.5.0 import-meta-resolve: 2.2.2 rehype-raw: 6.1.1 @@ -2647,11 +2653,11 @@ packages: - supports-color dev: false - /@astrojs/mdx@0.19.7(astro@2.6.6): + /@astrojs/mdx@0.19.7(astro@2.7.2): resolution: {integrity: sha512-mfEbBD7oi8yBHhcJucEjnrquREkJ3os+jioURP8BR2B8tOV2rV2j8trvmLUgfS+P/+HevGObxCTjcRYxn6T7eg==} engines: {node: '>=16.12.0'} dependencies: - '@astrojs/markdown-remark': 2.2.1(astro@2.6.6) + '@astrojs/markdown-remark': 2.2.1(astro@2.7.2) '@astrojs/prism': 2.1.2 '@mdx-js/mdx': 2.3.0 acorn: 8.9.0 @@ -2681,7 +2687,7 @@ packages: prismjs: 1.29.0 dev: false - /@astrojs/react@2.2.1(@types/react-dom@18.2.6)(@types/react@17.0.45)(react-dom@18.2.0)(react@18.2.0): + /@astrojs/react@2.2.1(@types/react-dom@18.0.11)(@types/react@17.0.45)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-nq5Zr8iWdwjSp5fh1NReaCplwsnL4w5PXAY5XWu1jE/frxEfF/ycGHrrhwWW0uJHX9G+kUtmQLR0GBhlR4FmAw==} engines: {node: '>=16.12.0'} peerDependencies: @@ -2693,7 +2699,7 @@ packages: '@babel/core': 7.22.5 '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.5) '@types/react': 17.0.45 - '@types/react-dom': 18.2.6 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: @@ -2714,17 +2720,17 @@ packages: - vite dev: false - /@astrojs/tailwind@4.0.0(astro@2.6.6)(tailwindcss@3.3.3)(ts-node@10.9.1): + /@astrojs/tailwind@4.0.0(astro@2.7.2)(tailwindcss@3.3.2)(ts-node@10.9.1): resolution: {integrity: sha512-HmCAXFFes7MUBt5ihdfH1goa8QyGkHejIpz6Z4XBKK9VNYY9G2E3brCn8+pNn5zAOzcwl3FYcuH2AiOa/NGoMQ==} peerDependencies: astro: ^2.6.5 tailwindcss: ^3.0.24 dependencies: - astro: 2.6.6(@types/node@18.15.10) + astro: 2.7.2(@types/node@18.15.10) autoprefixer: 10.4.14(postcss@8.4.24) postcss: 8.4.24 postcss-load-config: 4.0.1(postcss@8.4.24)(ts-node@10.9.1) - tailwindcss: 3.3.3(ts-node@10.9.1) + tailwindcss: 3.3.2(ts-node@10.9.1) transitivePeerDependencies: - ts-node dev: false @@ -2769,14 +2775,14 @@ packages: resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==} dependencies: '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.310.0 + '@aws-sdk/types': 3.347.0 tslib: 1.14.1 /@aws-crypto/crc32c@3.0.0: resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==} dependencies: '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.310.0 + '@aws-sdk/types': 3.347.0 tslib: 1.14.1 /@aws-crypto/ie11-detection@3.0.0: @@ -2790,7 +2796,7 @@ packages: '@aws-crypto/ie11-detection': 3.0.0 '@aws-crypto/supports-web-crypto': 3.0.0 '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.310.0 + '@aws-sdk/types': 3.347.0 '@aws-sdk/util-locate-window': 3.310.0 '@aws-sdk/util-utf8-browser': 3.259.0 tslib: 1.14.1 @@ -2802,7 +2808,7 @@ packages: '@aws-crypto/sha256-js': 3.0.0 '@aws-crypto/supports-web-crypto': 3.0.0 '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.310.0 + '@aws-sdk/types': 3.347.0 '@aws-sdk/util-locate-window': 3.310.0 '@aws-sdk/util-utf8-browser': 3.259.0 tslib: 1.14.1 @@ -2811,7 +2817,7 @@ packages: resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==} dependencies: '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.310.0 + '@aws-sdk/types': 3.347.0 tslib: 1.14.1 /@aws-crypto/supports-web-crypto@3.0.0: @@ -2822,7 +2828,7 @@ packages: /@aws-crypto/util@3.0.0: resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==} dependencies: - '@aws-sdk/types': 3.310.0 + '@aws-sdk/types': 3.347.0 '@aws-sdk/util-utf8-browser': 3.259.0 tslib: 1.14.1 @@ -3505,7 +3511,6 @@ packages: engines: {node: '>=14.0.0'} dependencies: tslib: 2.5.2 - dev: false /@aws-sdk/url-parser@3.310.0: resolution: {integrity: sha512-mCLnCaSB9rQvAgx33u0DujLvr4d5yEm/W5r789GblwwQnlNXedVu50QRizMLTpltYWyAUoXjJgQnJHmJMaKXhw==} @@ -3704,11 +3709,11 @@ packages: /@babel/compat-data@7.22.5: resolution: {integrity: sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==} engines: {node: '>=6.9.0'} + dev: true /@babel/compat-data@7.22.9: resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} engines: {node: '>=6.9.0'} - dev: true /@babel/core@7.17.9: resolution: {integrity: sha512-5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw==} @@ -3717,7 +3722,7 @@ packages: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.22.5 '@babel/generator': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.17.9) + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.17.9) '@babel/helper-module-transforms': 7.22.5 '@babel/helpers': 7.22.5 '@babel/parser': 7.22.5 @@ -3728,7 +3733,7 @@ packages: debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -3763,7 +3768,7 @@ packages: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.22.5 '@babel/generator': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.22.5) + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.5) '@babel/helper-module-transforms': 7.22.5 '@babel/helpers': 7.22.5 '@babel/parser': 7.22.5 @@ -3774,7 +3779,7 @@ packages: debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -3782,7 +3787,7 @@ packages: resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.17 jsesc: 2.5.2 @@ -3797,32 +3802,25 @@ packages: '@jridgewell/trace-mapping': 0.3.17 jsesc: 2.5.2 - /@babel/helper-annotate-as-pure@7.18.6: - resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.10 - dev: true - /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9: resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 dev: true /@babel/helper-builder-binary-assignment-operator-visitor@7.22.10: resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.11 dev: true /@babel/helper-compilation-targets@7.20.7(@babel/core@7.17.9): @@ -3834,9 +3832,9 @@ packages: '@babel/compat-data': 7.21.0 '@babel/core': 7.17.9 '@babel/helper-validator-option': 7.21.0 - browserslist: 4.21.5 + browserslist: 4.21.9 lru-cache: 5.1.1 - semver: 6.3.0 + semver: 6.3.1 dev: true /@babel/helper-compilation-targets@7.20.7(@babel/core@7.21.3): @@ -3848,9 +3846,9 @@ packages: '@babel/compat-data': 7.21.0 '@babel/core': 7.21.3 '@babel/helper-validator-option': 7.21.0 - browserslist: 4.21.5 + browserslist: 4.21.9 lru-cache: 5.1.1 - semver: 6.3.0 + semver: 6.3.1 dev: true /@babel/helper-compilation-targets@7.20.7(@babel/core@7.22.5): @@ -3862,9 +3860,9 @@ packages: '@babel/compat-data': 7.21.0 '@babel/core': 7.22.5 '@babel/helper-validator-option': 7.21.0 - browserslist: 4.21.5 + browserslist: 4.21.9 lru-cache: 5.1.1 - semver: 6.3.0 + semver: 6.3.1 dev: true /@babel/helper-compilation-targets@7.22.10: @@ -3873,7 +3871,7 @@ packages: dependencies: '@babel/compat-data': 7.22.9 '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.10 + browserslist: 4.21.9 lru-cache: 5.1.1 semver: 6.3.1 dev: true @@ -3887,9 +3885,9 @@ packages: '@babel/compat-data': 7.22.5 '@babel/core': 7.17.9 '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.5 + browserslist: 4.21.9 lru-cache: 5.1.1 - semver: 6.3.0 + semver: 6.3.1 dev: true /@babel/helper-compilation-targets@7.22.5(@babel/core@7.21.3): @@ -3901,9 +3899,9 @@ packages: '@babel/compat-data': 7.22.5 '@babel/core': 7.21.3 '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.5 + browserslist: 4.21.9 lru-cache: 5.1.1 - semver: 6.3.0 + semver: 6.3.1 dev: true /@babel/helper-compilation-targets@7.22.5(@babel/core@7.22.5): @@ -3915,9 +3913,51 @@ packages: '@babel/compat-data': 7.22.5 '@babel/core': 7.22.5 '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.5 + browserslist: 4.21.9 lru-cache: 5.1.1 - semver: 6.3.0 + semver: 6.3.1 + dev: true + + /@babel/helper-compilation-targets@7.22.9(@babel/core@7.17.9): + resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.17.9 + '@babel/helper-validator-option': 7.22.5 + browserslist: 4.21.9 + lru-cache: 5.1.1 + semver: 6.3.1 + dev: true + + /@babel/helper-compilation-targets@7.22.9(@babel/core@7.21.3): + resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.21.3 + '@babel/helper-validator-option': 7.22.5 + browserslist: 4.21.9 + lru-cache: 5.1.1 + semver: 6.3.1 + dev: true + + /@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.5): + resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.5 + '@babel/helper-validator-option': 7.22.5 + browserslist: 4.21.9 + lru-cache: 5.1.1 + semver: 6.3.1 /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.17.9): resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==} @@ -3933,7 +3973,7 @@ packages: '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.20.7 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/helper-split-export-declaration': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 transitivePeerDependencies: - supports-color dev: true @@ -3952,7 +3992,7 @@ packages: '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.20.7 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/helper-split-export-declaration': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 transitivePeerDependencies: - supports-color dev: true @@ -3971,13 +4011,13 @@ packages: '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.20.7 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/helper-split-export-declaration': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.22.5): - resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==} + /@babel/helper-create-class-features-plugin@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -4045,12 +4085,12 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.17.9) + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.17.9) '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 - resolve: 1.22.4 - semver: 6.3.0 + resolve: 1.22.2 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -4061,12 +4101,12 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.21.3) + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.21.3) '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 - resolve: 1.22.4 - semver: 6.3.0 + resolve: 1.22.2 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -4077,12 +4117,12 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.22.5) + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.5) '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 - resolve: 1.22.4 - semver: 6.3.0 + resolve: 1.22.2 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -4097,7 +4137,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 - resolve: 1.22.4 + resolve: 1.22.2 transitivePeerDependencies: - supports-color dev: true @@ -4115,15 +4155,7 @@ packages: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 - dev: true - - /@babel/helper-function-name@7.21.0: - resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 dev: true /@babel/helper-function-name@7.22.5: @@ -4131,40 +4163,40 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 /@babel/helper-hoist-variables@7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 dev: true /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 /@babel/helper-member-expression-to-functions@7.21.0: resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 dev: true /@babel/helper-member-expression-to-functions@7.22.5: resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.11 dev: true /@babel/helper-module-imports@7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 /@babel/helper-module-imports@7.22.5: resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} @@ -4183,7 +4215,7 @@ packages: '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.20.7 '@babel/traverse': 7.21.3 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -4203,18 +4235,32 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.5): + resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.5 + dev: true + /@babel/helper-optimise-call-expression@7.18.6: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 dev: true /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.11 dev: true /@babel/helper-plugin-utils@7.20.2: @@ -4236,7 +4282,7 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -4251,7 +4297,7 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -4266,7 +4312,7 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -4292,7 +4338,7 @@ packages: '@babel/helper-optimise-call-expression': 7.18.6 '@babel/template': 7.22.5 '@babel/traverse': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -4313,53 +4359,51 @@ packages: resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 dev: true /@babel/helper-simple-access@7.22.5: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 /@babel/helper-skip-transparent-expression-wrappers@7.20.0: resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 dev: true /@babel/helper-skip-transparent-expression-wrappers@7.22.5: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.11 dev: true /@babel/helper-split-export-declaration@7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 dev: true /@babel/helper-split-export-declaration@7.22.5: resolution: {integrity: sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 - dev: true + '@babel/types': 7.22.5 /@babel/helper-string-parser@7.19.4: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} engines: {node: '>=6.9.0'} - dev: true /@babel/helper-string-parser@7.22.5: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} @@ -4368,7 +4412,6 @@ packages: /@babel/helper-validator-identifier@7.19.1: resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} - dev: true /@babel/helper-validator-identifier@7.22.5: resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} @@ -4390,7 +4433,7 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/template': 7.22.5 '@babel/traverse': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -4401,7 +4444,7 @@ packages: dependencies: '@babel/helper-function-name': 7.22.5 '@babel/template': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.11 dev: true /@babel/helpers@7.21.0: @@ -4410,7 +4453,7 @@ packages: dependencies: '@babel/template': 7.20.7 '@babel/traverse': 7.21.3 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -4447,8 +4490,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.10 - dev: true + '@babel/types': 7.22.5 /@babel/parser@7.22.5: resolution: {integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==} @@ -4464,7 +4506,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.3): @@ -4474,7 +4516,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.5): @@ -4484,7 +4526,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.5): @@ -4542,12 +4584,13 @@ packages: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.10(@babel/core@7.22.5) + '@babel/plugin-transform-optional-chaining': 7.22.12(@babel/core@7.22.5) dev: true /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.17.9): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4563,6 +4606,7 @@ packages: /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.3): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4578,6 +4622,7 @@ packages: /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.5): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4593,6 +4638,7 @@ packages: /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.17.9): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4606,6 +4652,7 @@ packages: /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4619,6 +4666,7 @@ packages: /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.5): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4632,6 +4680,7 @@ packages: /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.17.9): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: '@babel/core': ^7.12.0 dependencies: @@ -4646,6 +4695,7 @@ packages: /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.3): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: '@babel/core': ^7.12.0 dependencies: @@ -4660,6 +4710,7 @@ packages: /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.5): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: '@babel/core': ^7.12.0 dependencies: @@ -4674,132 +4725,144 @@ packages: /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.17.9): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.17.9) dev: true /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3) dev: true /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.5): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.5) dev: true /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.17.9): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.17.9) dev: true /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.3) dev: true /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.5): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.5) dev: true /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.17.9): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.17.9) dev: true /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.3) dev: true /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.5): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.5) dev: true /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.17.9): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.17.9) dev: true /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.3): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.3) dev: true /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.5): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.5) dev: true @@ -4810,7 +4873,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.9) dev: true @@ -4821,7 +4884,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3) dev: true @@ -4832,7 +4895,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.5) dev: true @@ -4843,7 +4906,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.17.9) dev: true @@ -4854,7 +4917,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3) dev: true @@ -4865,7 +4928,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.5) dev: true @@ -4918,7 +4981,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.17.9) dev: true @@ -4929,7 +4992,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3) dev: true @@ -4940,7 +5003,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.5) dev: true @@ -4988,7 +5051,7 @@ packages: dependencies: '@babel/core': 7.17.9 '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.17.9) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -5001,7 +5064,7 @@ packages: dependencies: '@babel/core': 7.21.3 '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -5014,7 +5077,7 @@ packages: dependencies: '@babel/core': 7.22.5 '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.5) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -5112,7 +5175,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.3): @@ -5121,7 +5184,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.5): @@ -5130,7 +5193,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.5): @@ -5148,7 +5211,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.3): @@ -5157,7 +5220,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.5): @@ -5166,7 +5229,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.17.9): @@ -5176,7 +5239,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.3): @@ -5186,7 +5249,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.5): @@ -5196,7 +5259,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.17.9): @@ -5205,7 +5268,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.3): @@ -5214,7 +5277,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.5): @@ -5223,7 +5286,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.17.9): @@ -5232,7 +5295,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.3): @@ -5241,7 +5304,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.5): @@ -5250,7 +5313,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.22.5): @@ -5303,6 +5366,15 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.3): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.3 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.5): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: @@ -5318,7 +5390,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.3): @@ -5327,7 +5399,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.5): @@ -5336,7 +5408,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.17.9): @@ -5364,7 +5436,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.3): @@ -5373,7 +5445,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.5): @@ -5382,7 +5454,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.17.9): @@ -5391,7 +5463,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.3): @@ -5400,7 +5472,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.5): @@ -5409,7 +5481,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.17.9): @@ -5418,7 +5490,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.3): @@ -5427,7 +5499,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.5): @@ -5436,7 +5508,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.17.9): @@ -5445,7 +5517,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.3): @@ -5454,7 +5526,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.5): @@ -5463,7 +5535,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.17.9): @@ -5472,7 +5544,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.3): @@ -5481,7 +5553,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.5): @@ -5490,7 +5562,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.17.9): @@ -5499,7 +5571,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.3): @@ -5508,7 +5580,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.5): @@ -5517,7 +5589,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.17.9): @@ -5527,7 +5599,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.3): @@ -5537,7 +5609,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.5): @@ -5547,7 +5619,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.17.9): @@ -5557,7 +5629,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.3): @@ -5567,7 +5639,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.5): @@ -5577,7 +5649,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.17.9): @@ -5611,34 +5683,24 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.17.9): - resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.17.9): + resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.3): - resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.21.3): + resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.5): - resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.5): @@ -5651,8 +5713,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-async-generator-functions@7.22.10(@babel/core@7.22.5): - resolution: {integrity: sha512-eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g==} + /@babel/plugin-transform-async-generator-functions@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-0pAlmeRJn6wU84zzZsEOx1JV1Jf8fqO9ok7wofIJwUnplYo247dcd24P+cMJht7ts9xkzdtB0EPHmOb7F+KzXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -5671,8 +5733,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.17.9) transitivePeerDependencies: - supports-color @@ -5685,8 +5747,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.3) transitivePeerDependencies: - supports-color @@ -5699,8 +5761,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.5) transitivePeerDependencies: - supports-color @@ -5725,7 +5787,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.3): @@ -5735,7 +5797,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.5): @@ -5745,7 +5807,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.5): @@ -5765,7 +5827,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.3): @@ -5775,7 +5837,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.5): @@ -5785,7 +5847,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.22.5): @@ -5805,18 +5867,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.5) + '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.5) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==} + /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.5) + '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.5) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.5) dev: true @@ -5899,37 +5961,26 @@ packages: globals: 11.12.0 dev: true - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.17.9): - resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.17.9): + resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/template': 7.20.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.5 dev: true - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.3): - resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.21.3): + resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/template': 7.20.7 - dev: true - - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.5): - resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/template': 7.20.7 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.5 dev: true /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.5): @@ -5950,7 +6001,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.3): @@ -5960,7 +6011,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.5): @@ -5970,7 +6021,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.22.5): @@ -5991,7 +6042,7 @@ packages: dependencies: '@babel/core': 7.17.9 '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.17.9) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.3): @@ -6002,7 +6053,7 @@ packages: dependencies: '@babel/core': 7.21.3 '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.5): @@ -6013,7 +6064,7 @@ packages: dependencies: '@babel/core': 7.22.5 '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.5) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.5): @@ -6067,8 +6118,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==} + /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6122,8 +6173,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==} + /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6144,34 +6195,24 @@ packages: '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.22.5) dev: true - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.17.9): - resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} + /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.17.9): + resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.3): - resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} + /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.21.3): + resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.5): - resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.5): @@ -6191,9 +6232,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.9) - '@babel/helper-function-name': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.17.9) + '@babel/helper-function-name': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.3): @@ -6203,9 +6244,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3) - '@babel/helper-function-name': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.21.3) + '@babel/helper-function-name': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.5): @@ -6215,9 +6256,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.22.5) - '@babel/helper-function-name': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.5) + '@babel/helper-function-name': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.5): @@ -6232,8 +6273,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==} + /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6250,7 +6291,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.3): @@ -6260,7 +6301,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.5): @@ -6270,7 +6311,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.5): @@ -6283,8 +6324,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==} + /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6301,7 +6342,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.3): @@ -6311,7 +6352,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.5): @@ -6321,7 +6362,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.5): @@ -6386,44 +6427,42 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.17.9): - resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} + /@babel/plugin-transform-modules-commonjs@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.9 - '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-simple-access': 7.20.2 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.22.5 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.5) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.3): - resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} + /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.17.9): + resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.3 - '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-simple-access': 7.20.2 + '@babel/core': 7.17.9 + '@babel/helper-module-transforms': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.5): - resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} + /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.21.3): + resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.5 - '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-simple-access': 7.20.2 + '@babel/core': 7.21.3 + '@babel/helper-module-transforms': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -6487,19 +6526,17 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} + /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.5 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.5) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.5 - transitivePeerDependencies: - - supports-color dev: true /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.17.9): @@ -6509,8 +6546,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-module-transforms': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -6522,8 +6559,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-module-transforms': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -6535,8 +6572,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-module-transforms': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -6562,7 +6599,7 @@ packages: dependencies: '@babel/core': 7.17.9 '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.17.9) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.3): @@ -6573,7 +6610,7 @@ packages: dependencies: '@babel/core': 7.21.3 '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.5): @@ -6584,7 +6621,7 @@ packages: dependencies: '@babel/core': 7.22.5 '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.5) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.5): @@ -6605,7 +6642,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.3): @@ -6615,7 +6652,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.5): @@ -6625,7 +6662,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.5): @@ -6638,8 +6675,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==} + /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6649,8 +6686,8 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.5) dev: true - /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==} + /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6660,8 +6697,8 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.5) dev: true - /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==} + /@babel/plugin-transform-object-rest-spread@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-nX8cPFa6+UmbepISvlf5jhQyaC7ASs/7UxHmMkuJ/k5xSHvDPPaibMo+v3TXwU/Pjqhep/nFNpd3zn4YR59pnw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6681,7 +6718,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-replace-supers': 7.20.7 transitivePeerDependencies: - supports-color @@ -6694,7 +6731,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-replace-supers': 7.20.7 transitivePeerDependencies: - supports-color @@ -6707,7 +6744,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-replace-supers': 7.20.7 transitivePeerDependencies: - supports-color @@ -6724,8 +6761,8 @@ packages: '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.5) dev: true - /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==} + /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6735,8 +6772,8 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.5) dev: true - /@babel/plugin-transform-optional-chaining@7.22.10(@babel/core@7.22.5): - resolution: {integrity: sha512-MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g==} + /@babel/plugin-transform-optional-chaining@7.22.12(@babel/core@7.22.5): + resolution: {integrity: sha512-7XXCVqZtyFWqjDsYDY4T45w4mlx1rf7aOgkc/Ww76xkgBiOlmjPkx36PBLHa1k1rwWvVgYMPsbuVnIamx2ZQJw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6754,7 +6791,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.3): @@ -6764,7 +6801,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.5): @@ -6774,7 +6811,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.5): @@ -6794,19 +6831,19 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.5) + '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.5) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==} + /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.5): + resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.5) + '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.5) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.5) dev: true @@ -6818,7 +6855,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.3): @@ -6828,7 +6865,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.5): @@ -6838,7 +6875,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.5): @@ -6936,7 +6973,7 @@ packages: '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.5) - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.17.9): resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} @@ -6949,48 +6986,48 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.17.9): - resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.5): + resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 - regenerator-transform: 0.15.1 + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.3): - resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} + /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.17.9): + resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.17.9 + '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.1 dev: true - /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.22.5): - resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} + /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.21.3): + resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.21.3 + '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.1 dev: true - /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.5): - resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} + /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.22.5): + resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.2 + regenerator-transform: 0.15.1 dev: true /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.17.9): @@ -7000,7 +7037,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.3): @@ -7010,7 +7047,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.5): @@ -7020,7 +7057,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.5): @@ -7040,7 +7077,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.3): @@ -7050,7 +7087,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.5): @@ -7060,7 +7097,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.5): @@ -7080,7 +7117,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: true @@ -7091,7 +7128,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: true @@ -7102,7 +7139,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: true @@ -7124,7 +7161,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.3): @@ -7134,7 +7171,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.5): @@ -7144,7 +7181,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.5): @@ -7164,7 +7201,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.3): @@ -7174,7 +7211,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.5): @@ -7184,7 +7221,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.5): @@ -7204,7 +7241,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.3): @@ -7214,7 +7251,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.5): @@ -7224,7 +7261,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.5): @@ -7244,9 +7281,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.17.9) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.17.9) transitivePeerDependencies: - supports-color @@ -7259,46 +7296,46 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.5) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.5) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.17.9): - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.5): + resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.3): - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.17.9): + resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.17.9 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.22.5): - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.21.3): + resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.21.3 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.5): - resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} + /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.22.5): + resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -7326,7 +7363,7 @@ packages: dependencies: '@babel/core': 7.17.9 '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.17.9) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.3): @@ -7337,7 +7374,7 @@ packages: dependencies: '@babel/core': 7.21.3 '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.5): @@ -7348,7 +7385,7 @@ packages: dependencies: '@babel/core': 7.22.5 '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.5) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.5): @@ -7379,9 +7416,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.5 + '@babel/compat-data': 7.22.9 '@babel/core': 7.17.9 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.17.9) + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.17.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.5 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.17.9) @@ -7415,22 +7452,22 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.9) '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.17.9) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.17.9) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.17.9) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.17.9) '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.17.9) '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.17.9) '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.17.9) '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.17.9) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.17.9) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.17.9) '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.17.9) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.17.9) '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.17.9) '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.17.9) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.17.9) + '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.17.9) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.17.9) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.17.9) '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.17.9) '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.17.9) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.17.9) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.17.9) '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.17.9) '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.17.9) '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.17.9) @@ -7438,14 +7475,14 @@ packages: '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.17.9) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.9) '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.17.9) - '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.17.9) + '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.17.9) '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.17.9) '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.17.9) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.17.9) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.17.9) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.17.9) '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.17.9) - '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.17.9) + '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.17.9) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.17.9) '@babel/preset-modules': 0.1.5(@babel/core@7.17.9) '@babel/types': 7.22.5 @@ -7453,7 +7490,7 @@ packages: babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.17.9) babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.17.9) core-js-compat: 3.29.1 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -7464,9 +7501,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.5 + '@babel/compat-data': 7.22.9 '@babel/core': 7.21.3 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.21.3) + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.21.3) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.5 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.3) @@ -7501,22 +7538,22 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3) '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.3) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.21.3) '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.3) '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.3) '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3) '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.21.3) '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3) '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.3) '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.3) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.3) + '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.21.3) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3) '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.3) '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.3) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.21.3) '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.3) '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.3) '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.3) @@ -7524,17 +7561,17 @@ packages: '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.3) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3) '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.3) - '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.3) + '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.21.3) '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.3) '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.3) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3) '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.3) - '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.3) + '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.21.3) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.3) '@babel/preset-modules': 0.1.5(@babel/core@7.21.3) - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3) babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.3) babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.3) @@ -7544,15 +7581,102 @@ packages: - supports-color dev: true - /@babel/preset-env@7.20.2(@babel/core@7.22.5): - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} + /@babel/preset-env@7.21.5(@babel/core@7.21.3): + resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.5 + '@babel/compat-data': 7.22.9 + '@babel/core': 7.21.3 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.21.3) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.3) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.3) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.3) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.3) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.3) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.3) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.3) + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.3) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.3) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.21.3) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.3) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.21.3) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.3) + '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.21.3) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.3) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.21.3) + '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.3) + '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.3) + '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.21.3) + '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3) + '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.3) + '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.21.3) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.3) + '@babel/preset-modules': 0.1.5(@babel/core@7.21.3) + '@babel/types': 7.22.5 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.3) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.3) + core-js-compat: 3.29.1 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/preset-env@7.21.5(@babel/core@7.22.5): + resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.9 '@babel/core': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.22.5) + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.5) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.5 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.22.5) @@ -7578,6 +7702,7 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.5) '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.5) '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.5) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.5) '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.5) '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.5) '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.5) @@ -7587,22 +7712,22 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.5) '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.5) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.5) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.5) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.5) '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.5) '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.5) '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.5) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.5) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.5) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.5) '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.22.5) '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.5) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.5) + '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.5) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.5) '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.5) '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.22.5) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.5) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.22.5) '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.22.5) '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.5) @@ -7610,17 +7735,17 @@ packages: '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.5) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.5) '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.5) - '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.5) + '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.22.5) '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.5) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.5) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.5) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.5) '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.22.5) - '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.22.5) + '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.5) '@babel/preset-modules': 0.1.5(@babel/core@7.22.5) - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.5) babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.5) babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.5) @@ -7630,8 +7755,8 @@ packages: - supports-color dev: true - /@babel/preset-env@7.22.10(@babel/core@7.22.5): - resolution: {integrity: sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==} + /@babel/preset-env@7.22.14(@babel/core@7.22.5): + resolution: {integrity: sha512-daodMIoVo+ol/g+//c/AH+szBkFj4STQUikvBijRGL72Ph+w+AMTSh55DUETe8KJlPlDT1k/mp7NBfOuiWmoig==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -7663,41 +7788,41 @@ packages: '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.5) '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.5) '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-async-generator-functions': 7.22.10(@babel/core@7.22.5) + '@babel/plugin-transform-async-generator-functions': 7.22.11(@babel/core@7.22.5) '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-block-scoping': 7.22.10(@babel/core@7.22.5) '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.22.5) '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.5) '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.22.5) '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.22.5) '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.22.5) '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.22.5) '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.22.5) '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-modules-commonjs': 7.22.11(@babel/core@7.22.5) + '@babel/plugin-transform-modules-systemjs': 7.22.11(@babel/core@7.22.5) '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.22.5) + '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.22.5) + '@babel/plugin-transform-object-rest-spread': 7.22.11(@babel/core@7.22.5) '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-optional-chaining': 7.22.10(@babel/core@7.22.5) + '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.22.5) + '@babel/plugin-transform-optional-chaining': 7.22.12(@babel/core@7.22.5) '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.22.5) '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.22.5) '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.5) @@ -7711,11 +7836,11 @@ packages: '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.5) '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.22.5) - '@babel/types': 7.22.10 + '@babel/types': 7.22.11 babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.5) babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.5) babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.5) - core-js-compat: 3.32.0 + core-js-compat: 3.32.1 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -7739,10 +7864,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.17.9) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.17.9) - '@babel/types': 7.21.3 + '@babel/types': 7.22.5 esutils: 2.0.3 dev: true @@ -7752,10 +7877,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3) - '@babel/types': 7.21.3 + '@babel/types': 7.22.5 esutils: 2.0.3 dev: true @@ -7765,10 +7890,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.5) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.5) - '@babel/types': 7.21.3 + '@babel/types': 7.22.5 esutils: 2.0.3 dev: true @@ -7779,7 +7904,7 @@ packages: dependencies: '@babel/core': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.11 esutils: 2.0.3 dev: true @@ -7850,8 +7975,8 @@ packages: dependencies: regenerator-runtime: 0.13.11 - /@babel/runtime@7.22.10: - resolution: {integrity: sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==} + /@babel/runtime@7.22.11: + resolution: {integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.0 @@ -7862,7 +7987,7 @@ packages: dependencies: '@babel/code-frame': 7.18.6 '@babel/parser': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 dev: true /@babel/template@7.22.5: @@ -7882,9 +8007,9 @@ packages: '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 debug: 4.3.4(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: @@ -7900,9 +8025,9 @@ packages: '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 debug: 4.3.4(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: @@ -7915,15 +8040,15 @@ packages: '@babel/helper-string-parser': 7.19.4 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 - dev: true - /@babel/types@7.22.10: - resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==} + /@babel/types@7.22.11: + resolution: {integrity: sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 '@babel/helper-validator-identifier': 7.22.5 to-fast-properties: 2.0.0 + dev: true /@babel/types@7.22.5: resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==} @@ -8003,7 +8128,7 @@ packages: /@changesets/apply-release-plan@6.1.3: resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@changesets/config': 2.3.0 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 2.0.0 @@ -8021,7 +8146,7 @@ packages: /@changesets/assemble-release-plan@5.2.3: resolution: {integrity: sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.5 '@changesets/types': 5.2.1 @@ -8105,7 +8230,7 @@ packages: /@changesets/get-release-plan@3.0.16: resolution: {integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@changesets/assemble-release-plan': 5.2.3 '@changesets/config': 2.3.0 '@changesets/pre': 1.0.14 @@ -8121,7 +8246,7 @@ packages: /@changesets/git@2.0.0: resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 @@ -8146,7 +8271,7 @@ packages: /@changesets/pre@1.0.14: resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 @@ -8156,7 +8281,7 @@ packages: /@changesets/read@0.5.9: resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@changesets/git': 2.0.0 '@changesets/logger': 0.0.5 '@changesets/parse': 0.3.16 @@ -8177,7 +8302,7 @@ packages: /@changesets/write@0.2.3: resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@changesets/types': 5.2.1 fs-extra: 7.0.1 human-id: 1.0.2 @@ -8367,11 +8492,11 @@ packages: '@cspell/dict-ada': 4.0.2 '@cspell/dict-aws': 3.0.0 '@cspell/dict-bash': 4.1.1 - '@cspell/dict-companies': 3.0.19 + '@cspell/dict-companies': 3.0.21 '@cspell/dict-cpp': 5.0.4 '@cspell/dict-cryptocurrencies': 3.0.1 '@cspell/dict-csharp': 4.0.2 - '@cspell/dict-css': 4.0.6 + '@cspell/dict-css': 4.0.7 '@cspell/dict-dart': 2.0.3 '@cspell/dict-django': 4.1.0 '@cspell/dict-docker': 1.1.7 @@ -8379,7 +8504,7 @@ packages: '@cspell/dict-elixir': 4.0.3 '@cspell/dict-en-common-misspellings': 1.0.2 '@cspell/dict-en-gb': 1.1.33 - '@cspell/dict-en_us': 4.3.6 + '@cspell/dict-en_us': 4.3.7 '@cspell/dict-filetypes': 3.0.1 '@cspell/dict-fonts': 3.0.2 '@cspell/dict-fullstack': 3.1.5 @@ -8396,15 +8521,15 @@ packages: '@cspell/dict-lua': 4.0.1 '@cspell/dict-node': 4.0.2 '@cspell/dict-npm': 5.0.8 - '@cspell/dict-php': 4.0.1 + '@cspell/dict-php': 4.0.2 '@cspell/dict-powershell': 5.0.2 '@cspell/dict-public-licenses': 2.0.3 - '@cspell/dict-python': 4.1.5 + '@cspell/dict-python': 4.1.7 '@cspell/dict-r': 2.0.1 '@cspell/dict-ruby': 5.0.0 '@cspell/dict-rust': 4.0.1 '@cspell/dict-scala': 5.0.0 - '@cspell/dict-software-terms': 3.2.1 + '@cspell/dict-software-terms': 3.2.2 '@cspell/dict-sql': 2.1.1 '@cspell/dict-svelte': 1.0.2 '@cspell/dict-swift': 2.0.1 @@ -8439,8 +8564,8 @@ packages: resolution: {integrity: sha512-8czAa/Mh96wu2xr0RXQEGMTBUGkTvYn/Pb0o+gqOO1YW+poXGQc3gx0YPqILDryP/KCERrNvkWUJz3iGbvwC2A==} dev: true - /@cspell/dict-companies@3.0.19: - resolution: {integrity: sha512-hO7rS4DhFA333qyvf89wIVoclCtXe/2sftY6aS0oMIH1bMZLjLx2B2sQJj6dCiu6gG/By1S9YZ0fXabiPk2Tkg==} + /@cspell/dict-companies@3.0.21: + resolution: {integrity: sha512-u9b7qtCWYS728WqiJeAucJcjRs16Y1yGGwagS/w59SV25R0rXbXbPbQuX8wYDcaeIO8uRHGkbSWngx6O4qFoCQ==} dev: true /@cspell/dict-cpp@5.0.4: @@ -8455,16 +8580,16 @@ packages: resolution: {integrity: sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==} dev: true - /@cspell/dict-css@4.0.6: - resolution: {integrity: sha512-2Lo8W2ezHmGgY8cWFr4RUwnjbndna5mokpCK/DuxGILQnuajR0J31ANQOXj/8iZM2phFB93ZzMNk/0c04TDfSQ==} + /@cspell/dict-css@4.0.7: + resolution: {integrity: sha512-NNlUTx/sYg+74kC0EtRewb7pjkEtPlIsu9JFNWAXa0JMTqqpQXqM3aEO4QJvUZFZF09bObeCAvzzxemAwxej7Q==} dev: true /@cspell/dict-dart@2.0.3: resolution: {integrity: sha512-cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw==} dev: true - /@cspell/dict-data-science@1.0.10: - resolution: {integrity: sha512-7ZsRCnW0f4Bdo6Cqq8V4gHr8K58h+MP8majcDeMNhpMFUPiiSnvKsDuG9V5jciI/0t+lptPrZwGGIVEDF4Kqtg==} + /@cspell/dict-data-science@1.0.11: + resolution: {integrity: sha512-TaHAZRVe0Zlcc3C23StZqqbzC0NrodRwoSAc8dis+5qLeLLnOCtagYQeROQvDlcDg3X/VVEO9Whh4W/z4PAmYQ==} dev: true /@cspell/dict-django@4.1.0: @@ -8491,8 +8616,8 @@ packages: resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==} dev: true - /@cspell/dict-en_us@4.3.6: - resolution: {integrity: sha512-odhgsjNZI9BtEOJdvqfAuv/3yz5aB1ngfBNaph7WSnYVt//9e3fhrElZ6/pIIkoyuGgeQPwz1fXt+tMgcnLSEQ==} + /@cspell/dict-en_us@4.3.7: + resolution: {integrity: sha512-83V0XXqiXJvXa1pj5cVpviYKeLTN2Dxvouz8ullrwgcfPtY57pYBy+3ACVAMYK0eGByhRPc/xVXlIgv4o0BNZw==} dev: true /@cspell/dict-filetypes@3.0.1: @@ -8559,8 +8684,8 @@ packages: resolution: {integrity: sha512-KuqH8tEsFD6DPKqKwIfWr9E+admE3yghaC0AKXG8jPaf77N0lkctKaS3dm0oxWUXkYKA/eXj6LCtz3VcTyxFPg==} dev: true - /@cspell/dict-php@4.0.1: - resolution: {integrity: sha512-XaQ/JkSyq2c07MfRG54DjLi2CV+HHwS99DDCAao9Fq2JfkWroTQsUeek7wYZXJATrJVOULoV3HKih12x905AtQ==} + /@cspell/dict-php@4.0.2: + resolution: {integrity: sha512-7yglcmMoFHDPQXHW+9QAl8YjAToMm1qOi+4x/yGY1FSIEjZbCpjeDgyKMGg/NgpooQQceEN38AR59Pn23EDriA==} dev: true /@cspell/dict-powershell@5.0.2: @@ -8571,10 +8696,10 @@ packages: resolution: {integrity: sha512-JSLEdpEYufQ1H+93UHi+axlqQm1fhgK6kpdLHp6uPHu//CsvETcqNVawjB+qOdI/g38JTMw5fBqSd0aGNxa6Dw==} dev: true - /@cspell/dict-python@4.1.5: - resolution: {integrity: sha512-wWUWyHdyJtx5iG6Fz9rBQ17BtdpEsB17vmutao+gixQD28Jzb6XoLgDQ6606M0RnFjBSFhs5iT4CJBzlD2Kq6g==} + /@cspell/dict-python@4.1.7: + resolution: {integrity: sha512-8GkO7/w1QEpu4Y1GTHGYHrwfc/ZdiBRw7D/BGYCIiOoQPLi0YxMke7wzRC3j246yrzLt28ntDBjr4fB3+uFZtQ==} dependencies: - '@cspell/dict-data-science': 1.0.10 + '@cspell/dict-data-science': 1.0.11 dev: true /@cspell/dict-r@2.0.1: @@ -8593,8 +8718,8 @@ packages: resolution: {integrity: sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==} dev: true - /@cspell/dict-software-terms@3.2.1: - resolution: {integrity: sha512-+QXmyoONVc/3aNgKW+0F0u3XUCRTfNRkWKLZQA78i+9fOfde8ZT4JmROmZgRveH/MxD4n6pNFceIRcYI6C8WuQ==} + /@cspell/dict-software-terms@3.2.2: + resolution: {integrity: sha512-DmdS/qAyJVmKKku4ab89HVZhsvRIk84HoPUVIZ/zJhmuCO+LF45Ylzy1/7G32MYLjbG/o1Ze3UvbaE9HY4FKKA==} dev: true /@cspell/dict-sql@2.1.1: @@ -8662,7 +8787,7 @@ packages: '@algolia/autocomplete-core': 1.6.3 '@docsearch/css': 3.1.0 '@types/react': 17.0.45 - algoliasearch: 4.19.1 + algoliasearch: 4.18.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -8687,7 +8812,7 @@ packages: resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} dependencies: '@babel/helper-module-imports': 7.22.5 - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 '@emotion/serialize': 1.1.2 @@ -8737,7 +8862,7 @@ packages: resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} dev: false - /@emotion/react@11.11.1(@types/react@18.2.14)(react@18.2.0): + /@emotion/react@11.11.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==} peerDependencies: '@types/react': '*' @@ -8746,14 +8871,14 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 '@emotion/babel-plugin': 11.11.0 '@emotion/cache': 11.11.0 '@emotion/serialize': 1.1.2 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 - '@types/react': 18.2.14 + '@types/react': 18.2.15 hoist-non-react-statics: 3.3.2 react: 18.2.0 dev: false @@ -8765,14 +8890,14 @@ packages: '@emotion/memoize': 0.8.1 '@emotion/unitless': 0.8.1 '@emotion/utils': 1.2.1 - csstype: 3.1.2 + csstype: 3.1.1 dev: false /@emotion/sheet@1.2.2: resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} dev: false - /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.14)(react@18.2.0): + /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 @@ -8782,14 +8907,14 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 '@emotion/babel-plugin': 11.11.0 '@emotion/is-prop-valid': 1.2.1 - '@emotion/react': 11.11.1(@types/react@18.2.14)(react@18.2.0) + '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0) '@emotion/serialize': 1.1.2 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) '@emotion/utils': 1.2.1 - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 dev: false @@ -8811,6 +8936,7 @@ packages: react: '>=16.8.0' dependencies: react: 18.2.0 + dev: false /@emotion/utils@1.2.1: resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} @@ -8845,8 +8971,8 @@ packages: requiresBuild: true optional: true - /@esbuild/android-arm64@0.18.20: - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + /@esbuild/android-arm64@0.18.12: + resolution: {integrity: sha512-BMAlczRqC/LUt2P97E4apTBbkvS9JTJnp2DKFbCwpZ8vBvXVbNdqmvzW/OsdtI/+mGr+apkkpqGM8WecLkPgrA==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -8886,8 +9012,8 @@ packages: requiresBuild: true optional: true - /@esbuild/android-arm@0.18.20: - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + /@esbuild/android-arm@0.18.12: + resolution: {integrity: sha512-LIxaNIQfkFZbTLb4+cX7dozHlAbAshhFE5PKdro0l+FnCpx1GDJaQ2WMcqm+ToXKMt8p8Uojk/MFRuGyz3V5Sw==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -8919,8 +9045,8 @@ packages: requiresBuild: true optional: true - /@esbuild/android-x64@0.18.20: - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + /@esbuild/android-x64@0.18.12: + resolution: {integrity: sha512-zU5MyluNsykf5cOJ0LZZZjgAHbhPJ1cWfdH1ZXVMXxVMhEV0VZiZXQdwBBVvmvbF28EizeK7obG9fs+fpmS0eQ==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -8952,8 +9078,8 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-arm64@0.18.20: - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + /@esbuild/darwin-arm64@0.18.12: + resolution: {integrity: sha512-zUZMep7YONnp6954QOOwEBwFX9svlKd3ov6PkxKd53LGTHsp/gy7vHaPGhhjBmEpqXEXShi6dddjIkmd+NgMsA==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -8985,8 +9111,8 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-x64@0.18.20: - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + /@esbuild/darwin-x64@0.18.12: + resolution: {integrity: sha512-ohqLPc7i67yunArPj1+/FeeJ7AgwAjHqKZ512ADk3WsE3FHU9l+m5aa7NdxXr0HmN1bjDlUslBjWNbFlD9y12Q==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -9018,8 +9144,8 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-arm64@0.18.20: - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + /@esbuild/freebsd-arm64@0.18.12: + resolution: {integrity: sha512-GIIHtQXqgeOOqdG16a/A9N28GpkvjJnjYMhOnXVbn3EDJcoItdR58v/pGN31CHjyXDc8uCcRnFWmqaJt24AYJg==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -9051,8 +9177,8 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-x64@0.18.20: - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + /@esbuild/freebsd-x64@0.18.12: + resolution: {integrity: sha512-zK0b9a1/0wZY+6FdOS3BpZcPc1kcx2G5yxxfEJtEUzVxI6n/FrC2Phsxj/YblPuBchhBZ/1wwn7AyEBUyNSa6g==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -9084,8 +9210,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm64@0.18.20: - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + /@esbuild/linux-arm64@0.18.12: + resolution: {integrity: sha512-JKgG8Q/LL/9sw/iHHxQyVMoQYu3rU3+a5Z87DxC+wAu3engz+EmctIrV+FGOgI6gWG1z1+5nDDbXiRMGQZXqiw==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -9117,8 +9243,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm@0.18.20: - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + /@esbuild/linux-arm@0.18.12: + resolution: {integrity: sha512-y75OijvrBE/1XRrXq1jtrJfG26eHeMoqLJ2dwQNwviwTuTtHGCojsDO6BJNF8gU+3jTn1KzJEMETytwsFSvc+Q==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -9150,8 +9276,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ia32@0.18.20: - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + /@esbuild/linux-ia32@0.18.12: + resolution: {integrity: sha512-yoRIAqc0B4lDIAAEFEIu9ttTRFV84iuAl0KNCN6MhKLxNPfzwCBvEMgwco2f71GxmpBcTtn7KdErueZaM2rEvw==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -9191,8 +9317,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64@0.18.20: - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + /@esbuild/linux-loong64@0.18.12: + resolution: {integrity: sha512-qYgt3dHPVvf/MgbIBpJ4Sup/yb9DAopZ3a2JgMpNKIHUpOdnJ2eHBo/aQdnd8dJ21X/+sS58wxHtA9lEazYtXQ==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -9224,8 +9350,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-mips64el@0.18.20: - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + /@esbuild/linux-mips64el@0.18.12: + resolution: {integrity: sha512-wHphlMLK4ufNOONqukELfVIbnGQJrHJ/mxZMMrP2jYrPgCRZhOtf0kC4yAXBwnfmULimV1qt5UJJOw4Kh13Yfg==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -9257,8 +9383,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ppc64@0.18.20: - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + /@esbuild/linux-ppc64@0.18.12: + resolution: {integrity: sha512-TeN//1Ft20ZZW41+zDSdOI/Os1bEq5dbvBvYkberB7PHABbRcsteeoNVZFlI0YLpGdlBqohEpjrn06kv8heCJg==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -9290,8 +9416,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-riscv64@0.18.20: - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + /@esbuild/linux-riscv64@0.18.12: + resolution: {integrity: sha512-AgUebVS4DoAblBgiB2ACQ/8l4eGE5aWBb8ZXtkXHiET9mbj7GuWt3OnsIW/zX+XHJt2RYJZctbQ2S/mDjbp0UA==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -9323,8 +9449,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-s390x@0.18.20: - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + /@esbuild/linux-s390x@0.18.12: + resolution: {integrity: sha512-dJ3Rb3Ei2u/ysSXd6pzleGtfDdc2MuzKt8qc6ls8vreP1G3B7HInX3i7gXS4BGeVd24pp0yqyS7bJ5NHaI9ing==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -9356,8 +9482,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-x64@0.18.20: - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + /@esbuild/linux-x64@0.18.12: + resolution: {integrity: sha512-OrNJMGQbPaVyHHcDF8ybNSwu7TDOfX8NGpXCbetwOSP6txOJiWlgQnRymfC9ocR1S0Y5PW0Wb1mV6pUddqmvmQ==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -9389,8 +9515,8 @@ packages: requiresBuild: true optional: true - /@esbuild/netbsd-x64@0.18.20: - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + /@esbuild/netbsd-x64@0.18.12: + resolution: {integrity: sha512-55FzVCAiwE9FK8wWeCRuvjazNRJ1QqLCYGZVB6E8RuQuTeStSwotpSW4xoRGwp3a1wUsaVCdYcj5LGCASVJmMg==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -9422,8 +9548,8 @@ packages: requiresBuild: true optional: true - /@esbuild/openbsd-x64@0.18.20: - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + /@esbuild/openbsd-x64@0.18.12: + resolution: {integrity: sha512-qnluf8rfb6Y5Lw2tirfK2quZOBbVqmwxut7GPCIJsM8lc4AEUj9L8y0YPdLaPK0TECt4IdyBdBD/KRFKorlK3g==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -9455,8 +9581,8 @@ packages: requiresBuild: true optional: true - /@esbuild/sunos-x64@0.18.20: - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + /@esbuild/sunos-x64@0.18.12: + resolution: {integrity: sha512-+RkKpVQR7bICjTOPUpkTBTaJ4TFqQBX5Ywyd/HSdDkQGn65VPkTsR/pL4AMvuMWy+wnXgIl4EY6q4mVpJal8Kg==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -9488,8 +9614,8 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-arm64@0.18.20: - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + /@esbuild/win32-arm64@0.18.12: + resolution: {integrity: sha512-GNHuciv0mFM7ouzsU0+AwY+7eV4Mgo5WnbhfDCQGtpvOtD1vbOiRjPYG6dhmMoFyBjj+pNqQu2X+7DKn0KQ/Gw==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -9521,8 +9647,8 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-ia32@0.18.20: - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + /@esbuild/win32-ia32@0.18.12: + resolution: {integrity: sha512-kR8cezhYipbbypGkaqCTWIeu4zID17gamC8YTPXYtcN3E5BhhtTnwKBn9I0PJur/T6UVwIEGYzkffNL0lFvxEw==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -9554,8 +9680,8 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-x64@0.18.20: - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + /@esbuild/win32-x64@0.18.12: + resolution: {integrity: sha512-O0UYQVkvfM/jO8a4OwoV0mAKSJw+mjWTAd1MJd/1FCX6uiMdLmMRPK/w6e9OQ0ob2WGxzIm9va/KG0Ja4zIOgg==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -9569,7 +9695,7 @@ packages: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: eslint: 8.22.0 - eslint-visitor-keys: 3.4.2 + eslint-visitor-keys: 3.4.1 dev: true /@eslint-community/eslint-utils@4.4.0(eslint@8.36.0): @@ -9579,7 +9705,7 @@ packages: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: eslint: 8.36.0 - eslint-visitor-keys: 3.4.2 + eslint-visitor-keys: 3.4.1 dev: true /@eslint-community/eslint-utils@4.4.0(eslint@8.38.0): @@ -9589,7 +9715,7 @@ packages: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: eslint: 8.38.0 - eslint-visitor-keys: 3.4.2 + eslint-visitor-keys: 3.4.1 dev: true /@eslint-community/eslint-utils@4.4.0(eslint@8.44.0): @@ -9599,17 +9725,7 @@ packages: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: eslint: 8.44.0 - eslint-visitor-keys: 3.4.2 - dev: true - - /@eslint-community/eslint-utils@4.4.0(eslint@8.46.0): - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - dependencies: - eslint: 8.46.0 - eslint-visitor-keys: 3.4.2 + eslint-visitor-keys: 3.4.1 dev: true /@eslint-community/regexpp@4.4.1: @@ -9617,18 +9733,13 @@ packages: engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true - /@eslint-community/regexpp@4.6.2: - resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - dev: true - /@eslint/eslintrc@1.4.1: resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4(supports-color@8.1.1) - espree: 9.5.2 + espree: 9.6.0 globals: 13.20.0 ignore: 5.2.4 import-fresh: 3.3.0 @@ -9644,7 +9755,7 @@ packages: dependencies: ajv: 6.12.6 debug: 4.3.4(supports-color@8.1.1) - espree: 9.5.2 + espree: 9.6.0 globals: 13.20.0 ignore: 5.2.4 import-fresh: 3.3.0 @@ -9672,13 +9783,13 @@ packages: - supports-color dev: true - /@eslint/eslintrc@2.1.1: - resolution: {integrity: sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==} + /@eslint/eslintrc@2.1.0: + resolution: {integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4(supports-color@8.1.1) - espree: 9.6.1 + espree: 9.6.0 globals: 13.20.0 ignore: 5.2.4 import-fresh: 3.3.0 @@ -9704,11 +9815,6 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@eslint/js@8.46.0: - resolution: {integrity: sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - /@faker-js/faker@7.6.0: resolution: {integrity: sha512-XK6BTq1NDMo9Xqw/YkYyGjSsg44fbNwYRx7QK2CuoQgyy+f1rrTDHoExVM5PsyXCtfl2vs2vVJ0MN0yN6LppRw==} engines: {node: '>=14.0.0', npm: '>=6.0.0'} @@ -9753,6 +9859,7 @@ packages: /@floating-ui/core@1.3.1: resolution: {integrity: sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g==} + dev: false /@floating-ui/dom@0.5.4: resolution: {integrity: sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==} @@ -9764,6 +9871,7 @@ packages: resolution: {integrity: sha512-loCXUOLzIC3jp50RFOKXZ/kQjjz26ryr/23M+FWG9jrmAv8lRf3DUfC2AiVZ3+K316GOhB08CR+Povwz8e9mDw==} dependencies: '@floating-ui/core': 1.3.1 + dev: false /@floating-ui/react-dom@0.7.2(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==} @@ -9802,6 +9910,7 @@ packages: '@floating-ui/dom': 1.4.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@fontsource/inter@4.5.15: resolution: {integrity: sha512-FzleM9AxZQK2nqsTDtBiY0PMEVWvnKnuu2i09+p6DHvrHsuucoV2j0tmw+kAT3L4hvsLdAIDv6MdGehsPIdT+Q==} @@ -10374,7 +10483,7 @@ packages: chalk: 4.1.2 dev: true - /@joshwooding/vite-plugin-react-docgen-typescript@0.2.1(typescript@4.9.5)(vite@4.4.9): + /@joshwooding/vite-plugin-react-docgen-typescript@0.2.1(typescript@4.9.5)(vite@4.4.6): resolution: {integrity: sha512-ou4ZJSXMMWHqGS4g8uNRbC5TiTWxAgQZiVucoUrOCWuPrTbkpJbmVyIi9jU72SBry7gQtuMEDp4YR8EEXAg7VQ==} peerDependencies: typescript: '>= 4.3.x' @@ -10388,10 +10497,10 @@ packages: magic-string: 0.27.0 react-docgen-typescript: 2.2.2(typescript@4.9.5) typescript: 4.9.5 - vite: 4.4.9(@types/node@20.4.1)(less@4.2.0) + vite: 4.4.6(@types/node@20.4.1)(less@4.1.3) dev: true - /@joshwooding/vite-plugin-react-docgen-typescript@0.2.1(typescript@5.1.6)(vite@4.4.9): + /@joshwooding/vite-plugin-react-docgen-typescript@0.2.1(typescript@5.1.6)(vite@4.4.6): resolution: {integrity: sha512-ou4ZJSXMMWHqGS4g8uNRbC5TiTWxAgQZiVucoUrOCWuPrTbkpJbmVyIi9jU72SBry7gQtuMEDp4YR8EEXAg7VQ==} peerDependencies: typescript: '>= 4.3.x' @@ -10405,10 +10514,10 @@ packages: magic-string: 0.27.0 react-docgen-typescript: 2.2.2(typescript@5.1.6) typescript: 5.1.6 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) dev: true - /@joshwooding/vite-plugin-react-docgen-typescript@0.2.2(typescript@4.9.5)(vite@4.4.9): + /@joshwooding/vite-plugin-react-docgen-typescript@0.2.2(typescript@4.9.5)(vite@4.4.6): resolution: {integrity: sha512-BlArZRyCNaQXo9jSW1crabSqdQXlgIB9bh3W7WpKTeopUFy2PqOkVFdOv3FvvcJOu0A3pC/ECyQMiXxXK547MQ==} peerDependencies: typescript: '>= 4.3.x' @@ -10420,7 +10529,7 @@ packages: magic-string: 0.27.0 react-docgen-typescript: 2.2.2(typescript@4.9.5) typescript: 4.9.5 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) dev: true /@jridgewell/gen-mapping@0.1.1: @@ -10435,7 +10544,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.17 /@jridgewell/resolve-uri@3.1.0: @@ -10458,7 +10567,6 @@ packages: /@jridgewell/sourcemap-codec@1.4.15: resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - dev: true /@jridgewell/trace-mapping@0.3.17: resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} @@ -10479,10 +10587,6 @@ packages: resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} dev: true - /@ljharb/has-package-exports-patterns@0.0.2: - resolution: {integrity: sha512-4/RWEeXDO6bocPONheFe6gX/oQdP/bEpv0oL4HqjPP5DCenBSt0mHgahppY49N0CpsaqffdwPq+TlX9CYOq2Dw==} - dev: false - /@lukeed/csprng@1.0.1: resolution: {integrity: sha512-uSvJdwQU5nK+Vdf6zxcWAY2A8r7uqe+gePwLWzJ+fsQehq18pc0I2hJKwypZ2aLM90+Er9u1xn4iLJPZ+xlL4g==} engines: {node: '>=8'} @@ -10499,7 +10603,7 @@ packages: /@manypkg/find-root@1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -10508,7 +10612,7 @@ packages: /@manypkg/get-packages@1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -10527,7 +10631,7 @@ packages: nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 - semver: 7.5.4 + semver: 7.5.3 tar: 6.1.13 transitivePeerDependencies: - encoding @@ -10564,7 +10668,7 @@ packages: react: '>=16' dependencies: '@types/mdx': 2.0.3 - '@types/react': 18.2.19 + '@types/react': 18.2.15 react: 18.2.0 dev: true @@ -10600,7 +10704,7 @@ packages: '@rushstack/ts-command-line': 4.13.2 colors: 1.2.5 lodash: 4.17.21 - resolve: 1.22.4 + resolve: 1.22.2 semver: 7.3.8 source-map: 0.6.1 typescript: 4.8.4 @@ -10620,7 +10724,7 @@ packages: '@rushstack/ts-command-line': 4.13.2 colors: 1.2.5 lodash: 4.17.21 - resolve: 1.22.4 + resolve: 1.22.2 semver: 7.3.8 source-map: 0.6.1 typescript: 4.8.4 @@ -10710,8 +10814,8 @@ packages: transitivePeerDependencies: - supports-color - /@mui/base@5.0.0-beta.10(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-moTAhGwFfQffj7hsu61FnqcGqVcd53A1CrOhnskM9TF0Uh2rnLDMCuar4JRUWWpaJofAfQEbQBBFPadFQLI4PA==} + /@mui/base@5.0.0-beta.13(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-uC0l97pBspfDAp+iz2cJq8YZ8Sd9i73V77+WzUiOAckIVEyCm5dyVDZCCO2/phmzckVEeZCGcytybkjMQuhPQw==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -10721,12 +10825,13 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@emotion/is-prop-valid': 1.2.1 - '@mui/types': 7.2.4(@types/react@18.2.14) - '@mui/utils': 5.14.4(react@18.2.0) + '@floating-ui/react-dom': 2.0.1(react-dom@18.2.0)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.15) + '@mui/utils': 5.14.7(react@18.2.0) '@popperjs/core': 2.11.8 - '@types/react': 18.2.14 + '@types/react': 18.2.15 clsx: 2.0.0 prop-types: 15.8.1 react: 18.2.0 @@ -10734,12 +10839,36 @@ packages: react-is: 18.2.0 dev: false - /@mui/core-downloads-tracker@5.14.4: - resolution: {integrity: sha512-pW2XghSi3hpYKX57Wu0SCWMTSpzvXZmmucj3TcOJWaCiFt4xr05w2gcwBZi36dAp9uvd9//9N51qbblmnD+GPg==} + /@mui/base@5.0.0-beta.8(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-b4vVjMZx5KzzEMf4arXKoeV5ZegAMOoPwoy1vfUBwhvXc2QtaaAyBp50U7OA2L06Leubc1A+lEp3eqwZoFn87g==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.22.11 + '@emotion/is-prop-valid': 1.2.1 + '@mui/types': 7.2.4(@types/react@18.2.15) + '@mui/utils': 5.14.7(react@18.2.0) + '@popperjs/core': 2.11.8 + '@types/react': 18.2.15 + clsx: 1.2.1 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-is: 18.2.0 dev: false - /@mui/material@5.14.4(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-2XUV3KyRC07BQPPzEgd+ss3x/ezXtHeKtOGCMCNmx3MauZojPYUpSwFkE0fYgYCD9dMQMVG4DY/VF38P0KShsg==} + /@mui/core-downloads-tracker@5.14.7: + resolution: {integrity: sha512-sCWTUNElBPgB30iLvWe3PU7SIlTKZNf6/E/sko85iHVeHCM6WPkDw+y89CrZYjhFNmPqt2fIQM/pZu+rP2lFLA==} + dev: false + + /@mui/material@5.14.2(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-TgNR4/YRL11RifsnMWNhITNCkGJYVz20SCvVJBBoU5Y/KhUNSSJxjDpEB8VrnY+sUsV0NigLCkHZJglfsiS3Pw==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -10755,17 +10884,17 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@emotion/react': 11.11.1(@types/react@18.2.14)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.14)(react@18.2.0) - '@mui/base': 5.0.0-beta.10(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@mui/core-downloads-tracker': 5.14.4 - '@mui/system': 5.14.4(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.14)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.14) - '@mui/utils': 5.14.4(react@18.2.0) - '@types/react': 18.2.14 + '@babel/runtime': 7.22.11 + '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0) + '@mui/base': 5.0.0-beta.8(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@mui/core-downloads-tracker': 5.14.7 + '@mui/system': 5.14.7(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.15) + '@mui/utils': 5.14.7(react@18.2.0) + '@types/react': 18.2.15 '@types/react-transition-group': 4.4.6 - clsx: 2.0.0 + clsx: 1.2.1 csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 @@ -10774,8 +10903,8 @@ packages: react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) dev: false - /@mui/private-theming@5.14.4(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-ISXsHDiQ3z1XA4IuKn+iXDWvDjcz/UcQBiFZqtdoIsEBt8CB7wgdQf3LwcwqO81dl5ofg/vNQBEnXuKfZHrnYA==} + /@mui/private-theming@5.14.7(@types/react@18.2.15)(react@18.2.0): + resolution: {integrity: sha512-Y86+hmDnJab2Ka42PgxKpK3oL7EiacbeeX3X/lG9LGO0wSc45wZjHeTfIlVSkkUCkexiMKEJp5NlSjZhr27NRQ==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -10784,15 +10913,15 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@mui/utils': 5.14.4(react@18.2.0) - '@types/react': 18.2.14 + '@babel/runtime': 7.22.11 + '@mui/utils': 5.14.7(react@18.2.0) + '@types/react': 18.2.15 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/styled-engine@5.13.2(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0): - resolution: {integrity: sha512-VCYCU6xVtXOrIN8lcbuPmoG+u7FYuOERG++fpY74hPpEWkyFQG97F+/XfTQVYzlR2m7nPjnwVUgATcTCMEaMvw==} + /@mui/styled-engine@5.14.7(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0): + resolution: {integrity: sha512-hKBETEDsIAkL8/mBwPiQj/vw28OeIhMXC3Tvj4J2bb9snxAKpiZioR1PwqP+6P41twsC/GKBd0Vr9oaWYaHuMg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.4.1 @@ -10804,17 +10933,17 @@ packages: '@emotion/styled': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.1(@types/react@18.2.14)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.14)(react@18.2.0) + '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0) csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/system@5.14.4(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-oPgfWS97QNfHcDBapdkZIs4G5i85BJt69Hp6wbXF6s7vi3Evcmhdk8AbCRW6n0sX4vTj8oe0mh0RIm1G2A1KDA==} + /@mui/system@5.14.7(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(react@18.2.0): + resolution: {integrity: sha512-jeZtHglc+Pi6qjGoopT6O4RqYXVBMqHVOsjMGP0hxGSSPm1T4gsAu7jU8eqGx9YwwjvvJ0eotTjFqw7iJ6qE2Q==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -10829,21 +10958,21 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@emotion/react': 11.11.1(@types/react@18.2.14)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.14)(react@18.2.0) - '@mui/private-theming': 5.14.4(@types/react@18.2.14)(react@18.2.0) - '@mui/styled-engine': 5.13.2(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.14) - '@mui/utils': 5.14.4(react@18.2.0) - '@types/react': 18.2.14 + '@babel/runtime': 7.22.11 + '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0) + '@mui/private-theming': 5.14.7(@types/react@18.2.15)(react@18.2.0) + '@mui/styled-engine': 5.14.7(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.15) + '@mui/utils': 5.14.7(react@18.2.0) + '@types/react': 18.2.15 clsx: 2.0.0 csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/types@7.2.4(@types/react@18.2.14): + /@mui/types@7.2.4(@types/react@18.2.15): resolution: {integrity: sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==} peerDependencies: '@types/react': '*' @@ -10851,16 +10980,16 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.14 + '@types/react': 18.2.15 dev: false - /@mui/utils@5.14.4(react@18.2.0): - resolution: {integrity: sha512-4ANV0txPD3x0IcTCSEHKDWnsutg1K3m6Vz5IckkbLXVYu17oOZCVUdOKsb/txUmaCd0v0PmSRe5PW+Mlvns5dQ==} + /@mui/utils@5.14.7(react@18.2.0): + resolution: {integrity: sha512-RtheP/aBoPogVdi8vj8Vo2IFnRa4mZVmnD0RGlVZ49yF60rZs+xP4/KbpIrTr83xVs34QmHQ2aQ+IX7I0a0dDw==} engines: {node: '>=12.0.0'} peerDependencies: react: ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@types/prop-types': 15.7.5 '@types/react-is': 18.2.1 prop-types: 15.8.1 @@ -10868,8 +10997,8 @@ packages: react-is: 18.2.0 dev: false - /@mui/x-date-pickers@6.11.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.10)(@mui/material@5.14.4)(@mui/system@5.14.4)(dayjs@1.11.7)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-0NnBen60iZNBmJK7m2UU9jPZXW9RRyBL3meAupWyq+j6bLpSWG+8O2TnP1E3KFC7q66bPG6qOGOKKGfzFyR3cg==} + /@mui/x-date-pickers@6.10.2(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.13)(@mui/material@5.14.2)(@mui/system@5.14.7)(dayjs@1.11.7)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-RZHvPj5UYGdV2FoBlTbtAtg1aaJ1sbdD9LM9vSgefQWMW0vFC4fSYtFACS4ptxK/8Q0FHyuVZF5bDO+TUAPxQg==} engines: {node: '>=14.0.0'} peerDependencies: '@emotion/react': ^11.9.0 @@ -10906,15 +11035,15 @@ packages: moment-jalaali: optional: true dependencies: - '@babel/runtime': 7.22.10 - '@emotion/react': 11.11.1(@types/react@18.2.14)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.14)(react@18.2.0) - '@mui/base': 5.0.0-beta.10(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@mui/material': 5.14.4(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@mui/system': 5.14.4(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.14)(react@18.2.0) - '@mui/utils': 5.14.4(react@18.2.0) + '@babel/runtime': 7.22.11 + '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0) + '@mui/base': 5.0.0-beta.13(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@mui/material': 5.14.2(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@mui/system': 5.14.7(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(react@18.2.0) + '@mui/utils': 5.14.7(react@18.2.0) '@types/react-transition-group': 4.4.6 - clsx: 2.0.0 + clsx: 1.2.1 dayjs: 1.11.7 prop-types: 15.8.1 react: 18.2.0 @@ -11581,12 +11710,6 @@ packages: '@babel/runtime': 7.21.0 dev: false - /@radix-ui/number@1.0.1: - resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} - dependencies: - '@babel/runtime': 7.22.10 - dev: true - /@radix-ui/primitive@1.0.0: resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} dependencies: @@ -11597,6 +11720,7 @@ packages: resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} dependencies: '@babel/runtime': 7.21.0 + dev: false /@radix-ui/react-arrow@1.0.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-fqYwhhI9IarZ0ll2cUSfKuXHlJK0qE4AfnRrPBbRwEH/4mGQn04/QFGomLi8TXWIdv9WJk//KgGm+aDxVIr1wA==} @@ -11604,7 +11728,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -11623,12 +11747,13 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) '@types/react': 18.0.29 '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} @@ -11643,7 +11768,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0) '@types/react': 18.0.37 '@types/react-dom': 18.0.11 @@ -11651,7 +11776,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} peerDependencies: '@types/react': '*' @@ -11664,12 +11789,13 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@babel/runtime': 7.22.11 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-avatar@1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-9ToF7YNex3Ste45LrAeTlKtONI9yVRt/zOS158iilIkW5K/Apeyb/TUQlcEFTEFvWr8Kzdi2ZYrm1/suiXPajQ==} @@ -11701,7 +11827,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-context': 1.0.0(react@18.2.0) @@ -11742,7 +11868,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@radix-ui/react-context': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) @@ -11751,6 +11877,7 @@ packages: '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-collection@1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} @@ -11765,7 +11892,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.37)(react@18.2.0) '@radix-ui/react-context': 1.0.1(@types/react@18.0.37)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0) @@ -11776,7 +11903,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-collection@1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} peerDependencies: '@types/react': '*' @@ -11789,15 +11916,16 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@babel/runtime': 7.22.11 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-compose-refs@1.0.0(react@18.2.0): resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==} @@ -11820,6 +11948,7 @@ packages: '@babel/runtime': 7.21.0 '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-compose-refs@1.0.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} @@ -11835,7 +11964,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: '@types/react': '*' @@ -11845,8 +11974,9 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-context@1.0.0(react@18.2.0): resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==} @@ -11869,6 +11999,7 @@ packages: '@babel/runtime': 7.21.0 '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-context@1.0.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} @@ -11884,7 +12015,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-context@1.0.1(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-context@1.0.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: '@types/react': '*' @@ -11894,8 +12025,9 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-dialog@1.0.0(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==} @@ -11903,7 +12035,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-context': 1.0.0(react@18.2.0) @@ -11924,13 +12056,13 @@ packages: - '@types/react' dev: false - /@radix-ui/react-dialog@1.0.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dialog@1.0.0(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-context': 1.0.0(react@18.2.0) @@ -11946,7 +12078,7 @@ packages: aria-hidden: 1.2.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.4(@types/react@18.2.14)(react@18.2.0) + react-remove-scroll: 2.5.4(@types/react@18.2.15)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false @@ -12005,7 +12137,7 @@ packages: - '@types/react' dev: false - /@radix-ui/react-dialog@1.0.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dialog@1.0.3(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-owNhq36kNPqC2/a+zJRioPg6HHnTn5B/sh/NjTY8r4W9g1L5VJlrzZIVcBr7R9Mg8iLjVmh6MGgMlfoVf/WO/A==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -12027,7 +12159,7 @@ packages: aria-hidden: 1.2.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.15)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false @@ -12050,9 +12182,10 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-direction@1.0.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} @@ -12063,12 +12196,12 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@types/react': 18.0.37 react: 18.2.0 dev: false - /@radix-ui/react-direction@1.0.1(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-direction@1.0.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: '@types/react': '*' @@ -12077,9 +12210,10 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@types/react': 18.2.14 + '@babel/runtime': 7.22.11 + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-dismissable-layer@1.0.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-n7kDRfx+LB1zLueRDvZ1Pd0bxdJWDUZNQ/GWoxDn2prnuJKRdxsjulejX/ePkOsLi2tTm6P24mDqlMSgQpsT6g==} @@ -12087,7 +12221,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0) @@ -12126,7 +12260,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) @@ -12136,6 +12270,7 @@ packages: '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} @@ -12150,7 +12285,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.37)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0) @@ -12162,7 +12297,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} peerDependencies: '@types/react': '*' @@ -12175,16 +12310,17 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-dropdown-menu@2.0.5(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-xdOrZzOTocqqkCkYo8yRPCib5OkTkqN7lqNCdxwPOdE466DOaNl4N8PkUIlsXthQvW5Wwkd+aEmWpfWlBoDPEw==} @@ -12240,7 +12376,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-dropdown-menu@2.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dropdown-menu@2.0.5(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-xdOrZzOTocqqkCkYo8yRPCib5OkTkqN7lqNCdxwPOdE466DOaNl4N8PkUIlsXthQvW5Wwkd+aEmWpfWlBoDPEw==} peerDependencies: '@types/react': '*' @@ -12255,14 +12391,14 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -12285,9 +12421,10 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-focus-guards@1.0.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} @@ -12298,12 +12435,12 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@types/react': 18.0.37 react: 18.2.0 dev: false - /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: '@types/react': '*' @@ -12312,9 +12449,10 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@types/react': 18.2.14 + '@babel/runtime': 7.22.11 + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-focus-scope@1.0.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-C4SWtsULLGf/2L4oGeIHlvWQx7Rf+7cX/vKOAD2dXW0A1b5QXwi3wWeaEgW+wn+SEVrraMUk05vLU9fZZz5HbQ==} @@ -12322,7 +12460,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) @@ -12357,7 +12495,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.29)(react@18.2.0) @@ -12365,6 +12503,7 @@ packages: '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} @@ -12379,7 +12518,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.37)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.37)(react@18.2.0) @@ -12389,7 +12528,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} peerDependencies: '@types/react': '*' @@ -12402,14 +12541,15 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@babel/runtime': 7.22.11 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-hover-card@1.0.5(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-jXRuZEkxSWdHZbVyL0J46cm7pQjmOMpwJEFKY+VqAJnV+FxS+zIZExI1OCeIiDwCBzUy6If1FfouOsfqBxr86g==} @@ -12464,6 +12604,7 @@ packages: '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-id@1.0.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} @@ -12480,7 +12621,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-id@1.0.1(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-id@1.0.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: '@types/react': '*' @@ -12490,9 +12631,10 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-label@2.0.1(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-qcfbS3B8hTYmEO44RNcXB6pegkxRsJIbdxTMu0PEX0Luv5O2DvTIwwVYxQfUwLpM88EL84QRPLOLgwUSApMsLQ==} @@ -12582,7 +12724,7 @@ packages: react-remove-scroll: 2.5.5(@types/react@18.0.37)(react@18.2.0) dev: false - /@radix-ui/react-menu@2.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-menu@2.0.5(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Gw4f9pwdH+w5w+49k0gLjN0PfRDHvxmAgG16AbyJZ7zhwZ6PBHKtWohvnSwfusfnK3L68dpBREHpVkj8wEM7ZA==} peerDependencies: '@types/react': '*' @@ -12597,27 +12739,27 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 aria-hidden: 1.2.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.15)(react@18.2.0) dev: false /@radix-ui/react-popover@1.0.6(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): @@ -12655,7 +12797,7 @@ packages: react-remove-scroll: 2.5.5(@types/react@18.0.37)(react@18.2.0) dev: false - /@radix-ui/react-popover@1.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-popover@1.0.6(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-cZ4defGpkZ0qTRtlIBzJLSzL6ht7ofhhW4i1+pkemjV1IKXm0wgCRnee154qlV6r9Ttunmh2TNZhMfV2bavUyA==} peerDependencies: '@types/react': '*' @@ -12670,24 +12812,24 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 aria-hidden: 1.2.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.15)(react@18.2.0) dev: false /@radix-ui/react-popper@1.1.1(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0): @@ -12749,7 +12891,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@floating-ui/react-dom': 2.0.1(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.29)(react@18.2.0) @@ -12764,6 +12906,7 @@ packages: '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-popper@1.1.2(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} @@ -12778,7 +12921,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@floating-ui/react-dom': 2.0.1(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.37)(react@18.2.0) @@ -12795,7 +12938,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-popper@1.1.2(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} peerDependencies: '@types/react': '*' @@ -12808,21 +12951,22 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@floating-ui/react-dom': 2.0.1(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.15)(react@18.2.0) '@radix-ui/rect': 1.0.1 - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-portal@1.0.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-a8qyFO/Xb99d8wQdu4o7qnigNjTPG123uADNecz0eX4usnQEj7o+cG4ZX4zkqq98NYekT7UoEQIjxBNWIFuqTA==} @@ -12830,7 +12974,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -12861,12 +13005,13 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) '@types/react': 18.0.29 '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-portal@1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} @@ -12881,7 +13026,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0) '@types/react': 18.0.37 '@types/react-dom': 18.0.11 @@ -12889,7 +13034,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-portal@1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} peerDependencies: '@types/react': '*' @@ -12902,12 +13047,13 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@babel/runtime': 7.22.11 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-presence@1.0.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==} @@ -12935,7 +13081,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@types/react': 18.0.29 @@ -12957,7 +13103,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.37)(react@18.2.0) '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.37)(react@18.2.0) '@types/react': 18.0.37 @@ -12966,7 +13112,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-presence@1.0.1(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} peerDependencies: '@types/react': '*' @@ -12979,11 +13125,11 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@babel/runtime': 7.22.11 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -12994,7 +13140,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-slot': 1.0.0(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13006,7 +13152,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-slot': 1.0.1(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13031,6 +13177,7 @@ packages: '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} @@ -13053,7 +13200,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} peerDependencies: '@types/react': '*' @@ -13067,11 +13214,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + dev: false /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} @@ -13086,7 +13234,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.29)(react@18.2.0) @@ -13115,7 +13263,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.37)(react@18.2.0) @@ -13131,7 +13279,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} peerDependencies: '@types/react': '*' @@ -13144,18 +13292,18 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -13248,88 +13396,6 @@ packages: - '@types/react' dev: false - /@radix-ui/react-select@1.2.2(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.29)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.29)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.0.29)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.0.29)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.29)(react@18.2.0) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.29)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.29)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.29)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.29)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.0.29)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.0.29 - '@types/react-dom': 18.0.11 - aria-hidden: 1.2.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.0.29)(react@18.2.0) - dev: true - - /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - aria-hidden: 1.2.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0) - dev: true - /@radix-ui/react-separator@1.0.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-lZoAG/rS2jzb/OSvyBrpN3dmikw20ewmWx1GkM1VldbDyD0DACCbH9LIXSrqyS/2mE1VYKOHmyq5W90Dx4ryqA==} peerDependencies: @@ -13347,7 +13413,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -13371,10 +13437,11 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-slot@1.0.2(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} @@ -13385,13 +13452,13 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.37)(react@18.2.0) '@types/react': 18.0.37 react: 18.2.0 dev: false - /@radix-ui/react-slot@1.0.2(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-slot@1.0.2(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: '@types/react': '*' @@ -13400,10 +13467,11 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 + '@babel/runtime': 7.22.11 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.0.11)(@types/react@18.0.37)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==} @@ -13454,6 +13522,7 @@ packages: '@babel/runtime': 7.21.0 '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} @@ -13469,7 +13538,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: '@types/react': '*' @@ -13479,8 +13548,9 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-use-controllable-state@1.0.0(react@18.2.0): resolution: {integrity: sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg==} @@ -13505,6 +13575,7 @@ packages: '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} @@ -13521,7 +13592,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: '@types/react': '*' @@ -13531,16 +13602,17 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-use-escape-keydown@1.0.0(react@18.2.0): resolution: {integrity: sha512-JwfBCUIfhXRxKExgIqGa4CQsiMemo1Xt0W/B4ei3fpzpvPENKpMKQ8mZSB6Acj3ebrAEgi2xiQvcI1PAAodvyg==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -13550,7 +13622,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -13564,10 +13636,11 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} @@ -13578,13 +13651,13 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.37)(react@18.2.0) '@types/react': 18.0.37 react: 18.2.0 dev: false - /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: '@types/react': '*' @@ -13593,10 +13666,11 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 + '@babel/runtime': 7.22.11 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-use-layout-effect@1.0.0(react@18.2.0): resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==} @@ -13619,6 +13693,7 @@ packages: '@babel/runtime': 7.21.0 '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} @@ -13634,7 +13709,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: '@types/react': '*' @@ -13644,8 +13719,9 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-use-previous@1.0.0(react@18.2.0): resolution: {integrity: sha512-RG2K8z/K7InnOKpq6YLDmT49HGjNmrK+fr82UCVKT2sW0GYfVnYp4wZWBooT/EYfQ5faA9uIjvsuMMhH61rheg==} @@ -13656,40 +13732,12 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-use-previous@1.0.1(@types/react@18.0.29)(react@18.2.0): - resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.22.10 - '@types/react': 18.0.29 - react: 18.2.0 - dev: true - - /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.22.10 - '@types/react': 18.2.14 - react: 18.2.0 - dev: true - /@radix-ui/react-use-rect@1.0.0(react@18.2.0): resolution: {integrity: sha512-TB7pID8NRMEHxb/qQJpvSt3hQU4sqNPM1VCTjTRjEOa7cEop/QMuq8S6fb/5Tsz64kqSvB9WnwsDHtjnrM9qew==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/rect': 1.0.0 react: 18.2.0 dev: false @@ -13703,10 +13751,11 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/rect': 1.0.1 '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-use-rect@1.0.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} @@ -13717,13 +13766,13 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/rect': 1.0.1 '@types/react': 18.0.37 react: 18.2.0 dev: false - /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: '@types/react': '*' @@ -13732,17 +13781,18 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/rect': 1.0.1 - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-use-size@1.0.0(react@18.2.0): resolution: {integrity: sha512-imZ3aYcoYCKhhgNpkNDh/aTiU05qw9hX+HHI1QDBTyIlcFjgeFlKKySNGMwTp7nYFLQg/j0VA2FmCY4WPDDHMg==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -13756,10 +13806,11 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.29)(react@18.2.0) '@types/react': 18.0.29 react: 18.2.0 + dev: false /@radix-ui/react-use-size@1.0.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} @@ -13770,13 +13821,13 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.37)(react@18.2.0) '@types/react': 18.0.37 react: 18.2.0 dev: false - /@radix-ui/react-use-size@1.0.1(@types/react@18.2.14)(react@18.2.0): + /@radix-ui/react-use-size@1.0.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: '@types/react': '*' @@ -13785,10 +13836,11 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) - '@types/react': 18.2.14 + '@babel/runtime': 7.22.11 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.15)(react@18.2.0) + '@types/react': 18.2.15 react: 18.2.0 + dev: false /@radix-ui/react-visually-hidden@1.0.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-qirnJxtYn73HEk1rXL12/mXnu2rwsNHDID10th2JGtdK25T9wX+mxRmGt7iPSahw512GbZOc0syZX1nLQGoEOg==} @@ -13802,58 +13854,17 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.0.29 - '@types/react-dom': 18.0.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - - /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@babel/runtime': 7.22.10 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@radix-ui/rect@1.0.0: resolution: {integrity: sha512-d0O68AYy/9oeEy1DdC07bz1/ZXX+DqCskRd3i4JzLSTXwefzaepQrKjXC7aNM8lTHjFLDO0pDgaEiQ7jEk+HVg==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 dev: false /@radix-ui/rect@1.0.1: resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 + dev: false /@react-leaflet/core@2.1.0(leaflet@1.9.4)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==} @@ -13974,7 +13985,7 @@ packages: builtin-modules: 3.3.0 deepmerge: 4.3.1 is-module: 1.0.0 - resolve: 1.22.4 + resolve: 1.22.2 rollup: 2.70.2 dev: true @@ -14064,7 +14075,7 @@ packages: fs-extra: 7.0.1 import-lazy: 4.0.0 jju: 1.4.0 - resolve: 1.22.4 + resolve: 1.22.2 semver: 7.3.8 z-schema: 5.0.5 dev: true @@ -14082,7 +14093,7 @@ packages: fs-extra: 7.0.1 import-lazy: 4.0.0 jju: 1.4.0 - resolve: 1.22.4 + resolve: 1.22.2 semver: 7.3.8 z-schema: 5.0.5 dev: true @@ -14090,7 +14101,7 @@ packages: /@rushstack/rig-package@0.3.18: resolution: {integrity: sha512-SGEwNTwNq9bI3pkdd01yCaH+gAsHqs0uxfGvtw9b0LJXH52qooWXnrFTRRLG1aL9pf+M2CARdrA9HLHJys3jiQ==} dependencies: - resolve: 1.22.4 + resolve: 1.22.2 strip-json-comments: 3.1.1 dev: true @@ -14206,6 +14217,10 @@ packages: resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} dev: true + /@sinclair/typebox@0.31.7: + resolution: {integrity: sha512-cl6qKMXSK95aMwIzSQJeenKBtPmE1+hqts3vJe93EaSa7cIaNjz3A5yMKkgW/bAhjnOpa/yiCCV1pOG1bzzv0A==} + dev: false + /@sinonjs/commons@1.8.6: resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} dependencies: @@ -14315,11 +14330,42 @@ packages: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-inspector: 6.0.1(react@18.2.0) - telejson: 7.1.0 + telejson: 7.2.0 ts-dedent: 2.2.0 uuid-browser: 3.1.0 dev: true + /@storybook/addon-actions@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-vVoqE0Zw0g1PPnGfho8vRwjpXhQCpRNBQ/2U83/CSodHWL/MBYENG0XMby90TC72M26gNmEh0dn1YCUXvLdiew==} + 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 + dependencies: + '@storybook/client-logger': 7.0.26 + '@storybook/components': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.26 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.26 + '@storybook/theming': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.26 + dequal: 2.0.3 + lodash: 4.17.21 + polished: 4.2.2 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-inspector: 6.0.1(react@18.2.0) + telejson: 7.1.0 + ts-dedent: 2.2.0 + uuid: 9.0.0 + dev: true + /@storybook/addon-actions@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-JQfcR1AjVWE/M4ayxfyCU/qSj5Jf5djKgvan0YaxTjtQr9tzIgTc93jeF+IPJMnv7ZoaeDW6BS/6n+zSDqJeTg==} peerDependencies: @@ -14346,7 +14392,7 @@ packages: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-inspector: 6.0.1(react@18.2.0) - telejson: 7.1.0 + telejson: 7.2.0 ts-dedent: 2.2.0 uuid: 9.0.0 dev: true @@ -14376,6 +14422,31 @@ packages: ts-dedent: 2.2.0 dev: true + /@storybook/addon-backgrounds@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-sjTkOnSsVBBl1GruVVsNKWEuLCbKjkNun1mzIklfYAiHz9hTZIhe9MA2SGZoDozMUDIXQqSoMDEc3rnDtfqsnQ==} + 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 + dependencies: + '@storybook/client-logger': 7.0.26 + '@storybook/components': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.26 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.26 + '@storybook/theming': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.26 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + ts-dedent: 2.2.0 + dev: true + /@storybook/addon-backgrounds@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-6hSzERmm4z1j/CGSsjefa18qSgX/GnkIZ+2lA0Ju5M478UL60/m0C7fBkL5xDbNKMpuSPhO5oBSYevWbLrMX5g==} peerDependencies: @@ -14429,6 +14500,35 @@ packages: - supports-color dev: true + /@storybook/addon-controls@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-mp1WuOYCPvR33orHn0XPABY5roF9Le8HnZwTpvfkrRMeMqLnYLnkCTZqY3JN/IOVlyQuYdqodP5CPDHNDLmvVg==} + 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 + dependencies: + '@storybook/blocks': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.0.26 + '@storybook/components': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-common': 7.0.26 + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/node-logger': 7.0.26 + '@storybook/preview-api': 7.0.26 + '@storybook/theming': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.26 + lodash: 4.17.21 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + ts-dedent: 2.2.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/addon-controls@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-uw1ynZTFM+ABdd5Dj6iTT3r+fTIY1ljZ09jITszlPENNM9SphCX8lAT0w+8wRVQlbn0mVY0amm2/GtV1sgt+Nw==} peerDependencies: @@ -14495,6 +14595,40 @@ packages: - supports-color dev: true + /@storybook/addon-docs@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-C8DOwfmPBWDUS1IJbyJxykgVVHVzSSL+JFh3FwtF0hsqwjlNW4OvGDFbz0oAxyxs4V46xVcvh4E95e3GkW36BQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@babel/core': 7.22.5 + '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.5) + '@jest/transform': 29.5.0 + '@mdx-js/react': 2.3.0(react@18.2.0) + '@storybook/blocks': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.0.26 + '@storybook/components': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/csf-plugin': 7.0.26 + '@storybook/csf-tools': 7.0.26 + '@storybook/global': 5.0.0 + '@storybook/mdx2-csf': 1.1.0 + '@storybook/node-logger': 7.0.26 + '@storybook/postinstall': 7.0.26 + '@storybook/preview-api': 7.0.26 + '@storybook/react-dom-shim': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.26 + fs-extra: 11.1.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + remark-external-links: 8.0.0 + remark-slug: 6.1.0 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/addon-docs@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-WH8oODVMr56Zxso6nnbikyph10jNKWyttuSxjksNClogaOPVAIWzglGa8TiGygzurzwZYkMsNWliUKsG4X32nw==} peerDependencies: @@ -14554,6 +14688,33 @@ packages: - supports-color dev: true + /@storybook/addon-essentials@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-r+IOtxbIqlCKO8fDgLppubYm+GEW3ZDxjPwXMQdDGem9ENpz0QLKb49r89+UYqnnaYjuYKjDNUOqy0gX2HfUXQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@storybook/addon-actions': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-backgrounds': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-controls': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-docs': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-highlight': 7.0.26 + '@storybook/addon-measure': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-outline': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-toolbars': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-viewport': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-common': 7.0.26 + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/node-logger': 7.0.26 + '@storybook/preview-api': 7.0.26 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + ts-dedent: 2.2.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/addon-essentials@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-KCNSQIPC5g1EJLqKQx0Ink91PytbL2YAv7DPXCkfmWyXKilK+u00cZeViqCt2EF9Q5LPzrTkw2wRvAv85UrHZQ==} peerDependencies: @@ -14589,6 +14750,14 @@ packages: '@storybook/preview-api': 7.0.0-rc.10 dev: true + /@storybook/addon-highlight@7.0.26: + resolution: {integrity: sha512-+I+MoM7yXCA3YR2FwTSxSs6/IBpcc3Ey88WboGthR23ERmsgZOtum1S7KZ6cffNCOq4U0LzPkjKX2bICytFrIQ==} + dependencies: + '@storybook/core-events': 7.0.26 + '@storybook/global': 5.0.0 + '@storybook/preview-api': 7.0.26 + dev: true + /@storybook/addon-highlight@7.1.0: resolution: {integrity: sha512-h7kSFq4AZt+Y8ULCi76En3B2T9LZTba1zq1Om7EhmUQMzhCOhwnWqd5syxAwbmfCv7brQRvFaC1RP4DY9YtRLA==} dependencies: @@ -14627,6 +14796,37 @@ packages: - supports-color dev: true + /@storybook/addon-interactions@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-trIbPFLdxF6XgGORhx8eSGmGZ/4/AekJyFluf2lgutGi4TPL5Xzrx3o1kTFPVdLAPplBuDIlVI4HSGHHH2zeTw==} + 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 + dependencies: + '@storybook/client-logger': 7.0.26 + '@storybook/components': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-common': 7.0.26 + '@storybook/core-events': 7.0.26 + '@storybook/global': 5.0.0 + '@storybook/instrumenter': 7.0.26 + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.26 + '@storybook/theming': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.26 + jest-mock: 27.5.1 + polished: 4.2.2 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + ts-dedent: 2.2.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/addon-interactions@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-/szt1p22FIi96krgNGDe7YQQAjIo/Xfr6WJNiIBNEHz5Qh8uycFPn16k3YJBHIi0FLFVBdqBmrdp6IX+9TCxgQ==} peerDependencies: @@ -14683,6 +14883,31 @@ packages: ts-dedent: 2.2.0 dev: true + /@storybook/addon-links@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-og+8AUAUpHsT+MVjhdQmRNJw9RUkHn5FFoou003b9V4UlPPNDYTo/tNEqOhUXn2l/ESAROJlR/q/8Qjdes24pA==} + 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 + dependencies: + '@storybook/client-logger': 7.0.26 + '@storybook/core-events': 7.0.26 + '@storybook/csf': 0.1.0 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.26 + '@storybook/router': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.26 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + ts-dedent: 2.2.0 + dev: true + /@storybook/addon-links@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-1cEALwRfev7s/NDTJYwn6tg3JZv8zSwd12NMRWhc/PZdCMQf/X1TtOPqz/l3jqTkjANMQA+hxCNRNl4otPD1XQ==} peerDependencies: @@ -14730,6 +14955,28 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true + /@storybook/addon-measure@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-iAnI6q3GB8uSydK+S4m4ANpy0GpMpHhmU0oBtu6OmyyzHUH1RJ7/fGfBnzx6YT+rIOlqSFocxYGn74ylsp33Wg==} + 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 + dependencies: + '@storybook/client-logger': 7.0.26 + '@storybook/components': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.26 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.26 + '@storybook/types': 7.0.26 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: true + /@storybook/addon-measure@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-GUqsjU/TyrTyt+U0XkEJ3esEzfwxq9VtQi+HpIwUSVxJJmkyPX+LQROLWL8g+07YeytniWpyWAcfsk1jDbV8eQ==} peerDependencies: @@ -14776,6 +15023,29 @@ packages: ts-dedent: 2.2.0 dev: true + /@storybook/addon-outline@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-oL7D0IWO0M6hMw5cWEC6JdKXlGadlVIdhIrVN+0gdFxuxCHTGpebQ02DCvyfls29UssEOxPaO1XMdu9tDlctbg==} + 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 + dependencies: + '@storybook/client-logger': 7.0.26 + '@storybook/components': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.26 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.26 + '@storybook/types': 7.0.26 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + ts-dedent: 2.2.0 + dev: true + /@storybook/addon-outline@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-cOcyxcc80oGOm53xFInCQW1kJjX/jcrS3VQXoVUkIXf2NmwnOTp7MbkDqjCiiE0h/Za9QIqkbsTk/DrJvl905Q==} peerDependencies: @@ -14799,7 +15069,7 @@ packages: ts-dedent: 2.2.0 dev: true - /@storybook/addon-styling@1.3.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(less@4.2.0)(postcss@8.4.27)(react-dom@18.2.0)(react@18.2.0)(webpack@5.76.2): + /@storybook/addon-styling@1.3.2(less@4.1.3)(postcss@8.4.27)(react-dom@18.2.0)(react@18.2.0)(webpack@5.76.2): resolution: {integrity: sha512-pxc2ncCH3jlOjsJFOmUECxIFvC4jmUxd0noeEC4shGfKvGhsssHpxcVtA36+s3JhDdx+Yhrk/0KeYoMe+35/qg==} hasBin: true peerDependencies: @@ -14813,17 +15083,17 @@ packages: dependencies: '@babel/template': 7.22.5 '@babel/types': 7.22.5 - '@storybook/api': 7.2.1(react-dom@18.2.0)(react@18.2.0) - '@storybook/components': 7.2.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-common': 7.2.1 - '@storybook/core-events': 7.2.1 - '@storybook/manager-api': 7.2.1(react-dom@18.2.0)(react@18.2.0) - '@storybook/node-logger': 7.2.1 - '@storybook/preview-api': 7.2.1 - '@storybook/theming': 7.2.1(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.2.1 + '@storybook/api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-common': 7.0.27 + '@storybook/core-events': 7.0.27 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/node-logger': 7.0.27 + '@storybook/preview-api': 7.0.27 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 css-loader: 6.8.1(webpack@5.76.2) - less-loader: 11.1.3(less@4.2.0)(webpack@5.76.2) + less-loader: 11.1.3(less@4.1.3)(webpack@5.76.2) postcss-loader: 7.3.3(postcss@8.4.27)(webpack@5.76.2) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -14831,8 +15101,6 @@ packages: sass-loader: 13.3.2(webpack@5.76.2) style-loader: 3.3.3(webpack@5.76.2) transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - encoding - fibers - less @@ -14864,6 +15132,26 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true + /@storybook/addon-toolbars@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-DrwqcWuCLjaTNFtAYUxO2VaLrr2ibhB3ZQwW7J6a4YFCJaV49wempGPq3BzTWvrPUtMxGp7J3ZusdH9jBgCzjA==} + 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 + dependencies: + '@storybook/client-logger': 7.0.26 + '@storybook/components': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.26 + '@storybook/theming': 7.0.26(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: true + /@storybook/addon-toolbars@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-OUbmddPNWy8RN/PNdwpXJDkYKzaV9W1amRpEQM6esG8/yI/2P/v4gL6eLSeeH2V8+nL26kD7BZ0Gh9r+xORzJQ==} peerDependencies: @@ -14908,6 +15196,30 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true + /@storybook/addon-viewport@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-veAYxnR11sojXC7tlnBZ/USiafhWCsZNvjxmywl/XCh3MeDGFFDb2NN1s/7irAYXfNMOhgPGZED19BN9cQ8QRQ==} + 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 + dependencies: + '@storybook/client-logger': 7.0.26 + '@storybook/components': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.26 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.26 + '@storybook/theming': 7.0.26(react-dom@18.2.0)(react@18.2.0) + memoizerific: 1.11.3 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: true + /@storybook/addon-viewport@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-dvaD11qp2AG8xc9LubkYqp0yW+5ybaqTOn2uwK4qDDbwypkL+uE9K8G+8tQGIvfQPFye3ggpuqRzStZHr/JbsQ==} peerDependencies: @@ -14980,8 +15292,8 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/api@7.2.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-wPZYOFBFVgzXv7QxwtBYi17tn4bCneV3FO3vNa9JUPrD+NaLkuY73BiuRJ1gk2+FuDnodJyOwNJFCkKUKJZa6Q==} + /@storybook/api@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-kvqtnahIdyp+c7qwG/IhY6e1ynet/G9k92J6n3UEpMqy0b+jKMpGE45uGdiMg5EDVGjvlDqN8Ed7v/ZDJFjlOw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -14991,8 +15303,8 @@ packages: react-dom: optional: true dependencies: - '@storybook/client-logger': 7.2.1 - '@storybook/manager-api': 7.2.1(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.0.27 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -15031,6 +15343,41 @@ packages: - supports-color dev: true + /@storybook/blocks@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-VNYB6Y1Ocja8HVg4Bm1w7LvqRSEc9aLVD8BnI8BInHvekvxhaxTkfpA18qds7d8+RmerrJqAUhGx0jkIB/cvwA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@storybook/channels': 7.0.26 + '@storybook/client-logger': 7.0.26 + '@storybook/components': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.26 + '@storybook/csf': 0.1.0 + '@storybook/docs-tools': 7.0.26 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.26 + '@storybook/theming': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.26 + '@types/lodash': 4.14.191 + color-convert: 2.0.1 + dequal: 2.0.3 + lodash: 4.17.21 + markdown-to-jsx: 7.2.0(react@18.2.0) + memoizerific: 1.11.3 + polished: 4.2.2 + react: 18.2.0 + react-colorful: 5.6.1(react-dom@18.2.0)(react@18.2.0) + react-dom: 18.2.0(react@18.2.0) + telejson: 7.1.0 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/blocks@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-DWK3+l+OycPx4QNPobTxWzQUy3Q+D2DNbzTUX1ndew6cuzfi87O7k1hmn//dZQoFzV0BZzx02kVljNQY56w/Bw==} peerDependencies: @@ -15058,7 +15405,7 @@ packages: react: 18.2.0 react-colorful: 5.6.1(react-dom@18.2.0)(react@18.2.0) react-dom: 18.2.0(react@18.2.0) - telejson: 7.1.0 + telejson: 7.2.0 tocbot: 4.21.1 ts-dedent: 2.2.0 util-deprecate: 1.0.2 @@ -15090,6 +15437,30 @@ packages: - supports-color dev: true + /@storybook/builder-manager@7.0.26: + resolution: {integrity: sha512-1Uk3dL3Yu5AuimfHAghBHs11wf7B+a+277astqLx7HSeh3L49zcDZS4NhGHKmtQjsEorbvmtty3s16q2k+fM8A==} + dependencies: + '@fal-works/esbuild-plugin-global-externals': 2.1.2 + '@storybook/core-common': 7.0.26 + '@storybook/manager': 7.0.26 + '@storybook/node-logger': 7.0.26 + '@types/ejs': 3.1.2 + '@types/find-cache-dir': 3.2.1 + '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.17.19) + browser-assert: 1.2.1 + ejs: 3.1.9 + esbuild: 0.17.19 + esbuild-plugin-alias: 0.2.1 + express: 4.18.2 + find-cache-dir: 3.3.2 + fs-extra: 11.1.1 + process: 0.11.10 + util: 0.12.5 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/builder-manager@7.1.0: resolution: {integrity: sha512-7uwpy+zPF+MIWeG1w8hflwJm0eo4q4G3n/KDbB5OhaU+oApL3SrTFzmy3f2eOIQ3fbbGfZ+P48DjkeyAbRFCIg==} dependencies: @@ -15099,10 +15470,10 @@ packages: '@storybook/node-logger': 7.1.0 '@types/ejs': 3.1.2 '@types/find-cache-dir': 3.2.1 - '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20) + '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.12) browser-assert: 1.2.1 ejs: 3.1.9 - esbuild: 0.18.20 + esbuild: 0.18.12 esbuild-plugin-alias: 0.2.1 express: 4.18.2 find-cache-dir: 3.3.2 @@ -15114,7 +15485,7 @@ packages: - supports-color dev: true - /@storybook/builder-vite@7.0.0-rc.10(typescript@4.9.5)(vite@4.4.9): + /@storybook/builder-vite@7.0.0-rc.10(typescript@4.9.5)(vite@4.4.6): resolution: {integrity: sha512-sMPNSj2z+Zf3h+ZOG+ZAH8uVA++rqFu+Ehq6bX0asgMuOJoEbpi372p3l9ru9YyySNBlgQkgD2uZLCpIrFZNeQ==} peerDependencies: '@preact/preset-vite': '*' @@ -15153,12 +15524,12 @@ packages: remark-slug: 7.0.1 rollup: 2.70.2 typescript: 4.9.5 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - supports-color dev: true - /@storybook/builder-vite@7.0.26(typescript@4.9.5)(vite@4.4.9): + /@storybook/builder-vite@7.0.26(typescript@4.9.5)(vite@4.4.6): resolution: {integrity: sha512-PRvySwvJEBLTZcUCKIULdxeFZeoDeK5odGFN0oIJhGZlOEI7jzbAcBT9SEZUh+Cv4Pk93XFr5+ZJCm/yrmF8RA==} peerDependencies: '@preact/preset-vite': '*' @@ -15194,13 +15565,13 @@ packages: remark-slug: 6.1.0 rollup: 2.70.2 typescript: 4.9.5 - vite: 4.4.9(@types/node@20.4.1)(less@4.2.0) + vite: 4.4.6(@types/node@20.4.1)(less@4.1.3) transitivePeerDependencies: - encoding - supports-color dev: true - /@storybook/builder-vite@7.1.0(typescript@4.9.5)(vite@4.4.9): + /@storybook/builder-vite@7.1.0(typescript@5.1.6)(vite@4.4.6): resolution: {integrity: sha512-4fYsapT5q6op63fBZ4mkZAzA8srObmQqUnydVW4M5v0UCoqKBdZtRMkibLJ2M9FoLJZxDnDO1HydaV7nPwN+zg==} peerDependencies: '@preact/preset-vite': '*' @@ -15230,53 +15601,12 @@ packages: express: 4.18.2 find-cache-dir: 3.3.2 fs-extra: 11.1.1 - magic-string: 0.30.2 - remark-external-links: 8.0.0 - remark-slug: 6.1.0 - rollup: 2.70.2 - typescript: 4.9.5 - vite: 4.4.9(@types/node@20.4.1)(less@4.2.0) - transitivePeerDependencies: - - encoding - - supports-color - dev: true - - /@storybook/builder-vite@7.1.0(typescript@5.1.6)(vite@4.4.9): - resolution: {integrity: sha512-4fYsapT5q6op63fBZ4mkZAzA8srObmQqUnydVW4M5v0UCoqKBdZtRMkibLJ2M9FoLJZxDnDO1HydaV7nPwN+zg==} - 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 - dependencies: - '@storybook/channels': 7.1.0 - '@storybook/client-logger': 7.1.0 - '@storybook/core-common': 7.1.0 - '@storybook/csf-plugin': 7.1.0 - '@storybook/mdx2-csf': 1.1.0 - '@storybook/node-logger': 7.1.0 - '@storybook/preview': 7.1.0 - '@storybook/preview-api': 7.1.0 - '@storybook/types': 7.1.0 - '@types/find-cache-dir': 3.2.1 - browser-assert: 1.2.1 - es-module-lexer: 0.9.3 - express: 4.18.2 - find-cache-dir: 3.3.2 - fs-extra: 11.1.1 - magic-string: 0.30.2 + magic-string: 0.30.1 remark-external-links: 8.0.0 remark-slug: 6.1.0 rollup: 2.70.2 typescript: 5.1.6 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - encoding - supports-color @@ -15290,7 +15620,7 @@ packages: '@storybook/core-events': 7.0.0-rc.10 '@storybook/global': 5.0.0 qs: 6.11.2 - telejson: 7.1.0 + telejson: 7.2.0 dev: true /@storybook/channel-postmessage@7.0.26: @@ -15301,7 +15631,18 @@ packages: '@storybook/core-events': 7.0.26 '@storybook/global': 5.0.0 qs: 6.11.2 - telejson: 7.1.0 + telejson: 7.2.0 + dev: true + + /@storybook/channel-postmessage@7.0.27: + resolution: {integrity: sha512-ScpiStUHvtgy9RrCFNyzzH9l+zHF80lSwW/BZ1MRETJ9ZaOVPrm03U0Ju01wJC57DYPROwPU/wKMetNqKKEhdA==} + dependencies: + '@storybook/channels': 7.0.27 + '@storybook/client-logger': 7.0.27 + '@storybook/core-events': 7.0.27 + '@storybook/global': 5.0.0 + qs: 6.11.2 + telejson: 7.2.0 dev: true /@storybook/channel-postmessage@7.1.0: @@ -15317,7 +15658,7 @@ packages: '@storybook/channels': 7.0.0-rc.10 '@storybook/client-logger': 7.0.0-rc.10 '@storybook/global': 5.0.0 - telejson: 7.1.0 + telejson: 7.2.0 dev: true /@storybook/channel-websocket@7.0.26: @@ -15326,7 +15667,7 @@ packages: '@storybook/channels': 7.0.26 '@storybook/client-logger': 7.0.26 '@storybook/global': 5.0.0 - telejson: 7.1.0 + telejson: 7.2.0 dev: true /@storybook/channels@6.5.16: @@ -15345,6 +15686,10 @@ packages: resolution: {integrity: sha512-Br3XILhrtuL5Sdp91I04kKjJzSqU/N8gGL6B6nIfnuaHUvGMDuMCHAB+g7aoiyH5dnpDZ6yBVGNwtYAyJA+0Og==} dev: true + /@storybook/channels@7.0.27: + resolution: {integrity: sha512-YppvPa1qMyC+oCQJ3tf7Quzpf2NnBlvIRLPJiGAMssUwX5qE0iKe9lTtkNwMaNxEvzz6rDxewSlz+f/MWr4gPw==} + dev: true + /@storybook/channels@7.1.0: resolution: {integrity: sha512-8uzjWdVG2IK18P8n6H+olAs+jnZr+HeYs1t2xiRy4NVSLhBffB71ut5F+pcWZfdDe3gyX8Tfvy68NloTNt9POg==} dependencies: @@ -15352,29 +15697,18 @@ packages: '@storybook/core-events': 7.1.0 '@storybook/global': 5.0.0 qs: 6.11.2 - telejson: 7.1.0 + telejson: 7.2.0 tiny-invariant: 1.3.1 dev: true - /@storybook/channels@7.2.1: - resolution: {integrity: sha512-3ZogzjwlFG+oarwnI7TTvWvHVOUtJbjrgZkM5QuLMlxNzIR1XuBY8f01yf4K8+VpdNy9DY+7Q/j6tBThfwYvpA==} + /@storybook/channels@7.5.0-alpha.1: + resolution: {integrity: sha512-+nk9NR0vFY4YK2CNwEto0ZpO/B8Z0ZZ80PRCx/26osh8sjo12zFoumyH8cy5ZkaOqIgZg+OLNY6W8FgsrGQdjg==} dependencies: - '@storybook/client-logger': 7.2.1 - '@storybook/core-events': 7.2.1 + '@storybook/client-logger': 7.5.0-alpha.1 + '@storybook/core-events': 7.5.0-alpha.1 '@storybook/global': 5.0.0 qs: 6.11.2 - telejson: 7.1.0 - tiny-invariant: 1.3.1 - dev: true - - /@storybook/channels@7.4.0-alpha.0: - resolution: {integrity: sha512-Mh07rR524vtpDTG1BRNpHqH+BfH95DDqVIeG9YZI/z093B+MTwTAaVOcr5iReY4de01VeeC3mPDkPfvvHfqnSQ==} - dependencies: - '@storybook/client-logger': 7.4.0-alpha.0 - '@storybook/core-events': 7.4.0-alpha.0 - '@storybook/global': 5.0.0 - qs: 6.11.2 - telejson: 7.1.0 + telejson: 7.2.0 tiny-invariant: 1.3.1 dev: true @@ -15383,7 +15717,7 @@ packages: hasBin: true dependencies: '@babel/core': 7.22.5 - '@babel/preset-env': 7.20.2(@babel/core@7.22.5) + '@babel/preset-env': 7.21.5(@babel/core@7.22.5) '@ndelangen/get-tarball': 3.0.7 '@storybook/codemod': 7.0.0-rc.10 '@storybook/core-common': 7.0.0-rc.10 @@ -15407,13 +15741,62 @@ packages: get-port: 5.1.1 giget: 1.1.2 globby: 11.1.0 - jscodeshift: 0.14.0(@babel/preset-env@7.20.2) + jscodeshift: 0.14.0(@babel/preset-env@7.21.5) + leven: 3.1.0 + prettier: 2.8.8 + prompts: 2.4.2 + puppeteer-core: 2.1.1 + read-pkg-up: 7.0.1 + semver: 7.5.3 + shelljs: 0.8.5 + simple-update-notifier: 1.1.0 + strip-json-comments: 3.1.1 + tempy: 1.0.1 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: true + + /@storybook/cli@7.0.26: + resolution: {integrity: sha512-sZ136wRUYTdhhm/thegFoI47wOzl2X+K9eaiTTp0ARwnIUhXAPDQ0MKOD36hKbCX5T/pBE7r++7WoEReIbUDqQ==} + hasBin: true + dependencies: + '@babel/core': 7.22.5 + '@babel/preset-env': 7.21.5(@babel/core@7.22.5) + '@ndelangen/get-tarball': 3.0.7 + '@storybook/codemod': 7.0.26 + '@storybook/core-common': 7.0.26 + '@storybook/core-server': 7.0.26 + '@storybook/csf-tools': 7.0.26 + '@storybook/node-logger': 7.0.26 + '@storybook/telemetry': 7.0.26 + '@storybook/types': 7.0.26 + '@types/semver': 7.3.13 + chalk: 4.1.2 + commander: 6.2.1 + cross-spawn: 7.0.3 + detect-indent: 6.1.0 + envinfo: 7.8.1 + execa: 5.1.1 + express: 4.18.2 + find-up: 5.0.0 + fs-extra: 11.1.1 + get-npm-tarball-url: 2.0.3 + get-port: 5.1.1 + giget: 1.1.2 + globby: 11.1.0 + jscodeshift: 0.14.0(@babel/preset-env@7.21.5) leven: 3.1.0 + ora: 5.4.1 prettier: 2.8.8 prompts: 2.4.2 puppeteer-core: 2.1.1 read-pkg-up: 7.0.1 - semver: 7.5.4 + semver: 7.5.3 shelljs: 0.8.5 simple-update-notifier: 1.1.0 strip-json-comments: 3.1.1 @@ -15432,7 +15815,7 @@ packages: hasBin: true dependencies: '@babel/core': 7.22.5 - '@babel/preset-env': 7.22.10(@babel/core@7.22.5) + '@babel/preset-env': 7.22.14(@babel/core@7.22.5) '@ndelangen/get-tarball': 3.0.7 '@storybook/codemod': 7.1.0 '@storybook/core-common': 7.1.0 @@ -15457,14 +15840,14 @@ packages: get-port: 5.1.1 giget: 1.1.2 globby: 11.1.0 - jscodeshift: 0.14.0(@babel/preset-env@7.22.10) + jscodeshift: 0.14.0(@babel/preset-env@7.22.14) leven: 3.1.0 ora: 5.4.1 prettier: 2.8.8 prompts: 2.4.2 puppeteer-core: 2.1.1 read-pkg-up: 7.0.1 - semver: 7.5.4 + semver: 7.5.3 simple-update-notifier: 1.1.0 strip-json-comments: 3.1.1 tempy: 1.0.1 @@ -15496,20 +15879,20 @@ packages: '@storybook/global': 5.0.0 dev: true - /@storybook/client-logger@7.1.0: - resolution: {integrity: sha512-br5GNTxNFmDZA4ESaCMn2VJ9ZW3ejbILEGoadOJjP2ZD40luSRNtTtWjeNiA+7762OvHMYVGwG0tnqk98f5nfg==} + /@storybook/client-logger@7.0.27: + resolution: {integrity: sha512-t4F0ByHP4MNiyVI5sgqtxSccr4RmPAqTr/h6CeGLJKWzUYobBV5hwKUd/qlfwdjev2u9C7AdLFPBKVcHX5PteA==} dependencies: '@storybook/global': 5.0.0 dev: true - /@storybook/client-logger@7.2.1: - resolution: {integrity: sha512-Lyht/lJg2S65CXRy9rXAZXP/Mgye7jbi/aqQL8z9VRMGChbL+k/3pSZnXTTrD1OVSpCEr4UWA+9bStzT4VjtYA==} + /@storybook/client-logger@7.1.0: + resolution: {integrity: sha512-br5GNTxNFmDZA4ESaCMn2VJ9ZW3ejbILEGoadOJjP2ZD40luSRNtTtWjeNiA+7762OvHMYVGwG0tnqk98f5nfg==} dependencies: '@storybook/global': 5.0.0 dev: true - /@storybook/client-logger@7.4.0-alpha.0: - resolution: {integrity: sha512-gQTfh3gFVHpmw2CGZSWsk9qZDZuY/AdZZYC+uvyXtXLF1+TrmBkmJTWBEjk93Hm9LJu83Q+z1scCqIUyu6aGHQ==} + /@storybook/client-logger@7.5.0-alpha.1: + resolution: {integrity: sha512-AfxlIm3AGEQAM1NsrM/HtuJFA/sGpT/ZL4tn8ltDQbbqyRvLPYcL1LrzE5pavMxg5eExO6jlzpoQaoP6uDotvw==} dependencies: '@storybook/global': 5.0.0 dev: true @@ -15534,12 +15917,32 @@ packages: - supports-color dev: true + /@storybook/codemod@7.0.26: + resolution: {integrity: sha512-H9sV59FfGrGzGM+UZQclNglnc4cOkQvvF3EOWlR3BfDhx+STSB9VbCR308ygjUYw2TXZ2s5seCvHtVvA2yhILA==} + dependencies: + '@babel/core': 7.21.3 + '@babel/preset-env': 7.21.5(@babel/core@7.21.3) + '@babel/types': 7.21.3 + '@storybook/csf': 0.1.0 + '@storybook/csf-tools': 7.0.26 + '@storybook/node-logger': 7.0.26 + '@storybook/types': 7.0.26 + cross-spawn: 7.0.3 + globby: 11.1.0 + jscodeshift: 0.14.0(@babel/preset-env@7.21.5) + lodash: 4.17.21 + prettier: 2.8.8 + recast: 0.23.1 + transitivePeerDependencies: + - supports-color + dev: true + /@storybook/codemod@7.1.0: resolution: {integrity: sha512-ZDoJo1hqHbqR1arPwmm5n2qxROfTiigYDBpQCAEjVehFgT1eF1qAjiEjG/MBD0cpgj2pJ1GZTEIs52DU8sm3OQ==} dependencies: '@babel/core': 7.22.5 - '@babel/preset-env': 7.22.10(@babel/core@7.22.5) - '@babel/types': 7.22.10 + '@babel/preset-env': 7.22.14(@babel/core@7.22.5) + '@babel/types': 7.22.5 '@storybook/csf': 0.1.0 '@storybook/csf-tools': 7.1.0 '@storybook/node-logger': 7.1.0 @@ -15547,7 +15950,7 @@ packages: '@types/cross-spawn': 6.0.2 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.14.0(@babel/preset-env@7.22.10) + jscodeshift: 0.14.0(@babel/preset-env@7.22.14) lodash: 4.17.21 prettier: 2.8.8 recast: 0.23.1 @@ -15591,17 +15994,17 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/components@7.1.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-o8Z5L7cxxNCUhbEA+vGwoVrZ0vWhuZJb/AUc+347RIlH1QZF4Cu6fmgA49pKBsrJWPbtOmlLCbN/9LshszH0Zw==} + /@storybook/components@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-n0TVWEF4Bc9JAyEIaN0PqwglbaYYRcPVG7ka+5wgGmBiuDlWI1SXd4EXxv2u0mVibHvtkHvOn6/GaZ1vG45p6g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/client-logger': 7.1.0 + '@storybook/client-logger': 7.0.26 '@storybook/csf': 0.1.0 '@storybook/global': 5.0.0 - '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.1.0 + '@storybook/theming': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.26 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -15609,50 +16012,40 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/components@7.2.1(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-7JuMT2yK9FGPu9hFCo38tC3FDyr/hJ3CQwU6dSR6E5rT9E658dq31Xl3y/fM5OMzl8MX8Off7TWiybHSuwYJTA==} + /@storybook/components@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-utt4fA1td7QHpvuD/9dWm9UEoO5xTU3EsXk/U2fPUQzN9NEsbWKV/QubUYIpVy5iwwgUyMvqzWHM0veAriJW5A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@radix-ui/react-select': 1.2.2(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) - '@storybook/client-logger': 7.2.1 + '@storybook/client-logger': 7.0.27 '@storybook/csf': 0.1.0 '@storybook/global': 5.0.0 - '@storybook/icons': 1.1.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/theming': 7.2.1(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.2.1 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-resize-observer: 9.1.0(react-dom@18.2.0)(react@18.2.0) util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' dev: true - /@storybook/components@7.2.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-7JuMT2yK9FGPu9hFCo38tC3FDyr/hJ3CQwU6dSR6E5rT9E658dq31Xl3y/fM5OMzl8MX8Off7TWiybHSuwYJTA==} + /@storybook/components@7.1.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-o8Z5L7cxxNCUhbEA+vGwoVrZ0vWhuZJb/AUc+347RIlH1QZF4Cu6fmgA49pKBsrJWPbtOmlLCbN/9LshszH0Zw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@storybook/client-logger': 7.2.1 + '@storybook/client-logger': 7.1.0 '@storybook/csf': 0.1.0 '@storybook/global': 5.0.0 - '@storybook/icons': 1.1.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/theming': 7.2.1(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.2.1 + '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.1.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-resize-observer: 9.1.0(react-dom@18.2.0)(react@18.2.0) util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' dev: true /@storybook/core-client@7.0.0-rc.10: @@ -15662,6 +16055,13 @@ packages: '@storybook/preview-api': 7.0.0-rc.10 dev: true + /@storybook/core-client@7.0.26: + resolution: {integrity: sha512-1DA8mLnr0f6EuL74859IDK99a7CGNgMIN0/cAVNgYxq0WA4j+9ajsJ+/RIAgnS2NLVLR9kbezUtBEx4/H88IRA==} + dependencies: + '@storybook/client-logger': 7.0.26 + '@storybook/preview-api': 7.0.26 + dev: true + /@storybook/core-client@7.1.0: resolution: {integrity: sha512-lFgrez7OPr5Eol6/+dSHtPOgGg7WmE+qIMpMt9MHUhawjuX4UqWcs8unhjG+I30nBcC4J9Lxygf5yqZLm7Wt0A==} dependencies: @@ -15724,23 +16124,22 @@ packages: - supports-color dev: true - /@storybook/core-common@7.1.0: - resolution: {integrity: sha512-6jrL1RUA/Vgy+zXzeno12k6CKFIqRh3I5W7XgN2nNZJc98PRl2etDdhFL3LkBn8lWddDeKpnmlI4SWjb2HYtcA==} + /@storybook/core-common@7.0.27: + resolution: {integrity: sha512-nlHXpn3CghCwkeIffZ7/PzcraCDXNZz+cnR4L8vtgJn1n6W7y92mxfF8gkRHuiYHWHbPWRVP9M5vAmVoiNMxjw==} dependencies: - '@storybook/node-logger': 7.1.0 - '@storybook/types': 7.1.0 - '@types/find-cache-dir': 3.2.1 + '@storybook/node-logger': 7.0.27 + '@storybook/types': 7.0.27 '@types/node': 16.18.25 '@types/node-fetch': 2.6.4 '@types/pretty-hrtime': 1.0.1 chalk: 4.1.2 - esbuild: 0.18.20 - esbuild-register: 3.4.2(esbuild@0.18.20) + esbuild: 0.17.19 + esbuild-register: 3.4.2(esbuild@0.17.19) file-system-cache: 2.3.0 - find-cache-dir: 3.3.2 find-up: 5.0.0 fs-extra: 11.1.1 - glob: 10.3.3 + glob: 8.1.0 + glob-promise: 6.0.2(glob@8.1.0) handlebars: 4.7.7 lazy-universal-dotenv: 4.0.0 node-fetch: 2.6.9 @@ -15754,23 +16153,23 @@ packages: - supports-color dev: true - /@storybook/core-common@7.2.1: - resolution: {integrity: sha512-g1MQ04lgL16Ct89tPj6RSw72yd+a+ZJ4ceH3Ev+SmnU8efBLPmr6+G5Bx7+rY1W2c6NdpFgtSidjgOGqQ8gppw==} + /@storybook/core-common@7.1.0: + resolution: {integrity: sha512-6jrL1RUA/Vgy+zXzeno12k6CKFIqRh3I5W7XgN2nNZJc98PRl2etDdhFL3LkBn8lWddDeKpnmlI4SWjb2HYtcA==} dependencies: - '@storybook/node-logger': 7.2.1 - '@storybook/types': 7.2.1 + '@storybook/node-logger': 7.1.0 + '@storybook/types': 7.1.0 '@types/find-cache-dir': 3.2.1 '@types/node': 16.18.25 '@types/node-fetch': 2.6.4 '@types/pretty-hrtime': 1.0.1 chalk: 4.1.2 - esbuild: 0.18.20 - esbuild-register: 3.4.2(esbuild@0.18.20) + esbuild: 0.18.12 + esbuild-register: 3.4.2(esbuild@0.18.12) file-system-cache: 2.3.0 find-cache-dir: 3.3.2 find-up: 5.0.0 fs-extra: 11.1.1 - glob: 10.3.3 + glob: 10.3.4 handlebars: 4.7.7 lazy-universal-dotenv: 4.0.0 node-fetch: 2.6.9 @@ -15798,16 +16197,18 @@ packages: resolution: {integrity: sha512-ckZszphEAYs9wp8tPVhayEMzk8JxCiQfzbq0S45sbdqdTrl40PmsOjv5iPNaUYElI/Stfz+v4gDCEUfOsxyC+w==} dev: true - /@storybook/core-events@7.1.0: - resolution: {integrity: sha512-b0kZ5ElPZj3NPqWhGsHHuLn0riA4wJXJ5mNBOe2scd8Cw52ELQr5rVHOMROhONOgpOaZBZ+QZd/MDvJDRyxTQw==} + /@storybook/core-events@7.0.27: + resolution: {integrity: sha512-sNnqgO5i5DUIqeQfNbr987KWvAciMN9FmMBuYdKjVFMqWFyr44HTgnhfKwZZKl+VMDYkHA9Do7UGSYZIKy0P4g==} dev: true - /@storybook/core-events@7.2.1: - resolution: {integrity: sha512-EUXYb3gyQ2EzpDAWkgfoDl1EPabj3OE6+zntsD/gwvzQU85BTocs10ksnRyS55bfrQpYbf+Z+gw2CZboyagLgg==} + /@storybook/core-events@7.1.0: + resolution: {integrity: sha512-b0kZ5ElPZj3NPqWhGsHHuLn0riA4wJXJ5mNBOe2scd8Cw52ELQr5rVHOMROhONOgpOaZBZ+QZd/MDvJDRyxTQw==} dev: true - /@storybook/core-events@7.4.0-alpha.0: - resolution: {integrity: sha512-+W41+PQVGruVKRqBmyubl88QmUj88fKefKU8qObNaJZnAicHa6ohb7cgBTD+qGuPwt1S4oWwAXFLvZxU21K6mQ==} + /@storybook/core-events@7.5.0-alpha.1: + resolution: {integrity: sha512-ikQK2EwMAuhyOQ3nDKscnyCsnNSzJANDr15nMjzYImdcESqK6pqeiV7DGAeaNRpDVEgvixYM3046IO1vxsTeoQ==} + dependencies: + ts-dedent: 2.2.0 dev: true /@storybook/core-server@7.0.0-rc.10: @@ -15829,7 +16230,7 @@ packages: '@storybook/types': 7.0.0-rc.10 '@types/detect-port': 1.3.2 '@types/node': 16.18.25 - '@types/node-fetch': 2.6.3 + '@types/node-fetch': 2.6.4 '@types/pretty-hrtime': 1.0.1 '@types/semver': 7.3.13 better-opn: 2.1.1 @@ -15848,9 +16249,60 @@ packages: pretty-hrtime: 1.0.3 prompts: 2.4.2 read-pkg-up: 7.0.1 - semver: 7.5.4 + semver: 7.5.3 serve-favicon: 2.5.0 - telejson: 7.1.0 + telejson: 7.2.0 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + watchpack: 2.4.0 + ws: 8.13.0 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: true + + /@storybook/core-server@7.0.26: + resolution: {integrity: sha512-QieqH19jBPZafxJVmCVK6GTYkRN/CJ8RQUvyRH2KNhqXP0tHYfL51FlU70ldo/vHX6Ax4Cje5hx/Nln9+DOMNg==} + dependencies: + '@aw-web-design/x-default-browser': 1.4.88 + '@discoveryjs/json-ext': 0.5.7 + '@storybook/builder-manager': 7.0.26 + '@storybook/core-common': 7.0.26 + '@storybook/core-events': 7.0.26 + '@storybook/csf': 0.1.0 + '@storybook/csf-tools': 7.0.26 + '@storybook/docs-mdx': 0.1.0 + '@storybook/global': 5.0.0 + '@storybook/manager': 7.0.26 + '@storybook/node-logger': 7.0.26 + '@storybook/preview-api': 7.0.26 + '@storybook/telemetry': 7.0.26 + '@storybook/types': 7.0.26 + '@types/detect-port': 1.3.2 + '@types/node': 16.18.25 + '@types/node-fetch': 2.6.4 + '@types/pretty-hrtime': 1.0.1 + '@types/semver': 7.3.13 + better-opn: 2.1.1 + chalk: 4.1.2 + cli-table3: 0.6.3 + compression: 1.7.4 + detect-port: 1.5.1 + express: 4.18.2 + fs-extra: 11.1.1 + globby: 11.1.0 + ip: 2.0.0 + lodash: 4.17.21 + node-fetch: 2.6.9 + open: 8.4.2 + pretty-hrtime: 1.0.3 + prompts: 2.4.2 + read-pkg-up: 7.0.1 + semver: 7.5.3 + serve-favicon: 2.5.0 + telejson: 7.2.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 watchpack: 2.4.0 @@ -15898,9 +16350,9 @@ packages: pretty-hrtime: 1.0.3 prompts: 2.4.2 read-pkg-up: 7.0.1 - semver: 7.5.4 + semver: 7.5.3 serve-favicon: 2.5.0 - telejson: 7.1.0 + telejson: 7.2.0 tiny-invariant: 1.3.1 ts-dedent: 2.2.0 util: 0.12.5 @@ -15979,7 +16431,7 @@ packages: '@babel/generator': 7.22.5 '@babel/parser': 7.22.5 '@babel/traverse': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 '@storybook/csf': 0.1.0 '@storybook/types': 7.1.0 fs-extra: 11.1.1 @@ -16035,6 +16487,21 @@ packages: - supports-color dev: true + /@storybook/docs-tools@7.0.26: + resolution: {integrity: sha512-Ibpm/OTR2XmJgix5w+wMYbDwN0zp5e/pcqSHy36OvkBOG588IKSSzYdBjGdTLPHWBoehp2Kyndw/5dL/09ftXA==} + dependencies: + '@babel/core': 7.22.5 + '@storybook/core-common': 7.0.26 + '@storybook/preview-api': 7.0.26 + '@storybook/types': 7.0.26 + '@types/doctrine': 0.0.3 + doctrine: 3.0.0 + lodash: 4.17.21 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/docs-tools@7.1.0: resolution: {integrity: sha512-tXZiN+6fJCZHXR3Sg+Qek066Ed8W8qvqmrdihgudkktCkxMT0kywb06p+u8YXEFxbYP0X7L+2mZpGZnLX+bWUw==} dependencies: @@ -16053,17 +16520,6 @@ packages: resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} dev: true - /@storybook/icons@1.1.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-PWJIaa/NtOu2VSWnj07evF1OI5+6H7ZTAvy0LO38RheW4W8iS+xoYsh2cr/nxLBblfhbw533uJrhdqpxCytxfA==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@storybook/instrumenter@7.0.0-rc.10: resolution: {integrity: sha512-XaU6pxbcUnGgM7OywPs8E/k3H6Up/mf2kPfrHp9qhztx7ypKsKZi2lfxpOlmORy/s6JZl8kZATDyfgAGmVnbvg==} dependencies: @@ -16074,6 +16530,16 @@ packages: '@storybook/preview-api': 7.0.0-rc.10 dev: true + /@storybook/instrumenter@7.0.26: + resolution: {integrity: sha512-7Ty0LTslgkm5RyH6CqTAKhWz/cF6wq/sNdMYKwvVZHWNZ2LKMtXD0RWM2caCPruAGOQ9+52H+3s4TZGKaPSSWQ==} + dependencies: + '@storybook/channels': 7.0.26 + '@storybook/client-logger': 7.0.26 + '@storybook/core-events': 7.0.26 + '@storybook/global': 5.0.0 + '@storybook/preview-api': 7.0.26 + dev: true + /@storybook/instrumenter@7.1.0: resolution: {integrity: sha512-vsJzxGo6IN0iS0Ro/8b2qA0x+uRLZ5JIhoN+n9fwTkHDxil/u5t7HPuNMXKkgXFKQYxVX9VlehQEu2DRz3mORQ==} dependencies: @@ -16084,14 +16550,14 @@ packages: '@storybook/preview-api': 7.1.0 dev: true - /@storybook/instrumenter@7.4.0-alpha.0: - resolution: {integrity: sha512-FuH+GZ1QI+tQT+UmQ7aJbgEToQ21pzWkkb+dszbPDSwbOpsBRDhxBacJSkST+GnS+3nFCpEkpwIieWkGBhMuXw==} + /@storybook/instrumenter@7.5.0-alpha.1: + resolution: {integrity: sha512-3JhtbdyOaPjsuHwsAoo9za14m+dZPetgvhzu9N5KqQJtq2IzgD+I//mZdAHJAxAJh47uG3pXszX56+VwGyzVIw==} dependencies: - '@storybook/channels': 7.4.0-alpha.0 - '@storybook/client-logger': 7.4.0-alpha.0 - '@storybook/core-events': 7.4.0-alpha.0 + '@storybook/channels': 7.5.0-alpha.1 + '@storybook/client-logger': 7.5.0-alpha.1 + '@storybook/core-events': 7.5.0-alpha.1 '@storybook/global': 5.0.0 - '@storybook/preview-api': 7.4.0-alpha.0 + '@storybook/preview-api': 7.5.0-alpha.1 dev: true /@storybook/manager-api@7.0.0-rc.10(react-dom@18.2.0)(react@18.2.0): @@ -16113,66 +16579,95 @@ packages: memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - semver: 7.5.4 + semver: 7.5.3 store2: 2.14.2 - telejson: 7.1.0 + telejson: 7.2.0 ts-dedent: 2.2.0 dev: true - /@storybook/manager-api@7.1.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-a4UtzWcN/a12Kr4Z5B0KO05t3w3BtXapLRUERxiwB769ab/XJ6MmIyFY7mybKty3RZhmBWaO/oSfgrOwCeP/Gw==} + /@storybook/manager-api@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-/2p6lU7r30qMXob/UnzRL9yq7XjoE+YQXv1KhrcePfMBARbelYw9RYhYT/AkXGtb9/Fa95uG3lNvoDLC1IQfMQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/channels': 7.1.0 - '@storybook/client-logger': 7.1.0 - '@storybook/core-events': 7.1.0 + '@storybook/channels': 7.0.26 + '@storybook/client-logger': 7.0.26 + '@storybook/core-events': 7.0.26 '@storybook/csf': 0.1.0 '@storybook/global': 5.0.0 - '@storybook/router': 7.1.0(react-dom@18.2.0)(react@18.2.0) - '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.1.0 + '@storybook/router': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.26 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - semver: 7.5.4 + semver: 7.5.3 store2: 2.14.2 telejson: 7.1.0 ts-dedent: 2.2.0 dev: true - /@storybook/manager-api@7.2.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-jRuYTrsNKq+g1u9kbQRvBsRKVITOdiNu9c633MeCH73oBVo8WNnZF/tW/ER86oTnru0H7EmRdgz3v9ft/wS2GQ==} + /@storybook/manager-api@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-CVgy4ti8h0Xc4nxiPujTzhMANl9wmfLGvSA9ZX6YUBbKFV4UOL4oj105iHPW7Ngse6Qoqj0rnhkOSmLczXT03w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/channels': 7.2.1 - '@storybook/client-logger': 7.2.1 - '@storybook/core-events': 7.2.1 + '@storybook/channels': 7.0.27 + '@storybook/client-logger': 7.0.27 + '@storybook/core-events': 7.0.27 '@storybook/csf': 0.1.0 '@storybook/global': 5.0.0 - '@storybook/router': 7.2.1(react-dom@18.2.0)(react@18.2.0) - '@storybook/theming': 7.2.1(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.2.1 + '@storybook/router': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - semver: 7.5.4 + semver: 7.5.3 store2: 2.14.2 telejson: 7.1.0 ts-dedent: 2.2.0 dev: true + /@storybook/manager-api@7.1.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-a4UtzWcN/a12Kr4Z5B0KO05t3w3BtXapLRUERxiwB769ab/XJ6MmIyFY7mybKty3RZhmBWaO/oSfgrOwCeP/Gw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@storybook/channels': 7.1.0 + '@storybook/client-logger': 7.1.0 + '@storybook/core-events': 7.1.0 + '@storybook/csf': 0.1.0 + '@storybook/global': 5.0.0 + '@storybook/router': 7.1.0(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.1.0 + dequal: 2.0.3 + lodash: 4.17.21 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + semver: 7.5.3 + store2: 2.14.2 + telejson: 7.2.0 + ts-dedent: 2.2.0 + dev: true + /@storybook/manager@7.0.0-rc.10: resolution: {integrity: sha512-WmGyBFPCaW7ee57nSaPCb5teeI3mUBL+cRY3wXi7n+tzCHuWlYM/AWmQgOtb2goMgt7iZn76+uL9JUfTbvfRCg==} dev: true + /@storybook/manager@7.0.26: + resolution: {integrity: sha512-mxjU/pmHr8xL96HCipqazvZWQkxBPCbpZ2+YsJuJoLFN4m7RoOK21VK0euBW24NlSg7Vp57XGQcrJCv6xUTKMg==} + dev: true + /@storybook/manager@7.1.0: resolution: {integrity: sha512-YOuP7YICIcLVWC4QjpFK/AK5MXVzoAodneMmVFZ0+6qXxdaxHyz/hiu34s//lG/KAQZLz2m4z0GjwtJQafey+Q==} dev: true @@ -16203,18 +16698,27 @@ packages: pretty-hrtime: 1.0.3 dev: true - /@storybook/node-logger@7.1.0: - resolution: {integrity: sha512-Mw5kfcqfW1YI4pqW4+Y/SgnjitEMoqVZdTBQxxA9lS6YOlkQqwmtIFu7or4W/ZCFaPX9dwgd171o870vsA2DlA==} + /@storybook/node-logger@7.0.27: + resolution: {integrity: sha512-idoK+sDaTTPuxHcKhxn+l27Omhxvr1TQ0ALw1h8ehyMbW8TZBdWvYLYfmiWeI3+NQtmeudzxhKSVYTmAY4qDJw==} + dependencies: + '@types/npmlog': 4.1.4 + chalk: 4.1.2 + npmlog: 5.0.1 + pretty-hrtime: 1.0.3 dev: true - /@storybook/node-logger@7.2.1: - resolution: {integrity: sha512-Ywjqi8iAc26RYbZfmpzvzdKbaQZaD1T/IRNfVGReM/jTXnX0VSdsa6P/pfurbyHcQw//D3TSdqRHOMtbp0nIJg==} + /@storybook/node-logger@7.1.0: + resolution: {integrity: sha512-Mw5kfcqfW1YI4pqW4+Y/SgnjitEMoqVZdTBQxxA9lS6YOlkQqwmtIFu7or4W/ZCFaPX9dwgd171o870vsA2DlA==} dev: true /@storybook/postinstall@7.0.0-rc.10: resolution: {integrity: sha512-TLmwMcIuCGBTsFU2reyUTCofFyN9nCO6TXku8DzqD4UIj89RqVN+ngaOSl8uuqKhCYglocEWM4g88OG1Oaljjw==} dev: true + /@storybook/postinstall@7.0.26: + resolution: {integrity: sha512-NhJBpQ+49RWF63UkdwrEwBLJBjAZeTlruPWfXGUb343iaGNNTsD3jajbToFHncibewH83yk6MeGfiyUva60oJw==} + dev: true + /@storybook/postinstall@7.1.0: resolution: {integrity: sha512-TsPCqe/2s1chhZoU2eOvjXFteZ00ALVKsTP03FMDOAVc1EkH3dIMAQE1j3ZCt0RnDW1lWfN+QMxgqrgQ/f3mMw==} dev: true @@ -16259,16 +16763,16 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/preview-api@7.1.0: - resolution: {integrity: sha512-uLVCUCQKhZDWCfl7dW8+zhbqz0X41K0/nbyFpMtS7PxAveTFFOirAq0Pqtmb7JaeAYGGxkQqCYJJDdE9ZbAlYA==} + /@storybook/preview-api@7.0.27: + resolution: {integrity: sha512-FhauTuLzRsaIaEORQP5lxYrzwRgZPMnfYEPnzduyGgPiY6VZkS6wIiO6pKzat83V1L4J7m5aZhTB3HtvTwPhvg==} dependencies: - '@storybook/channel-postmessage': 7.1.0 - '@storybook/channels': 7.1.0 - '@storybook/client-logger': 7.1.0 - '@storybook/core-events': 7.1.0 + '@storybook/channel-postmessage': 7.0.27 + '@storybook/channels': 7.0.27 + '@storybook/client-logger': 7.0.27 + '@storybook/core-events': 7.0.27 '@storybook/csf': 0.1.0 '@storybook/global': 5.0.0 - '@storybook/types': 7.1.0 + '@storybook/types': 7.0.27 '@types/qs': 6.9.7 dequal: 2.0.3 lodash: 4.17.21 @@ -16279,15 +16783,16 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/preview-api@7.2.1: - resolution: {integrity: sha512-WKecuOdeh9+og6bPR9KoQf/JCeSRPCcfZv9uNfJzAp3IiTnS3UpfCz+HBZzZJQrisgbd7OulNY400HQUmxY2Ag==} + /@storybook/preview-api@7.1.0: + resolution: {integrity: sha512-uLVCUCQKhZDWCfl7dW8+zhbqz0X41K0/nbyFpMtS7PxAveTFFOirAq0Pqtmb7JaeAYGGxkQqCYJJDdE9ZbAlYA==} dependencies: - '@storybook/channels': 7.2.1 - '@storybook/client-logger': 7.2.1 - '@storybook/core-events': 7.2.1 + '@storybook/channel-postmessage': 7.1.0 + '@storybook/channels': 7.1.0 + '@storybook/client-logger': 7.1.0 + '@storybook/core-events': 7.1.0 '@storybook/csf': 0.1.0 '@storybook/global': 5.0.0 - '@storybook/types': 7.2.1 + '@storybook/types': 7.1.0 '@types/qs': 6.9.7 dequal: 2.0.3 lodash: 4.17.21 @@ -16298,15 +16803,15 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/preview-api@7.4.0-alpha.0: - resolution: {integrity: sha512-iZVBsRtNST8MqQ1Sj/6nPszuL1qFKlw6ByQfWsoCgYPLAgb3nh3/vckapszAWud+YyW8QZbm53fL/Yg+aN4YUg==} + /@storybook/preview-api@7.5.0-alpha.1: + resolution: {integrity: sha512-pNG+Mm+SEQ8a4QDhwLQ+W+4+rTuML/CWc4nGuh6J4ozi6+3YjmQpMTbWD5tXbjq298bcUq0PMJDmWSEBWyCZfQ==} dependencies: - '@storybook/channels': 7.4.0-alpha.0 - '@storybook/client-logger': 7.4.0-alpha.0 - '@storybook/core-events': 7.4.0-alpha.0 + '@storybook/channels': 7.5.0-alpha.1 + '@storybook/client-logger': 7.5.0-alpha.1 + '@storybook/core-events': 7.5.0-alpha.1 '@storybook/csf': 0.1.0 '@storybook/global': 5.0.0 - '@storybook/types': 7.4.0-alpha.0 + '@storybook/types': 7.5.0-alpha.1 '@types/qs': 6.9.7 dequal: 2.0.3 lodash: 4.17.21 @@ -16339,6 +16844,16 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true + /@storybook/react-dom-shim@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-heobG4IovYAD9fo7qmUHylCSQjDd1eXDCOaTiy+XVKobHAJgkz1gKqbaFSP6KLkPE4cKyScku2K9mY0tcKIhMw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: true + /@storybook/react-dom-shim@7.1.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-KPHbvwVu8iA0G8FkCbxuRwDGJPquiONgtYJn6ChHyL/ZjC/9+sUaUWEThbsFEnqdRzXKLgwHqZjF1UieT+TW6Q==} peerDependencies: @@ -16349,7 +16864,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/react-vite@7.0.0-rc.10(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@4.4.9): + /@storybook/react-vite@7.0.0-rc.10(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@4.4.6): resolution: {integrity: sha512-UqPAu/9FC7m3jcTcw6MgXzi9BTkAxKpr+t0lNgccyczvMRdWf5UNXPm9rdCEb7wmQx22DzwVmGPe+PFgVOIMsg==} engines: {node: '>=16'} peerDependencies: @@ -16357,17 +16872,17 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 vite: ^3.0.0 || ^4.0.0 dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.2(typescript@4.9.5)(vite@4.4.9) + '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.2(typescript@4.9.5)(vite@4.4.6) '@rollup/pluginutils': 4.2.1 - '@storybook/builder-vite': 7.0.0-rc.10(typescript@4.9.5)(vite@4.4.9) + '@storybook/builder-vite': 7.0.0-rc.10(typescript@4.9.5)(vite@4.4.6) '@storybook/react': 7.0.0-rc.10(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) - '@vitejs/plugin-react': 3.1.0(vite@4.4.9) + '@vitejs/plugin-react': 3.1.0(vite@4.4.6) ast-types: 0.14.2 magic-string: 0.27.0 react: 18.2.0 react-docgen: 6.0.0-alpha.3 react-dom: 18.2.0(react@18.2.0) - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - '@preact/preset-vite' - '@storybook/mdx1-csf' @@ -16376,35 +16891,34 @@ packages: - vite-plugin-glimmerx dev: true - /@storybook/react-vite@7.1.0(react-dom@18.2.0)(react@18.2.0)(rollup@2.70.2)(typescript@5.1.6)(vite@4.4.9): - resolution: {integrity: sha512-lMgUDcBpW2BE4PqPt+FmOnv6ocIBkBxo//n3g+CFidrF40ERmxtFa7gZdEvnPjAS6Jms8162mIWb6uZuh2fAqw==} + /@storybook/react-vite@7.0.26(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@4.4.6): + resolution: {integrity: sha512-yDkZAvlJ9RcXSuGZy8NdDhI394P7CRme7x6VtpgCi+iPaVW9A5laK7zOe1ewYnAcbKH6g7EJWQWDz2+PqAGiFw==} engines: {node: '>=16'} 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 dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1(typescript@5.1.6)(vite@4.4.9) - '@rollup/pluginutils': 5.0.2(rollup@2.70.2) - '@storybook/builder-vite': 7.1.0(typescript@5.1.6)(vite@4.4.9) - '@storybook/react': 7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6) - '@vitejs/plugin-react': 3.1.0(vite@4.4.9) + '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1(typescript@4.9.5)(vite@4.4.6) + '@rollup/pluginutils': 4.2.1 + '@storybook/builder-vite': 7.0.26(typescript@4.9.5)(vite@4.4.6) + '@storybook/react': 7.0.26(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) + '@vitejs/plugin-react': 3.1.0(vite@4.4.6) ast-types: 0.14.2 - magic-string: 0.30.2 + magic-string: 0.27.0 react: 18.2.0 react-docgen: 6.0.0-alpha.3 react-dom: 18.2.0(react@18.2.0) - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@20.4.1)(less@4.1.3) transitivePeerDependencies: - '@preact/preset-vite' - encoding - - rollup - supports-color - typescript - vite-plugin-glimmerx dev: true - /@storybook/react-vite@7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(vite@4.4.9): + /@storybook/react-vite@7.1.0(react-dom@18.2.0)(react@18.2.0)(rollup@2.70.2)(typescript@5.1.6)(vite@4.4.6): resolution: {integrity: sha512-lMgUDcBpW2BE4PqPt+FmOnv6ocIBkBxo//n3g+CFidrF40ERmxtFa7gZdEvnPjAS6Jms8162mIWb6uZuh2fAqw==} engines: {node: '>=16'} peerDependencies: @@ -16412,17 +16926,17 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 vite: ^3.0.0 || ^4.0.0 dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1(typescript@4.9.5)(vite@4.4.9) + '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1(typescript@5.1.6)(vite@4.4.6) '@rollup/pluginutils': 5.0.2(rollup@2.70.2) - '@storybook/builder-vite': 7.1.0(typescript@4.9.5)(vite@4.4.9) - '@storybook/react': 7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) - '@vitejs/plugin-react': 3.1.0(vite@4.4.9) + '@storybook/builder-vite': 7.1.0(typescript@5.1.6)(vite@4.4.6) + '@storybook/react': 7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6) + '@vitejs/plugin-react': 3.1.0(vite@4.4.6) ast-types: 0.14.2 - magic-string: 0.30.2 + magic-string: 0.30.1 react: 18.2.0 react-docgen: 6.0.0-alpha.3 react-dom: 18.2.0(react@18.2.0) - vite: 4.4.9(@types/node@20.4.1)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - '@preact/preset-vite' - encoding @@ -16471,8 +16985,8 @@ packages: - supports-color dev: true - /@storybook/react@7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): - resolution: {integrity: sha512-yTxuc9RucWTfFxU2emoO0/KPwUkRvEUE6jUrnCDaYR6lsq9RhiZjs072t8sCyUM+9KPwQQrt96cNmKyYN7Yg5w==} + /@storybook/react@7.0.26(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): + resolution: {integrity: sha512-+YK/1vF2Pd/PX7Ss5yPCIh9hee7iMVbu86gdjV9n9r6G244jQ7HLtdA01JKfq92/UgoysSWUjUECrxrUvcsh5w==} engines: {node: '>=16.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -16482,13 +16996,13 @@ packages: typescript: optional: true dependencies: - '@storybook/client-logger': 7.1.0 - '@storybook/core-client': 7.1.0 - '@storybook/docs-tools': 7.1.0 + '@storybook/client-logger': 7.0.26 + '@storybook/core-client': 7.0.26 + '@storybook/docs-tools': 7.0.26 '@storybook/global': 5.0.0 - '@storybook/preview-api': 7.1.0 - '@storybook/react-dom-shim': 7.1.0(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.1.0 + '@storybook/preview-api': 7.0.26 + '@storybook/react-dom-shim': 7.0.26(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.26 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 '@types/node': 16.18.25 @@ -16503,7 +17017,7 @@ packages: react-dom: 18.2.0(react@18.2.0) react-element-to-jsx-string: 15.0.0(react-dom@18.2.0)(react@18.2.0) ts-dedent: 2.2.0 - type-fest: 3.13.1 + type-fest: 2.19.0 typescript: 4.9.5 util-deprecate: 1.0.2 transitivePeerDependencies: @@ -16579,26 +17093,39 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/router@7.1.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-zZUFV84bIjhKADrV7ZzHPOBtxumeonUU1Nbq7X+k6AWsurpUAdlpQrM+H+37eWIeFONX8Rfc0EUTrx+WUAq1hA==} + /@storybook/router@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-OfLittKxdahsgKsmQFoBX9q5tN/aqKMhhc/WbW88UPAQCUcEuazB0CwM+LI9YXY+n5L+vpLI4lGlgaqvPy4hHw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/client-logger': 7.1.0 + '@storybook/client-logger': 7.0.26 + memoizerific: 1.11.3 + qs: 6.11.2 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: true + + /@storybook/router@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Onflm2mERipuYB3SR+0CFAZKPbDiLsJdgX09BP8bGrg7dVYwiGkL5dc9H/CP0KPxtC7kXT8x1Zc+yx0Y0kWiJw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@storybook/client-logger': 7.0.27 memoizerific: 1.11.3 qs: 6.11.2 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/router@7.2.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-9Cn5boUS+7yhrKlSy1kt7ruNs/znk3555kclBD6+uuhH/dD84feGeiGYE4GUuLmcKrDFtNF185/Gr1huJ556tA==} + /@storybook/router@7.1.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-zZUFV84bIjhKADrV7ZzHPOBtxumeonUU1Nbq7X+k6AWsurpUAdlpQrM+H+37eWIeFONX8Rfc0EUTrx+WUAq1hA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/client-logger': 7.2.1 + '@storybook/client-logger': 7.1.0 memoizerific: 1.11.3 qs: 6.11.2 react: 18.2.0 @@ -16631,6 +17158,23 @@ packages: - supports-color dev: true + /@storybook/telemetry@7.0.26: + resolution: {integrity: sha512-TgvtARAiD+SNyWJJfQdPiWW5JQkbX1UdHKEqEhoJXsGDkEi2Zpb+1tdeP1qZ3Gfbd1K0/LDpXGcqLv6/deSEdg==} + dependencies: + '@storybook/client-logger': 7.0.26 + '@storybook/core-common': 7.0.26 + chalk: 4.1.2 + detect-package-manager: 2.0.1 + fetch-retry: 5.0.4 + fs-extra: 11.1.1 + isomorphic-unfetch: 3.1.0 + nanoid: 3.3.6 + read-pkg-up: 7.0.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/telemetry@7.1.0: resolution: {integrity: sha512-Vy4MvaBzD1pu+eRLHUswd3buFYzr5eUjgpFWwXF6vNGN9WHuceVr/430sFwWRzhrqKnbu4tY8CwekqKeE1uaSg==} dependencies: @@ -16650,8 +17194,8 @@ packages: /@storybook/testing-library@0.0.14-next.1: resolution: {integrity: sha512-1CAl40IKIhcPaCC4pYCG0b9IiYNymktfV/jTrX7ctquRY3akaN7f4A1SippVHosksft0M+rQTFE0ccfWW581fw==} dependencies: - '@storybook/client-logger': 7.4.0-alpha.0 - '@storybook/instrumenter': 7.4.0-alpha.0 + '@storybook/client-logger': 7.5.0-alpha.1 + '@storybook/instrumenter': 7.5.0-alpha.1 '@testing-library/dom': 8.20.0 '@testing-library/user-event': 13.5.0(@testing-library/dom@8.20.0) ts-dedent: 2.2.0 @@ -16660,8 +17204,8 @@ packages: /@storybook/testing-library@0.0.14-next.2: resolution: {integrity: sha512-i/SLSGm0o978ELok/SB4Qg1sZ3zr+KuuCkzyFqcCD0r/yf+bG35aQGkFqqxfSAdDxuQom0NO02FE+qys5Eapdg==} dependencies: - '@storybook/client-logger': 7.0.0-rc.10 - '@storybook/instrumenter': 7.0.0-rc.10 + '@storybook/client-logger': 7.0.27 + '@storybook/instrumenter': 7.0.26 '@testing-library/dom': 8.20.0 '@testing-library/user-event': 13.5.0(@testing-library/dom@8.20.0) ts-dedent: 2.2.0 @@ -16695,7 +17239,7 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) '@storybook/client-logger': 7.0.0-rc.10 '@storybook/global': 5.0.0 memoizerific: 1.11.3 @@ -16703,28 +17247,42 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/theming@7.1.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-bO56c7NFlK7sfjsCbV56VLU59HHvQTW/HVu8RxUuoY+0WutyGAq6uZCmtQnMMGORzxh0p/uU2dSBVYEfW8QoTQ==} + /@storybook/theming@7.0.26(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-7hxpT2yq+xZonSsEZHOF+HDHx6GE0qlys3EQ63K9XCJ8VeBnq9M5zHvMK9iXl90093ufxpvWsfDWgtja2zvmTw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) - '@storybook/client-logger': 7.1.0 + '@storybook/client-logger': 7.0.26 '@storybook/global': 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/theming@7.2.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-cfnNCLvKmzxjmoYKfLl7Q64gSTouLvd23CtvBAOlWcRYnMJ9v4/7A2tK3xQyVRlJYh9OuXiHFLL8AXbN58Hkzw==} + /@storybook/theming@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-l2Lc8xX8QXQO8c9gpzdUUJ+0YqLoh8w74I7lzxiife0TzEQrhWD9aRJAVimm8Vzfq5x3CNeJNFHc5PcG8ypQig==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@storybook/client-logger': 7.2.1 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) + '@storybook/client-logger': 7.0.27 + '@storybook/global': 5.0.0 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: true + + /@storybook/theming@7.1.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-bO56c7NFlK7sfjsCbV56VLU59HHvQTW/HVu8RxUuoY+0WutyGAq6uZCmtQnMMGORzxh0p/uU2dSBVYEfW8QoTQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) + '@storybook/client-logger': 7.1.0 '@storybook/global': 5.0.0 memoizerific: 1.11.3 react: 18.2.0 @@ -16749,28 +17307,28 @@ packages: file-system-cache: 2.3.0 dev: true - /@storybook/types@7.1.0: - resolution: {integrity: sha512-ify1+BypgEFefkKCqBfh9fTWnkZcEqeDvLlOxbEV82C2ozg0yPlDP9VLe1eN5XM5Biigs6ZQ6WuQysl0VlCaEw==} + /@storybook/types@7.0.27: + resolution: {integrity: sha512-pmJuIm+kGaZiDMyl2i5KFS9iGWrpW1jVcp9OMtHeK20LBzY5Hxq/JMc3E+fbVNkAX2hVlVGbbVUNPTvd9AjbrA==} dependencies: - '@storybook/channels': 7.1.0 + '@storybook/channels': 7.0.27 '@types/babel__core': 7.20.1 '@types/express': 4.17.9 file-system-cache: 2.3.0 dev: true - /@storybook/types@7.2.1: - resolution: {integrity: sha512-YwlIY1uyxfJjijbB5x1d1QOKaUUDJnMX8BSb8oGqU4cyT76X/Is4CbGs+vccFsJo0tZu1GfuahYXl0EDT0nnSQ==} + /@storybook/types@7.1.0: + resolution: {integrity: sha512-ify1+BypgEFefkKCqBfh9fTWnkZcEqeDvLlOxbEV82C2ozg0yPlDP9VLe1eN5XM5Biigs6ZQ6WuQysl0VlCaEw==} dependencies: - '@storybook/channels': 7.2.1 + '@storybook/channels': 7.1.0 '@types/babel__core': 7.20.1 '@types/express': 4.17.9 file-system-cache: 2.3.0 dev: true - /@storybook/types@7.4.0-alpha.0: - resolution: {integrity: sha512-fUkrqGaI3kn8lfvcshmaNmQXs2LXG91iZSts2Sbmbk/Gnr1CnqV/NxIFc+qOAiesOwaLf9a7zD8+/izsLQUtQw==} + /@storybook/types@7.5.0-alpha.1: + resolution: {integrity: sha512-+g9UW83JpJqFnmbFyLRi0QQPViAv9VTbtfiP/ocFoYUxmEbbyFVWdvmFqryikDgfe+RwMlu0W0rmPDHahkhIwQ==} dependencies: - '@storybook/channels': 7.4.0-alpha.0 + '@storybook/channels': 7.5.0-alpha.1 '@types/babel__core': 7.20.1 '@types/express': 4.17.9 file-system-cache: 2.3.0 @@ -16943,12 +17501,12 @@ packages: tailwindcss: 3.2.7(postcss@8.4.24)(ts-node@10.9.1) dev: false - /@tailwindcss/line-clamp@0.4.4(tailwindcss@3.3.3): + /@tailwindcss/line-clamp@0.4.4(tailwindcss@3.3.2): resolution: {integrity: sha512-5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g==} peerDependencies: tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1' dependencies: - tailwindcss: 3.3.3(ts-node@10.9.1) + tailwindcss: 3.3.2(ts-node@10.9.1) dev: true /@tanstack/match-sorter-utils@8.7.6: @@ -17058,7 +17616,7 @@ packages: engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.22.5 - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 '@types/aria-query': 5.0.1 aria-query: 5.1.3 chalk: 4.1.2 @@ -17072,7 +17630,7 @@ packages: engines: {node: '>=14'} dependencies: '@babel/code-frame': 7.22.5 - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 '@types/aria-query': 5.0.1 aria-query: 5.1.3 chalk: 4.1.2 @@ -17126,7 +17684,7 @@ packages: peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 '@testing-library/dom': 8.20.0 dev: true @@ -17221,7 +17779,7 @@ packages: resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==} dependencies: '@babel/parser': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.18.3 @@ -17229,18 +17787,18 @@ packages: /@types/babel__generator@7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.21.3 /@types/babel__template@7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.22.5 - '@babel/types': 7.22.10 + '@babel/parser': 7.21.3 + '@babel/types': 7.21.3 /@types/babel__traverse@7.18.3: resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.21.3 /@types/bcrypt@5.0.0: resolution: {integrity: sha512-agtcFKaruL8TmcvqbndlqHPSJgsolhf/qPWchFlgnW1gECTN/nKbFcoFnvKAQRFfKbh+BO6A3SWdJu9t+xF3Lw==} @@ -17258,7 +17816,7 @@ packages: /@types/chai-subset@1.3.3: resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} dependencies: - '@types/chai': 4.3.4 + '@types/chai': 4.3.5 dev: true /@types/chai@4.3.4: @@ -17394,7 +17952,7 @@ packages: resolution: {integrity: sha512-fa7GkppZVEByMWGbTtE5MbmXWJTVbrjjaS8K6uQj+XtuuUv1fsuPAxhygfqLmsb/Ufb3CV8deFCpiMfAgi00Sw==} dependencies: '@types/estree': 1.0.0 - '@types/json-schema': 7.0.11 + '@types/json-schema': 7.0.12 dev: true /@types/estree-jsx@1.0.0: @@ -17525,6 +18083,10 @@ packages: /@types/json-schema@7.0.11: resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + dev: true + + /@types/json-schema@7.0.12: + resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} @@ -17621,13 +18183,6 @@ packages: '@types/unist': 2.0.6 dev: false - /@types/node-fetch@2.6.3: - resolution: {integrity: sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==} - dependencies: - '@types/node': 18.15.10 - form-data: 3.0.1 - dev: true - /@types/node-fetch@2.6.4: resolution: {integrity: sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==} dependencies: @@ -17749,27 +18304,22 @@ packages: dependencies: '@types/react': 18.0.37 - /@types/react-dom@18.2.6: - resolution: {integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==} - dependencies: - '@types/react': 18.2.14 - /@types/react-dom@18.2.7: resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==} dependencies: - '@types/react': 18.2.19 + '@types/react': 18.2.15 dev: true /@types/react-is@18.2.1: resolution: {integrity: sha512-wyUkmaaSZEzFZivD8F2ftSyAfk6L+DfFliVj/mYdOXbVjRcS87fQJLTnhk6dRZPuJjI+9g6RZJO4PNCngUrmyw==} dependencies: - '@types/react': 18.2.19 + '@types/react': 18.2.15 dev: false /@types/react-transition-group@4.4.6: resolution: {integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==} dependencies: - '@types/react': 18.2.19 + '@types/react': 18.2.15 dev: false /@types/react@17.0.45: @@ -17794,20 +18344,13 @@ packages: '@types/scheduler': 0.16.3 csstype: 3.1.1 - /@types/react@18.2.14: - resolution: {integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==} + /@types/react@18.2.15: + resolution: {integrity: sha512-oEjE7TQt1fFTFSbf8kkNuc798ahTUzn3Le67/PWjE8MAfYAD/qB7O8hSTcromLFqHCt9bcdOg5GXMokzTjJ5SA==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.3 csstype: 3.1.1 - /@types/react@18.2.19: - resolution: {integrity: sha512-e2S8wmY1ePfM517PqCG80CcE48Xs5k0pwJzuDZsfE8IZRRBfOMCF+XqnFxu6mWtyivum1MQm4aco+WIt6Coimw==} - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.3 - csstype: 3.1.2 - /@types/readdir-glob@1.1.1: resolution: {integrity: sha512-ImM6TmoF8bgOwvehGviEj3tRdRBbQujr1N+0ypaln/GWjaerOB26jb93vsRHmdMtvVQZQebOlqt2HROark87mQ==} dependencies: @@ -18062,14 +18605,14 @@ packages: grapheme-splitter: 1.0.4 ignore: 5.2.4 natural-compare-lite: 1.4.0 - semver: 7.3.8 + semver: 7.5.3 tsutils: 3.21.0(typescript@5.0.2) typescript: 5.0.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin@5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.46.0)(typescript@4.9.5): + /@typescript-eslint/eslint-plugin@5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@4.9.5): resolution: {integrity: sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -18080,24 +18623,24 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.6.2 - '@typescript-eslint/parser': 5.61.0(eslint@8.46.0)(typescript@4.9.5) + '@eslint-community/regexpp': 4.4.1 + '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 5.61.0 - '@typescript-eslint/type-utils': 5.61.0(eslint@8.46.0)(typescript@4.9.5) - '@typescript-eslint/utils': 5.61.0(eslint@8.46.0)(typescript@4.9.5) + '@typescript-eslint/type-utils': 5.61.0(eslint@8.44.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@4.9.5) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.46.0 + eslint: 8.44.0 graphemer: 1.4.0 ignore: 5.2.4 natural-compare-lite: 1.4.0 - semver: 7.5.4 + semver: 7.5.3 tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin@5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.46.0)(typescript@5.1.6): + /@typescript-eslint/eslint-plugin@5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6): resolution: {integrity: sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -18108,58 +18651,30 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.6.2 - '@typescript-eslint/parser': 5.61.0(eslint@8.46.0)(typescript@5.1.6) + '@eslint-community/regexpp': 4.4.1 + '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.1.6) '@typescript-eslint/scope-manager': 5.61.0 - '@typescript-eslint/type-utils': 5.61.0(eslint@8.46.0)(typescript@5.1.6) - '@typescript-eslint/utils': 5.61.0(eslint@8.46.0)(typescript@5.1.6) + '@typescript-eslint/type-utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6) + '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.46.0 + eslint: 8.44.0 graphemer: 1.4.0 ignore: 5.2.4 natural-compare-lite: 1.4.0 - semver: 7.5.4 + semver: 7.5.3 tsutils: 3.21.0(typescript@5.1.6) typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.44.0)(typescript@4.9.5): - resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@eslint-community/regexpp': 4.6.2 - '@typescript-eslint/parser': 5.62.0(eslint@8.44.0)(typescript@4.9.5) - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.44.0)(typescript@4.9.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.44.0)(typescript@4.9.5) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.44.0 - graphemer: 1.4.0 - ignore: 5.2.4 - natural-compare-lite: 1.4.0 - semver: 7.5.4 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/experimental-utils@4.33.0(eslint@8.36.0)(typescript@4.9.5): resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: eslint: '*' dependencies: - '@types/json-schema': 7.0.11 + '@types/json-schema': 7.0.12 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) @@ -18177,7 +18692,7 @@ packages: peerDependencies: eslint: '*' dependencies: - '@types/json-schema': 7.0.11 + '@types/json-schema': 7.0.12 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 '@typescript-eslint/typescript-estree': 4.33.0(typescript@5.1.6) @@ -18189,19 +18704,19 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils@4.33.0(eslint@8.46.0)(typescript@5.1.6): + /@typescript-eslint/experimental-utils@4.33.0(eslint@8.44.0)(typescript@5.1.6): resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: eslint: '*' dependencies: - '@types/json-schema': 7.0.11 + '@types/json-schema': 7.0.12 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 '@typescript-eslint/typescript-estree': 4.33.0(typescript@5.1.6) - eslint: 8.46.0 + eslint: 8.44.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@8.46.0) + eslint-utils: 3.0.0(eslint@8.44.0) transitivePeerDependencies: - supports-color - typescript @@ -18287,7 +18802,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@5.61.0(eslint@8.46.0)(typescript@4.9.5): + /@typescript-eslint/parser@5.61.0(eslint@8.44.0)(typescript@4.9.5): resolution: {integrity: sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -18301,13 +18816,13 @@ packages: '@typescript-eslint/types': 5.61.0 '@typescript-eslint/typescript-estree': 5.61.0(typescript@4.9.5) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.46.0 + eslint: 8.44.0 typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@5.61.0(eslint@8.46.0)(typescript@5.1.6): + /@typescript-eslint/parser@5.61.0(eslint@8.44.0)(typescript@5.1.6): resolution: {integrity: sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -18321,28 +18836,8 @@ packages: '@typescript-eslint/types': 5.61.0 '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.46.0 - typescript: 5.1.6 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/parser@5.62.0(eslint@8.44.0)(typescript@4.9.5): - resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - debug: 4.3.4(supports-color@8.1.1) eslint: 8.44.0 - typescript: 4.9.5 + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true @@ -18379,14 +18874,6 @@ packages: '@typescript-eslint/visitor-keys': 5.61.0 dev: true - /@typescript-eslint/scope-manager@5.62.0: - resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 - dev: true - /@typescript-eslint/type-utils@5.56.0(eslint@8.22.0)(typescript@4.9.5): resolution: {integrity: sha512-8WxgOgJjWRy6m4xg9KoSHPzBNZeQbGlQOH7l2QEhQID/+YseaFxg5J/DLwWSsi9Axj4e/cCiKx7PVzOq38tY4A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -18467,7 +18954,7 @@ packages: - supports-color dev: true - /@typescript-eslint/type-utils@5.61.0(eslint@8.46.0)(typescript@4.9.5): + /@typescript-eslint/type-utils@5.61.0(eslint@8.44.0)(typescript@4.9.5): resolution: {integrity: sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -18478,16 +18965,16 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.61.0(typescript@4.9.5) - '@typescript-eslint/utils': 5.61.0(eslint@8.46.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@4.9.5) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.46.0 + eslint: 8.44.0 tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils@5.61.0(eslint@8.46.0)(typescript@5.1.6): + /@typescript-eslint/type-utils@5.61.0(eslint@8.44.0)(typescript@5.1.6): resolution: {integrity: sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -18498,35 +18985,15 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) - '@typescript-eslint/utils': 5.61.0(eslint@8.46.0)(typescript@5.1.6) + '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.46.0 + eslint: 8.44.0 tsutils: 3.21.0(typescript@5.1.6) typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils@5.62.0(eslint@8.44.0)(typescript@4.9.5): - resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.44.0)(typescript@4.9.5) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.44.0 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/types@4.33.0: resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} @@ -18547,11 +19014,6 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types@5.62.0: - resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - /@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.5): resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} engines: {node: ^10.12.0 || >=12.0.0} @@ -18566,7 +19028,7 @@ packages: debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 + semver: 7.5.3 tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: @@ -18587,7 +19049,7 @@ packages: debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 + semver: 7.5.3 tsutils: 3.21.0(typescript@5.1.6) typescript: 5.1.6 transitivePeerDependencies: @@ -18608,7 +19070,7 @@ packages: debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 + semver: 7.5.3 tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: @@ -18629,34 +19091,13 @@ packages: debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 + semver: 7.5.3 tsutils: 3.21.0(typescript@5.1.6) typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@5.59.0(typescript@4.9.5): - resolution: {integrity: sha512-sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.59.0 - '@typescript-eslint/visitor-keys': 5.59.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.4 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/typescript-estree@5.59.0(typescript@5.0.2): resolution: {integrity: sha512-sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -18671,34 +19112,13 @@ packages: debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 + semver: 7.5.3 tsutils: 3.21.0(typescript@5.0.2) typescript: 5.0.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@5.59.0(typescript@5.1.6): - resolution: {integrity: sha512-sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.59.0 - '@typescript-eslint/visitor-keys': 5.59.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.4 - tsutils: 3.21.0(typescript@5.1.6) - typescript: 5.1.6 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/typescript-estree@5.61.0(typescript@4.9.5): resolution: {integrity: sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -18713,7 +19133,7 @@ packages: debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 + semver: 7.5.3 tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: @@ -18734,34 +19154,13 @@ packages: debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 + semver: 7.5.3 tsutils: 3.21.0(typescript@5.1.6) typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5): - resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.4 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/utils@5.56.0(eslint@8.22.0)(typescript@4.9.5): resolution: {integrity: sha512-XhZDVdLnUJNtbzaJeDSCIYaM+Tgr59gZGbFuELgF7m0IY03PlciidS7UQNKLE0+WpUTn1GlycEr6Ivb/afjbhA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -18776,7 +19175,7 @@ packages: '@typescript-eslint/typescript-estree': 5.56.0(typescript@4.9.5) eslint: 8.22.0 eslint-scope: 5.1.1 - semver: 7.5.4 + semver: 7.5.3 transitivePeerDependencies: - supports-color - typescript @@ -18796,7 +19195,7 @@ packages: '@typescript-eslint/typescript-estree': 5.56.0(typescript@4.9.5) eslint: 8.36.0 eslint-scope: 5.1.1 - semver: 7.5.4 + semver: 7.5.3 transitivePeerDependencies: - supports-color - typescript @@ -18816,7 +19215,7 @@ packages: '@typescript-eslint/typescript-estree': 5.56.0(typescript@5.1.6) eslint: 8.36.0 eslint-scope: 5.1.1 - semver: 7.5.4 + semver: 7.5.3 transitivePeerDependencies: - supports-color - typescript @@ -18836,94 +19235,54 @@ packages: '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.0.2) eslint: 8.38.0 eslint-scope: 5.1.1 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /@typescript-eslint/utils@5.59.0(eslint@8.46.0)(typescript@4.9.5): - resolution: {integrity: sha512-GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) - '@types/json-schema': 7.0.11 - '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.59.0 - '@typescript-eslint/types': 5.59.0 - '@typescript-eslint/typescript-estree': 5.59.0(typescript@4.9.5) - eslint: 8.46.0 - eslint-scope: 5.1.1 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /@typescript-eslint/utils@5.59.0(eslint@8.46.0)(typescript@5.1.6): - resolution: {integrity: sha512-GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) - '@types/json-schema': 7.0.11 - '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.59.0 - '@typescript-eslint/types': 5.59.0 - '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.1.6) - eslint: 8.46.0 - eslint-scope: 5.1.1 - semver: 7.5.4 + semver: 7.5.3 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils@5.61.0(eslint@8.46.0)(typescript@4.9.5): + /@typescript-eslint/utils@5.61.0(eslint@8.22.0)(typescript@4.9.5): resolution: {integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.22.0) '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 '@typescript-eslint/scope-manager': 5.61.0 '@typescript-eslint/types': 5.61.0 '@typescript-eslint/typescript-estree': 5.61.0(typescript@4.9.5) - eslint: 8.46.0 + eslint: 8.22.0 eslint-scope: 5.1.1 - semver: 7.5.4 + semver: 7.5.3 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils@5.61.0(eslint@8.46.0)(typescript@5.1.6): + /@typescript-eslint/utils@5.61.0(eslint@8.44.0)(typescript@4.9.5): resolution: {integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0) '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 '@typescript-eslint/scope-manager': 5.61.0 '@typescript-eslint/types': 5.61.0 - '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) - eslint: 8.46.0 + '@typescript-eslint/typescript-estree': 5.61.0(typescript@4.9.5) + eslint: 8.44.0 eslint-scope: 5.1.1 - semver: 7.5.4 + semver: 7.5.3 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils@5.62.0(eslint@8.44.0)(typescript@4.9.5): - resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + /@typescript-eslint/utils@5.61.0(eslint@8.44.0)(typescript@5.1.6): + resolution: {integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -18931,12 +19290,12 @@ packages: '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0) '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) + '@typescript-eslint/scope-manager': 5.61.0 + '@typescript-eslint/types': 5.61.0 + '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) eslint: 8.44.0 eslint-scope: 5.1.1 - semver: 7.5.4 + semver: 7.5.3 transitivePeerDependencies: - supports-color - typescript @@ -18955,7 +19314,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.56.0 - eslint-visitor-keys: 3.4.2 + eslint-visitor-keys: 3.4.1 dev: true /@typescript-eslint/visitor-keys@5.59.0: @@ -18963,7 +19322,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.59.0 - eslint-visitor-keys: 3.4.2 + eslint-visitor-keys: 3.4.1 dev: true /@typescript-eslint/visitor-keys@5.61.0: @@ -18971,38 +19330,30 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.61.0 - eslint-visitor-keys: 3.4.2 - dev: true - - /@typescript-eslint/visitor-keys@5.62.0: - resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.62.0 - eslint-visitor-keys: 3.4.2 + eslint-visitor-keys: 3.4.1 dev: true - /@vitejs/plugin-react-swc@3.2.0(vite@4.4.9): + /@vitejs/plugin-react-swc@3.2.0(vite@4.4.6): resolution: {integrity: sha512-IcBoXL/mcH7JdQr/nfDlDwTdIaH8Rg7LpfQDF4nAht+juHWIuv6WhpKPCSfY4+zztAaB07qdBoFz1XCZsgo3pQ==} peerDependencies: vite: ^4 dependencies: '@swc/core': 1.3.42 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) dev: true - /@vitejs/plugin-react@3.1.0(vite@4.4.9): + /@vitejs/plugin-react@3.1.0(vite@4.4.6): resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.1.0-beta.0 dependencies: '@babel/core': 7.22.5 - '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.22.5) - '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.5) + '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.5) + '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.5) magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - supports-color dev: true @@ -19022,7 +19373,7 @@ packages: - supports-color dev: true - /@vitejs/plugin-react@4.0.1(vite@4.4.9): + /@vitejs/plugin-react@4.0.1(vite@4.4.6): resolution: {integrity: sha512-g25lL98essfeSj43HJ0o4DMp0325XK0ITkxpgChzJU/CyemgyChtlxfnRbjfwxDGCTRxTiXtQAsdebQXKMRSOA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -19032,7 +19383,7 @@ packages: '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.5) '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.5) react-refresh: 0.14.0 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - supports-color dev: true @@ -19091,7 +19442,7 @@ packages: dependencies: '@vitest/utils': 0.28.5 p-limit: 4.0.0 - pathe: 1.1.0 + pathe: 1.1.1 dev: true /@vitest/runner@0.29.8: @@ -19099,7 +19450,7 @@ packages: dependencies: '@vitest/utils': 0.29.8 p-limit: 4.0.0 - pathe: 1.1.0 + pathe: 1.1.1 dev: true /@vitest/runner@0.33.0: @@ -19113,7 +19464,7 @@ packages: /@vitest/snapshot@0.33.0: resolution: {integrity: sha512-tJjrl//qAHbyHajpFvr8Wsk8DIOODEebTu7pgBrP07iOepR5jYkLFiqLq2Ltxv+r0uptUb4izv1J8XBOwKkVYA==} dependencies: - magic-string: 0.30.2 + magic-string: 0.30.1 pathe: 1.1.1 pretty-format: 29.5.0 dev: true @@ -19371,13 +19722,13 @@ packages: tslib: 2.5.2 dev: true - /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20): + /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.12): resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} engines: {node: '>=14.15.0'} peerDependencies: esbuild: '>=0.10.0' dependencies: - esbuild: 0.18.20 + esbuild: 0.18.12 tslib: 2.5.2 dev: true @@ -19649,23 +20000,23 @@ packages: uri-js: 4.4.1 dev: false - /algoliasearch@4.19.1: - resolution: {integrity: sha512-IJF5b93b2MgAzcE/tuzW0yOPnuUyRgGAtaPv5UUywXM8kzqfdwZTO4sPJBzoGz1eOy6H9uEchsJsBFTELZSu+g==} + /algoliasearch@4.18.0: + resolution: {integrity: sha512-pCuVxC1SVcpc08ENH32T4sLKSyzoU7TkRIDBMwSLfIiW+fq4znOmWDkAygHZ6pRcO9I1UJdqlfgnV7TRj+MXrA==} dependencies: - '@algolia/cache-browser-local-storage': 4.19.1 - '@algolia/cache-common': 4.19.1 - '@algolia/cache-in-memory': 4.19.1 - '@algolia/client-account': 4.19.1 - '@algolia/client-analytics': 4.19.1 - '@algolia/client-common': 4.19.1 - '@algolia/client-personalization': 4.19.1 - '@algolia/client-search': 4.19.1 - '@algolia/logger-common': 4.19.1 - '@algolia/logger-console': 4.19.1 - '@algolia/requester-browser-xhr': 4.19.1 - '@algolia/requester-common': 4.19.1 - '@algolia/requester-node-http': 4.19.1 - '@algolia/transporter': 4.19.1 + '@algolia/cache-browser-local-storage': 4.18.0 + '@algolia/cache-common': 4.18.0 + '@algolia/cache-in-memory': 4.18.0 + '@algolia/client-account': 4.18.0 + '@algolia/client-analytics': 4.18.0 + '@algolia/client-common': 4.18.0 + '@algolia/client-personalization': 4.18.0 + '@algolia/client-search': 4.18.0 + '@algolia/logger-common': 4.18.0 + '@algolia/logger-console': 4.18.0 + '@algolia/requester-browser-xhr': 4.18.0 + '@algolia/requester-common': 4.18.0 + '@algolia/requester-node-http': 4.18.0 + '@algolia/transporter': 4.18.0 dev: false /ansi-align@3.0.1: @@ -19791,6 +20142,7 @@ packages: engines: {node: '>=10'} dependencies: tslib: 2.5.2 + dev: false /aria-query@5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} @@ -19940,18 +20292,18 @@ packages: engines: {node: ^14.18.0 || >=16.0.0} dependencies: '@astrojs/compiler': 0.32.0 - '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/types': 5.61.0 astrojs-compiler-sync: 0.3.2(@astrojs/compiler@0.32.0) debug: 4.3.4(supports-color@8.1.1) - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.2 - espree: 9.6.1 + eslint-scope: 7.2.0 + eslint-visitor-keys: 3.4.1 + espree: 9.6.0 transitivePeerDependencies: - supports-color dev: true - /astro@2.6.6(@types/node@18.15.10): - resolution: {integrity: sha512-npeTXVaSOWKYYF6Znj6Yfxfq+WIFZ9u/Q+vtFP3nXbl7/XimvE+LbmWoK+hPFBOXC/KRLHxqQSltXJX5ALFmFg==} + /astro@2.7.2(@types/node@18.15.10): + resolution: {integrity: sha512-2+vjXeVGU04aecs0mm93Qx9KdeVDw4OTeBIijs2Z+QLoe4RUYZnkqx5gR70VNfnoMdXoPp7+wB+ARcb0+ee/yg==} engines: {node: '>=16.12.0', npm: '>=6.14.0'} hasBin: true peerDependencies: @@ -19960,10 +20312,10 @@ packages: sharp: optional: true dependencies: - '@astrojs/compiler': 1.8.1 - '@astrojs/internal-helpers': 0.1.2 + '@astrojs/compiler': 1.5.1 + '@astrojs/internal-helpers': 0.1.1 '@astrojs/language-server': 1.0.8 - '@astrojs/markdown-remark': 2.2.1(astro@2.6.6) + '@astrojs/markdown-remark': 2.2.1(astro@2.7.2) '@astrojs/telemetry': 2.1.1 '@astrojs/webapi': 2.2.0 '@babel/core': 7.22.5 @@ -19971,7 +20323,7 @@ packages: '@babel/parser': 7.22.5 '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.5) '@babel/traverse': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 '@types/babel__core': 7.20.1 '@types/yargs-parser': 21.0.0 acorn: 8.9.0 @@ -19988,7 +20340,7 @@ packages: esbuild: 0.17.19 estree-walker: 3.0.0 execa: 6.1.0 - fast-glob: 3.3.1 + fast-glob: 3.3.0 github-slugger: 2.0.0 gray-matter: 4.0.3 html-escaper: 3.0.3 @@ -20002,19 +20354,17 @@ packages: preferred-pm: 3.0.3 prompts: 2.4.2 rehype: 12.0.1 - semver: 7.5.4 + semver: 7.5.3 server-destroy: 1.0.1 shiki: 0.14.3 - slash: 4.0.0 string-width: 5.1.2 strip-ansi: 7.1.0 - supports-esm: 1.0.0 tsconfig-resolver: 3.0.1 typescript: 4.9.5 unist-util-visit: 4.1.2 vfile: 5.3.7 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) - vitefu: 0.2.4(vite@4.4.9) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) + vitefu: 0.2.4(vite@4.4.6) yargs-parser: 21.1.1 zod: 3.21.4 transitivePeerDependencies: @@ -20064,8 +20414,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.5 - caniuse-lite: 1.0.30001470 + browserslist: 4.21.9 + caniuse-lite: 1.0.30001517 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -20080,8 +20430,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.5 - caniuse-lite: 1.0.30001470 + browserslist: 4.21.9 + caniuse-lite: 1.0.30001517 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -20095,8 +20445,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.5 - caniuse-lite: 1.0.30001470 + browserslist: 4.21.9 + caniuse-lite: 1.0.30001517 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -20163,10 +20513,10 @@ packages: '@babel/code-frame': 7.22.5 '@babel/parser': 7.22.5 '@babel/traverse': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 eslint: 8.22.0 eslint-visitor-keys: 1.3.0 - resolve: 1.22.4 + resolve: 1.22.2 transitivePeerDependencies: - supports-color dev: false @@ -20226,7 +20576,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@babel/template': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 '@types/babel__core': 7.20.1 '@types/babel__traverse': 7.18.3 dev: true @@ -20236,7 +20586,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/template': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 '@types/babel__core': 7.20.1 '@types/babel__traverse': 7.18.3 dev: true @@ -20249,7 +20599,7 @@ packages: '@babel/core': 7.22.5 '@babel/helper-module-imports': 7.18.6 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.5) - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 html-entities: 2.3.3 validate-html-nesting: 1.2.2 dev: false @@ -20258,9 +20608,9 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 cosmiconfig: 7.1.0 - resolve: 1.22.4 + resolve: 1.22.2 dev: false /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.17.9): @@ -20268,10 +20618,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.5 + '@babel/compat-data': 7.22.9 '@babel/core': 7.17.9 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.9) - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -20281,10 +20631,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.5 + '@babel/compat-data': 7.22.9 '@babel/core': 7.21.3 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3) - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -20294,10 +20644,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.5 + '@babel/compat-data': 7.22.9 '@babel/core': 7.22.5 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.5) - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -20358,7 +20708,7 @@ packages: dependencies: '@babel/core': 7.22.5 '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.5) - core-js-compat: 3.32.0 + core-js-compat: 3.32.1 transitivePeerDependencies: - supports-color dev: true @@ -20706,21 +21056,21 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001519 - electron-to-chromium: 1.4.488 + caniuse-lite: 1.0.30001517 + electron-to-chromium: 1.4.508 node-releases: 2.0.13 update-browserslist-db: 1.0.11(browserslist@4.21.10) dev: true - /browserslist@4.21.5: - resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} + /browserslist@4.21.9: + resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001470 - electron-to-chromium: 1.4.340 - node-releases: 2.0.10 - update-browserslist-db: 1.0.10(browserslist@4.21.5) + caniuse-lite: 1.0.30001517 + electron-to-chromium: 1.4.468 + node-releases: 2.0.13 + update-browserslist-db: 1.0.11(browserslist@4.21.9) /bs-logger@0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} @@ -20781,7 +21131,7 @@ packages: /builtins@5.0.1: resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} dependencies: - semver: 7.5.4 + semver: 7.5.3 dev: true /busboy@1.6.0: @@ -20880,12 +21230,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - /caniuse-lite@1.0.30001470: - resolution: {integrity: sha512-065uNwY6QtHCBOExzbV6m236DDhYCCtPmQUCoQtwkVqzud8v5QPidoMr6CoMkC2nfp6nksjttqWQRRh75LqUmA==} - - /caniuse-lite@1.0.30001519: - resolution: {integrity: sha512-0QHgqR+Jv4bxHMp8kZ1Kn8CH55OikjKJ6JmKkZYP1F3D7w+lnFXF70nG5eNfsZS89jadi5Ywy5UCSKLAglIRkg==} - dev: true + /caniuse-lite@1.0.30001517: + resolution: {integrity: sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==} /ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -21216,13 +21562,13 @@ packages: - '@types/react' dev: false - /cmdk@0.2.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /cmdk@0.2.0(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-JQpKvEOb86SnvMZbYaFKYhvzFntWBeSZdyii0rZPhKJj9uwJBxu4DaVYDrRN7r3mPop56oPhRw+JYWTKs66TYw==} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0) command-score: 0.1.2 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -21617,11 +21963,11 @@ packages: /core-js-compat@3.29.1: resolution: {integrity: sha512-QmchCua884D8wWskMX8tW5ydINzd8oSJVx38lx/pVkFGqztxt73GYre3pm/hyYq8bPf+MW5In4I/uRShFDsbrA==} dependencies: - browserslist: 4.21.5 + browserslist: 4.21.9 dev: true - /core-js-compat@3.32.0: - resolution: {integrity: sha512-7a9a3D1k4UCVKnLhrgALyFcP7YCsLOQIxPd0dKjf/6GuPcgyiGP70ewWdCGrSK7evyhymi0qO4EqCmSJofDeYw==} + /core-js-compat@3.32.1: + resolution: {integrity: sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==} dependencies: browserslist: 4.21.10 dev: true @@ -21863,12 +22209,12 @@ packages: cspell-glob: 6.31.2 cspell-io: 6.31.2 cspell-lib: 6.31.2 - fast-glob: 3.3.1 + fast-glob: 3.3.0 fast-json-stable-stringify: 2.1.0 file-entry-cache: 6.0.1 get-stdin: 8.0.0 imurmurhash: 0.1.4 - semver: 7.5.4 + semver: 7.5.3 strip-ansi: 6.0.1 vscode-uri: 3.0.7 transitivePeerDependencies: @@ -21888,8 +22234,8 @@ packages: postcss-modules-scope: 3.0.0(postcss@8.4.27) postcss-modules-values: 4.0.0(postcss@8.4.27) postcss-value-parser: 4.2.0 - semver: 7.5.4 - webpack: 5.76.2(esbuild@0.18.20) + semver: 7.5.3 + webpack: 5.76.2(esbuild@0.17.19) dev: true /css-select@4.3.0: @@ -21951,6 +22297,7 @@ packages: /csstype@3.1.2: resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} + dev: false /csv-generate@3.4.3: resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} @@ -22087,7 +22434,7 @@ packages: css-selector-tokenizer: 0.8.0 postcss: 8.4.21 postcss-js: 4.0.1(postcss@8.4.21) - tailwindcss: 3.3.3(ts-node@10.9.1) + tailwindcss: 3.3.2(ts-node@10.9.1) transitivePeerDependencies: - ts-node dev: true @@ -22342,6 +22689,7 @@ packages: /detect-node-es@1.1.0: resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} + dev: false /detect-package-manager@2.0.1: resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} @@ -22470,13 +22818,13 @@ packages: /dom-helpers@3.4.0: resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 dev: false /dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 csstype: 3.1.2 dev: false @@ -22614,11 +22962,11 @@ packages: jake: 10.8.5 dev: true - /electron-to-chromium@1.4.340: - resolution: {integrity: sha512-zx8hqumOqltKsv/MF50yvdAlPF9S/4PXbyfzJS6ZGhbddGkRegdwImmfSVqCkEziYzrIGZ/TlrzBND4FysfkDg==} + /electron-to-chromium@1.4.468: + resolution: {integrity: sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag==} - /electron-to-chromium@1.4.488: - resolution: {integrity: sha512-Dv4sTjiW7t/UWGL+H8ZkgIjtUAVZDgb/PwGWvMsCT7jipzUV/u5skbLXPFKb6iV0tiddVi/bcS2/kUrczeWgIQ==} + /electron-to-chromium@1.4.508: + resolution: {integrity: sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==} dev: true /element-resize-detector@1.2.4: @@ -22987,13 +23335,13 @@ packages: - supports-color dev: true - /esbuild-register@3.4.2(esbuild@0.18.20): + /esbuild-register@3.4.2(esbuild@0.18.12): resolution: {integrity: sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==} peerDependencies: esbuild: '>=0.12 <1' dependencies: debug: 4.3.4(supports-color@8.1.1) - esbuild: 0.18.20 + esbuild: 0.18.12 transitivePeerDependencies: - supports-color dev: true @@ -23147,34 +23495,34 @@ packages: '@esbuild/win32-ia32': 0.17.19 '@esbuild/win32-x64': 0.17.19 - /esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + /esbuild@0.18.12: + resolution: {integrity: sha512-XuOVLDdtsDslXStStduT41op21Ytmf4/BDS46aa3xPJ7X5h2eMWBF1oAe3QjUH3bDksocNXgzGUZ7XHIBya6Tg==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.18.20 - '@esbuild/android-arm64': 0.18.20 - '@esbuild/android-x64': 0.18.20 - '@esbuild/darwin-arm64': 0.18.20 - '@esbuild/darwin-x64': 0.18.20 - '@esbuild/freebsd-arm64': 0.18.20 - '@esbuild/freebsd-x64': 0.18.20 - '@esbuild/linux-arm': 0.18.20 - '@esbuild/linux-arm64': 0.18.20 - '@esbuild/linux-ia32': 0.18.20 - '@esbuild/linux-loong64': 0.18.20 - '@esbuild/linux-mips64el': 0.18.20 - '@esbuild/linux-ppc64': 0.18.20 - '@esbuild/linux-riscv64': 0.18.20 - '@esbuild/linux-s390x': 0.18.20 - '@esbuild/linux-x64': 0.18.20 - '@esbuild/netbsd-x64': 0.18.20 - '@esbuild/openbsd-x64': 0.18.20 - '@esbuild/sunos-x64': 0.18.20 - '@esbuild/win32-arm64': 0.18.20 - '@esbuild/win32-ia32': 0.18.20 - '@esbuild/win32-x64': 0.18.20 + '@esbuild/android-arm': 0.18.12 + '@esbuild/android-arm64': 0.18.12 + '@esbuild/android-x64': 0.18.12 + '@esbuild/darwin-arm64': 0.18.12 + '@esbuild/darwin-x64': 0.18.12 + '@esbuild/freebsd-arm64': 0.18.12 + '@esbuild/freebsd-x64': 0.18.12 + '@esbuild/linux-arm': 0.18.12 + '@esbuild/linux-arm64': 0.18.12 + '@esbuild/linux-ia32': 0.18.12 + '@esbuild/linux-loong64': 0.18.12 + '@esbuild/linux-mips64el': 0.18.12 + '@esbuild/linux-ppc64': 0.18.12 + '@esbuild/linux-riscv64': 0.18.12 + '@esbuild/linux-s390x': 0.18.12 + '@esbuild/linux-x64': 0.18.12 + '@esbuild/netbsd-x64': 0.18.12 + '@esbuild/openbsd-x64': 0.18.12 + '@esbuild/sunos-x64': 0.18.12 + '@esbuild/win32-arm64': 0.18.12 + '@esbuild/win32-ia32': 0.18.12 + '@esbuild/win32-x64': 0.18.12 /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -23224,13 +23572,13 @@ packages: get-stdin: 6.0.0 dev: true - /eslint-config-prettier@6.15.0(eslint@8.46.0): + /eslint-config-prettier@6.15.0(eslint@8.44.0): resolution: {integrity: sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw==} hasBin: true peerDependencies: eslint: '>=3.14.1' dependencies: - eslint: 8.46.0 + eslint: 8.44.0 get-stdin: 6.0.0 dev: true @@ -23261,7 +23609,7 @@ packages: eslint: 8.44.0 dev: true - /eslint-config-standard-with-typescript@23.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.6.1)(eslint-plugin-promise@6.1.1)(eslint@8.44.0)(typescript@4.9.5): + /eslint-config-standard-with-typescript@23.0.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.6.1)(eslint-plugin-promise@6.1.1)(eslint@8.44.0)(typescript@4.9.5): resolution: {integrity: sha512-iaaWifImn37Z1OXbNW1es7KI+S7D408F9ys0bpaQf2temeBWlvb0Nc5qHkOgYaRb5QxTZT32GGeN1gtswASOXA==} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.0.0 @@ -23271,11 +23619,11 @@ packages: eslint-plugin-promise: ^6.0.0 typescript: '*' dependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.44.0)(typescript@4.9.5) - '@typescript-eslint/parser': 5.62.0(eslint@8.44.0)(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@4.9.5) eslint: 8.44.0 eslint-config-standard: 17.0.0(eslint-plugin-import@2.27.5)(eslint-plugin-n@15.6.1)(eslint-plugin-promise@6.1.1)(eslint@8.44.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.62.0)(eslint@8.44.0) + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.61.0)(eslint@8.44.0) eslint-plugin-n: 15.6.1(eslint@8.44.0) eslint-plugin-promise: 6.1.1(eslint@8.44.0) typescript: 4.9.5 @@ -23292,7 +23640,7 @@ packages: eslint-plugin-promise: ^6.0.0 dependencies: eslint: 8.44.0 - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.62.0)(eslint@8.44.0) + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.61.0)(eslint@8.44.0) eslint-plugin-n: 15.6.1(eslint@8.44.0) eslint-plugin-promise: 6.1.1(eslint@8.44.0) dev: true @@ -23301,8 +23649,8 @@ packages: resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} dependencies: debug: 3.2.7 - is-core-module: 2.13.0 - resolve: 1.22.4 + is-core-module: 2.11.0 + resolve: 1.22.2 transitivePeerDependencies: - supports-color dev: true @@ -23386,36 +23734,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.46.0): - resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true - dependencies: - '@typescript-eslint/parser': 5.61.0(eslint@8.46.0)(typescript@5.1.6) - debug: 3.2.7 - eslint: 8.46.0 - eslint-import-resolver-node: 0.3.7 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0): + /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0): resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -23436,7 +23755,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.44.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.1.6) debug: 3.2.7 eslint: 8.44.0 eslint-import-resolver-node: 0.3.7 @@ -23450,11 +23769,11 @@ packages: peerDependencies: eslint: '>=7.0.0' dependencies: - '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/types': 5.61.0 astro-eslint-parser: 0.9.5 eslint: 8.44.0 eslint-utils: 3.0.0(eslint@8.44.0) - postcss: 8.4.27 + postcss: 8.4.24 postcss-selector-parser: 6.0.11 sourcemap-codec: 1.4.8 transitivePeerDependencies: @@ -23483,14 +23802,14 @@ packages: ignore: 5.2.4 dev: true - /eslint-plugin-eslint-comments@3.2.0(eslint@8.46.0): + /eslint-plugin-eslint-comments@3.2.0(eslint@8.44.0): resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} engines: {node: '>=6.5.0'} peerDependencies: eslint: '>=4.19.1' dependencies: escape-string-regexp: 1.0.5 - eslint: 8.46.0 + eslint: 8.44.0 ignore: 5.2.4 dev: true @@ -23542,7 +23861,7 @@ packages: - supports-color dev: true - /eslint-plugin-functional@3.7.2(eslint@8.46.0)(typescript@5.1.6): + /eslint-plugin-functional@3.7.2(eslint@8.44.0)(typescript@5.1.6): resolution: {integrity: sha512-BuWPOeE0nuXYlZjObYOHnYf7G3iG+sysxw84I579MsrH+hy5XdXb2sdabmXQ5z7eFGCg2/DWNbZ/yz5GAgtcUg==} engines: {node: '>=10.18.0'} peerDependencies: @@ -23555,11 +23874,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 4.33.0(eslint@8.46.0)(typescript@5.1.6) + '@typescript-eslint/experimental-utils': 4.33.0(eslint@8.44.0)(typescript@5.1.6) array.prototype.flatmap: 1.3.1 deepmerge: 4.3.1 escape-string-regexp: 4.0.0 - eslint: 8.46.0 + eslint: 8.44.0 object.fromentries: 2.0.6 typescript: 5.1.6 transitivePeerDependencies: @@ -23590,8 +23909,8 @@ packages: is-glob: 4.0.3 minimatch: 3.1.2 object.values: 1.1.6 - resolve: 1.22.1 - semver: 6.3.0 + resolve: 1.22.2 + semver: 6.3.1 tsconfig-paths: 3.14.2 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -23623,41 +23942,8 @@ packages: is-glob: 4.0.3 minimatch: 3.1.2 object.values: 1.1.6 - resolve: 1.22.1 - semver: 6.3.0 - tsconfig-paths: 3.14.2 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - dev: true - - /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.61.0)(eslint@8.46.0): - resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - dependencies: - '@typescript-eslint/parser': 5.61.0(eslint@8.46.0)(typescript@5.1.6) - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - array.prototype.flatmap: 1.3.1 - debug: 3.2.7 - doctrine: 2.1.0 - eslint: 8.46.0 - eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.46.0) - has: 1.0.3 - is-core-module: 2.11.0 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.values: 1.1.6 - resolve: 1.22.1 - semver: 6.3.0 + resolve: 1.22.2 + semver: 6.3.1 tsconfig-paths: 3.14.2 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -23665,7 +23951,7 @@ packages: - supports-color dev: true - /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.62.0)(eslint@8.44.0): + /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.61.0)(eslint@8.44.0): resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} engines: {node: '>=4'} peerDependencies: @@ -23675,7 +23961,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.44.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.1.6) array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 @@ -23683,14 +23969,14 @@ packages: doctrine: 2.1.0 eslint: 8.44.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0) + eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0) has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 minimatch: 3.1.2 object.values: 1.1.6 - resolve: 1.22.1 - semver: 6.3.0 + resolve: 1.22.2 + semver: 6.3.1 tsconfig-paths: 3.14.2 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -23709,10 +23995,10 @@ packages: eslint-plugin-es: 4.1.0(eslint@8.44.0) eslint-utils: 3.0.0(eslint@8.44.0) ignore: 5.2.4 - is-core-module: 2.13.0 + is-core-module: 2.11.0 minimatch: 3.1.2 - resolve: 1.22.4 - semver: 7.5.4 + resolve: 1.22.2 + semver: 7.5.3 dev: true /eslint-plugin-promise@6.1.1(eslint@8.44.0): @@ -23742,13 +24028,13 @@ packages: eslint: 8.38.0 dev: true - /eslint-plugin-react-hooks@4.6.0(eslint@8.46.0): + /eslint-plugin-react-hooks@4.6.0(eslint@8.44.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.46.0 + eslint: 8.44.0 dev: true /eslint-plugin-react-refresh@0.3.4(eslint@8.38.0): @@ -23759,12 +24045,12 @@ packages: eslint: 8.38.0 dev: true - /eslint-plugin-react-refresh@0.4.1(eslint@8.46.0): + /eslint-plugin-react-refresh@0.4.1(eslint@8.44.0): resolution: {integrity: sha512-QgrvtRJkmV+m4w953LS146+6RwEe5waouubFVNLBfOjXJf6MLczjymO8fOcKj9jMS8aKkTCMJqiPu2WEeFI99A==} peerDependencies: eslint: '>=7' dependencies: - eslint: 8.46.0 + eslint: 8.44.0 dev: true /eslint-plugin-react@7.32.2(eslint@8.22.0): @@ -23798,7 +24084,7 @@ packages: eslint: '>=6' dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.56.0(eslint@8.22.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.61.0(eslint@8.22.0)(typescript@4.9.5) eslint: 8.22.0 requireindex: 1.2.0 ts-dedent: 2.2.0 @@ -23807,15 +24093,15 @@ packages: - typescript dev: true - /eslint-plugin-storybook@0.6.13(eslint@8.46.0)(typescript@4.9.5): - resolution: {integrity: sha512-smd+CS0WH1jBqUEJ3znGS7DU4ayBE9z6lkQAK2yrSUv1+rq8BT/tiI5C/rKE7rmiqiAfojtNYZRhzo5HrulccQ==} + /eslint-plugin-storybook@0.6.11(eslint@8.44.0)(typescript@4.9.5): + resolution: {integrity: sha512-lIVmCqQgA0bhcuS1yWYBFrnPHBKPEQI+LHPDtlN81UE1/17onCqgwUW7Nyt7gS2OHjCAiOR4npjTGEoe0hssKw==} engines: {node: 12.x || 14.x || >= 16} peerDependencies: eslint: '>=6' dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.59.0(eslint@8.46.0)(typescript@4.9.5) - eslint: 8.46.0 + '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@4.9.5) + eslint: 8.44.0 requireindex: 1.2.0 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -23823,15 +24109,15 @@ packages: - typescript dev: true - /eslint-plugin-storybook@0.6.13(eslint@8.46.0)(typescript@5.1.6): + /eslint-plugin-storybook@0.6.13(eslint@8.44.0)(typescript@5.1.6): resolution: {integrity: sha512-smd+CS0WH1jBqUEJ3znGS7DU4ayBE9z6lkQAK2yrSUv1+rq8BT/tiI5C/rKE7rmiqiAfojtNYZRhzo5HrulccQ==} engines: {node: 12.x || 14.x || >= 16} peerDependencies: eslint: '>=6' dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.59.0(eslint@8.46.0)(typescript@5.1.6) - eslint: 8.46.0 + '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6) + eslint: 8.44.0 requireindex: 1.2.0 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -23855,7 +24141,7 @@ packages: peerDependencies: tailwindcss: ^3.2.2 dependencies: - fast-glob: 3.3.1 + fast-glob: 3.3.0 postcss: 8.4.24 tailwindcss: 3.2.7(postcss@8.4.21)(ts-node@10.9.1) dev: false @@ -23890,22 +24176,7 @@ packages: eslint-rule-composer: 0.3.0 dev: true - /eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint@8.46.0): - resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/eslint-plugin': ^5.0.0 - eslint: ^8.0.0 - peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': - optional: true - dependencies: - '@typescript-eslint/eslint-plugin': 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.46.0)(typescript@5.1.6) - eslint: 8.46.0 - eslint-rule-composer: 0.3.0 - dev: true - - /eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.44.0): + /eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint@8.44.0): resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -23915,7 +24186,7 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.44.0)(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6) eslint: 8.44.0 eslint-rule-composer: 0.3.0 dev: true @@ -23940,8 +24211,8 @@ packages: esrecurse: 4.3.0 estraverse: 5.3.0 - /eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + /eslint-scope@7.2.0: + resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: esrecurse: 4.3.0 @@ -23984,16 +24255,6 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /eslint-utils@3.0.0(eslint@8.46.0): - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - dependencies: - eslint: 8.46.0 - eslint-visitor-keys: 2.1.0 - dev: true - /eslint-visitor-keys@1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} engines: {node: '>=4'} @@ -24010,11 +24271,6 @@ packages: resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /eslint-visitor-keys@3.4.2: - resolution: {integrity: sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - /eslint@8.22.0: resolution: {integrity: sha512-ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -24120,7 +24376,7 @@ packages: '@eslint-community/regexpp': 4.4.1 '@eslint/eslintrc': 2.0.3 '@eslint/js': 8.38.0 - '@humanwhocodes/config-array': 0.11.8 + '@humanwhocodes/config-array': 0.11.10 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 ajv: 6.12.6 @@ -24129,7 +24385,7 @@ packages: debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 - eslint-scope: 7.1.1 + eslint-scope: 7.2.0 eslint-visitor-keys: 3.4.1 espree: 9.5.2 esquery: 1.5.0 @@ -24166,8 +24422,8 @@ packages: hasBin: true dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0) - '@eslint-community/regexpp': 4.6.2 - '@eslint/eslintrc': 2.1.1 + '@eslint-community/regexpp': 4.4.1 + '@eslint/eslintrc': 2.1.0 '@eslint/js': 8.44.0 '@humanwhocodes/config-array': 0.11.10 '@humanwhocodes/module-importer': 1.0.1 @@ -24178,9 +24434,9 @@ packages: debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.2 - espree: 9.6.1 + eslint-scope: 7.2.0 + eslint-visitor-keys: 3.4.1 + espree: 9.6.0 esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 @@ -24208,52 +24464,6 @@ packages: - supports-color dev: true - /eslint@8.46.0: - resolution: {integrity: sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) - '@eslint-community/regexpp': 4.6.2 - '@eslint/eslintrc': 2.1.1 - '@eslint/js': 8.46.0 - '@humanwhocodes/config-array': 0.11.10 - '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@8.1.1) - doctrine: 3.0.0 - escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.2 - espree: 9.6.1 - esquery: 1.5.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - find-up: 5.0.0 - glob-parent: 6.0.2 - globals: 13.20.0 - graphemer: 1.4.0 - ignore: 5.2.4 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.3 - strip-ansi: 6.0.1 - text-table: 0.2.0 - transitivePeerDependencies: - - supports-color - dev: true - /espree@9.5.0: resolution: {integrity: sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -24269,15 +24479,15 @@ packages: acorn: 8.9.0 acorn-jsx: 5.3.2(acorn@8.9.0) eslint-visitor-keys: 3.4.1 + dev: true - /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + /espree@9.6.0: + resolution: {integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.9.0 acorn-jsx: 5.3.2(acorn@8.9.0) - eslint-visitor-keys: 3.4.2 - dev: true + eslint-visitor-keys: 3.4.1 /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} @@ -24310,7 +24520,7 @@ packages: engines: {node: '>=8.3.0'} dependencies: '@babel/traverse': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 c8: 7.13.0 transitivePeerDependencies: - supports-color @@ -24629,6 +24839,7 @@ packages: glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.5 + dev: true /fast-glob@3.2.7: resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} @@ -24650,17 +24861,6 @@ packages: glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.5 - dev: true - - /fast-glob@3.3.1: - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} - engines: {node: '>=8.6.0'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 /fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} @@ -24989,7 +25189,7 @@ packages: minimatch: 3.1.2 node-abort-controller: 3.1.1 schema-utils: 3.1.1 - semver: 7.5.4 + semver: 7.5.3 tapable: 2.2.1 typescript: 4.9.5 webpack: 5.76.2 @@ -25209,6 +25409,7 @@ packages: /get-nonce@1.0.1: resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} engines: {node: '>=6'} + dev: false /get-npm-tarball-url@2.0.3: resolution: {integrity: sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==} @@ -25271,7 +25472,7 @@ packages: https-proxy-agent: 5.0.1 mri: 1.2.0 node-fetch-native: 1.1.0 - pathe: 1.1.0 + pathe: 1.1.1 tar: 6.1.13 transitivePeerDependencies: - supports-color @@ -25332,15 +25533,15 @@ packages: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} dev: true - /glob@10.3.3: - resolution: {integrity: sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==} + /glob@10.3.4: + resolution: {integrity: sha512-6LFElP3A+i/Q8XQKEvZjkEWEOTgAIALR9AO2rwT8bgPhDd1anmqDJDZ6lLddI4ehxxxR1S5RIqKe1uapMQfYaQ==} engines: {node: '>=16 || 14 >=14.17'} hasBin: true dependencies: foreground-child: 3.1.1 - jackspeak: 2.2.2 + jackspeak: 2.3.3 minimatch: 9.0.3 - minipass: 7.0.2 + minipass: 7.0.3 path-scurry: 1.10.1 dev: true @@ -25456,7 +25657,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.1 + fast-glob: 3.3.0 ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 @@ -25466,7 +25667,7 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: dir-glob: 3.0.1 - fast-glob: 3.3.1 + fast-glob: 3.3.0 ignore: 5.2.4 merge2: 1.4.1 slash: 4.0.0 @@ -25586,12 +25787,6 @@ packages: engines: {node: '>=8'} dev: true - /has-package-exports@1.3.0: - resolution: {integrity: sha512-e9OeXPQnmPhYoJ63lXC4wWe34TxEGZDZ3OQX9XRqp2VwsfLl3bQBy7VehLnd34g3ef8CmYlBLGqEMKXuz8YazQ==} - dependencies: - '@ljharb/has-package-exports-patterns': 0.0.2 - dev: false - /has-property-descriptors@1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: @@ -26217,11 +26412,6 @@ packages: dependencies: has: 1.0.3 - /is-core-module@2.13.0: - resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} - dependencies: - has: 1.0.3 - /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} @@ -26574,7 +26764,7 @@ packages: '@babel/parser': 7.22.5 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -26615,8 +26805,8 @@ packages: resolution: {integrity: sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==} engines: {node: '>=6'} - /jackspeak@2.2.2: - resolution: {integrity: sha512-mgNtVv4vUuaKA97yxUHoA3+FkuhtxkjdXEWOyB/N76fjy0FjezEt34oy3epBtvCvS+7DyKwqCFWx/oJLV5+kCg==} + /jackspeak@2.3.3: + resolution: {integrity: sha512-R2bUw+kVZFS/h1AZqBKrSgDmdmjApzgY0AlCPumopFiAlbUxE2gf+SCuBzQ0cP5hHmUmFYF5yw55T97Th5Kstg==} engines: {node: '>=14'} dependencies: '@isaacs/cliui': 8.0.2 @@ -27261,7 +27451,7 @@ packages: jest-pnp-resolver: 1.2.3(jest-resolve@27.5.1) jest-util: 27.5.1 jest-validate: 27.5.1 - resolve: 1.22.4 + resolve: 1.22.2 resolve.exports: 1.1.1 slash: 3.0.0 dev: true @@ -27276,7 +27466,7 @@ packages: jest-pnp-resolver: 1.2.3(jest-resolve@29.5.0) jest-util: 29.5.0 jest-validate: 29.5.0 - resolve: 1.22.4 + resolve: 1.22.2 resolve.exports: 2.0.2 slash: 3.0.0 dev: true @@ -27418,7 +27608,7 @@ packages: '@babel/generator': 7.22.5 '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.5) '@babel/traverse': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.18.3 @@ -27435,7 +27625,7 @@ packages: jest-util: 27.5.1 natural-compare: 1.4.0 pretty-format: 27.5.1 - semver: 7.5.4 + semver: 7.5.3 transitivePeerDependencies: - supports-color dev: true @@ -27449,7 +27639,7 @@ packages: '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.5) '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.5) '@babel/traverse': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.5 '@jest/expect-utils': 29.5.0 '@jest/transform': 29.5.0 '@jest/types': 29.5.0 @@ -27466,7 +27656,7 @@ packages: jest-util: 29.5.0 natural-compare: 1.4.0 pretty-format: 29.5.0 - semver: 7.5.4 + semver: 7.5.3 transitivePeerDependencies: - supports-color dev: true @@ -27693,8 +27883,8 @@ packages: '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.5) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.5) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.5) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.5) - '@babel/preset-env': 7.20.2(@babel/core@7.22.5) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.5) + '@babel/preset-env': 7.20.2(@babel/core@7.21.3) '@babel/preset-flow': 7.18.6(@babel/core@7.22.5) '@babel/preset-typescript': 7.16.7(@babel/core@7.22.5) '@babel/register': 7.21.0(@babel/core@7.22.5) @@ -27712,7 +27902,7 @@ packages: - supports-color dev: true - /jscodeshift@0.14.0(@babel/preset-env@7.22.10): + /jscodeshift@0.14.0(@babel/preset-env@7.21.5): resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} hasBin: true peerDependencies: @@ -27723,8 +27913,38 @@ packages: '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.5) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.5) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.5) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.5) - '@babel/preset-env': 7.22.10(@babel/core@7.22.5) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.5) + '@babel/preset-env': 7.21.5(@babel/core@7.22.5) + '@babel/preset-flow': 7.18.6(@babel/core@7.22.5) + '@babel/preset-typescript': 7.16.7(@babel/core@7.22.5) + '@babel/register': 7.21.0(@babel/core@7.22.5) + babel-core: 7.0.0-bridge.0(@babel/core@7.22.5) + chalk: 4.1.2 + flow-parser: 0.202.1 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.21.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + dev: true + + /jscodeshift@0.14.0(@babel/preset-env@7.22.14): + resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + dependencies: + '@babel/core': 7.22.5 + '@babel/parser': 7.22.5 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.5) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.5) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.5) + '@babel/preset-env': 7.22.14(@babel/core@7.22.5) '@babel/preset-flow': 7.18.6(@babel/core@7.22.5) '@babel/preset-typescript': 7.16.7(@babel/core@7.22.5) '@babel/register': 7.21.0(@babel/core@7.22.5) @@ -27887,7 +28107,7 @@ packages: hasBin: true dependencies: '@apidevtools/json-schema-ref-parser': 9.1.2 - '@types/json-schema': 7.0.11 + '@types/json-schema': 7.0.12 prettier: 2.8.8 dev: false @@ -27954,7 +28174,7 @@ packages: jws: 3.2.2 lodash: 4.17.21 ms: 2.1.3 - semver: 7.5.4 + semver: 7.5.3 dev: false /jsx-ast-utils@3.3.3: @@ -28031,19 +28251,19 @@ packages: resolution: {integrity: sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==} dev: false - /less-loader@11.1.3(less@4.2.0)(webpack@5.76.2): + /less-loader@11.1.3(less@4.1.3)(webpack@5.76.2): resolution: {integrity: sha512-A5b7O8dH9xpxvkosNrP0dFp2i/dISOJa9WwGF3WJflfqIERE2ybxh1BFDj5CovC2+jCE4M354mk90hN6ziXlVw==} engines: {node: '>= 14.15.0'} peerDependencies: less: ^3.5.0 || ^4.0.0 webpack: ^5.0.0 dependencies: - less: 4.2.0 - webpack: 5.76.2(esbuild@0.18.20) + less: 4.1.3 + webpack: 5.76.2(esbuild@0.17.19) dev: true - /less@4.2.0: - resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==} + /less@4.1.3: + resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} engines: {node: '>=6'} hasBin: true dependencies: @@ -28356,8 +28576,8 @@ packages: tslib: 2.5.2 dev: true - /lru-cache@10.0.0: - resolution: {integrity: sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==} + /lru-cache@10.0.1: + resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==} engines: {node: 14 || >=16.14} dev: true @@ -28439,7 +28659,7 @@ packages: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} engines: {node: '>=12'} dependencies: - '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/sourcemap-codec': 1.4.15 /magic-string@0.29.0: resolution: {integrity: sha512-WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q==} @@ -28448,8 +28668,8 @@ packages: '@jridgewell/sourcemap-codec': 1.4.14 dev: true - /magic-string@0.30.2: - resolution: {integrity: sha512-lNZdu7pewtq/ZvWUp9Wpf/x7WzMTsR26TWV03BRZrXFsv+BI6dy8RAiKgm1uM/kyR0rCfUcqvOlXKG66KhIGug==} + /magic-string@0.30.1: + resolution: {integrity: sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==} engines: {node: '>=12'} dependencies: '@jridgewell/sourcemap-codec': 1.4.15 @@ -28466,7 +28686,7 @@ packages: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} dependencies: - semver: 6.3.0 + semver: 6.3.1 /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} @@ -29275,8 +29495,8 @@ packages: resolution: {integrity: sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==} engines: {node: '>=8'} - /minipass@7.0.2: - resolution: {integrity: sha512-eL79dXrE1q9dBbDCLg7xfn/vl7MS4F1gvJAgjJrQli/jbQWdUttuVawphqpffoIYfRdq78LHx6GP4bU/EQ2ATA==} + /minipass@7.0.3: + resolution: {integrity: sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg==} engines: {node: '>=16 || 14 >=14.17'} dev: true @@ -29311,7 +29531,7 @@ packages: resolution: {integrity: sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==} dependencies: acorn: 8.9.0 - pathe: 1.1.0 + pathe: 1.1.1 pkg-types: 1.0.2 ufo: 1.1.1 dev: true @@ -29322,7 +29542,7 @@ packages: acorn: 8.9.0 pathe: 1.1.1 pkg-types: 1.0.3 - ufo: 1.2.0 + ufo: 1.1.2 dev: true /moment@2.29.4: @@ -29640,12 +29860,8 @@ packages: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} dev: true - /node-releases@2.0.10: - resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} - /node-releases@2.0.13: resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} - dev: true /nopt@5.0.0: resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} @@ -29659,7 +29875,7 @@ packages: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.4 + resolve: 1.22.2 semver: 5.7.1 validate-npm-package-license: 3.0.4 dev: true @@ -29669,8 +29885,8 @@ packages: engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.13.0 - semver: 7.5.4 + is-core-module: 2.11.0 + semver: 7.5.3 validate-npm-package-license: 3.0.4 dev: true @@ -30208,8 +30424,8 @@ packages: resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} engines: {node: '>=16 || 14 >=14.17'} dependencies: - lru-cache: 10.0.0 - minipass: 7.0.2 + lru-cache: 10.0.1 + minipass: 7.0.3 dev: true /path-scurry@1.6.3: @@ -30324,8 +30540,8 @@ packages: resolution: {integrity: sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==} dependencies: jsonc-parser: 3.2.0 - mlly: 1.2.0 - pathe: 1.1.0 + mlly: 1.4.0 + pathe: 1.1.1 dev: true /pkg-types@1.0.3: @@ -30363,7 +30579,7 @@ packages: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 dev: true /postcss-import@14.1.0(postcss@8.4.21): @@ -30375,7 +30591,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 read-cache: 1.0.0 - resolve: 1.22.4 + resolve: 1.22.2 /postcss-import@14.1.0(postcss@8.4.24): resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} @@ -30386,7 +30602,7 @@ packages: postcss: 8.4.24 postcss-value-parser: 4.2.0 read-cache: 1.0.0 - resolve: 1.22.1 + resolve: 1.22.2 /postcss-import@15.1.0(postcss@8.4.27): resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} @@ -30397,7 +30613,7 @@ packages: postcss: 8.4.27 postcss-value-parser: 4.2.0 read-cache: 1.0.0 - resolve: 1.22.4 + resolve: 1.22.2 /postcss-js@4.0.1(postcss@8.4.21): resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} @@ -30505,8 +30721,8 @@ packages: cosmiconfig: 8.2.0 jiti: 1.19.1 postcss: 8.4.27 - semver: 7.5.4 - webpack: 5.76.2(esbuild@0.18.20) + semver: 7.5.3 + webpack: 5.76.2(esbuild@0.17.19) dev: true /postcss-modules-extract-imports@3.0.0(postcss@8.4.27): @@ -30641,7 +30857,7 @@ packages: resolution: {integrity: sha512-dPzop0gKZyVGpTDQmfy+e7FKXC9JT3mlpfYA2diOVz+Ui+QR1U4G/s+OesKl2Hib2JJOtAYJs/l+ovgT0ljlFA==} engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'} dependencies: - '@astrojs/compiler': 1.8.1 + '@astrojs/compiler': 1.5.1 prettier: 2.8.8 sass-formatter: 0.7.6 dev: true @@ -30650,7 +30866,7 @@ packages: resolution: {integrity: sha512-pYZXSbdq0eElvzoIMArzv1SBn1NUXzopjlcnt6Ql8VW32PjC12NovwBjXJ6rh8qQLi7vF8jNqAbraKW03UPfag==} engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'} dependencies: - '@astrojs/compiler': 1.8.1 + '@astrojs/compiler': 1.5.1 prettier: 2.8.8 sass-formatter: 0.7.6 synckit: 0.8.5 @@ -31060,7 +31276,7 @@ packages: estree-to-babel: 3.2.1 neo-async: 2.6.2 node-dir: 0.1.17 - resolve: 1.22.4 + resolve: 1.22.2 strip-indent: 3.0.0 transitivePeerDependencies: - supports-color @@ -31196,7 +31412,7 @@ packages: - encoding dev: false - /react-json-view@1.21.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /react-json-view@1.21.3(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==} peerDependencies: react: ^17.0.0 || ^16.3.0 || ^15.5.4 @@ -31207,7 +31423,7 @@ packages: react-base16-styling: 0.6.0 react-dom: 18.2.0(react@18.2.0) react-lifecycles-compat: 3.0.4 - react-textarea-autosize: 8.5.2(@types/react@18.2.14)(react@18.2.0) + react-textarea-autosize: 8.5.2(@types/react@18.2.15)(react@18.2.0) transitivePeerDependencies: - '@types/react' - encoding @@ -31265,6 +31481,7 @@ packages: react: 18.2.0 react-style-singleton: 2.2.1(@types/react@18.0.29)(react@18.2.0) tslib: 2.5.2 + dev: false /react-remove-scroll-bar@2.3.4(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} @@ -31282,7 +31499,7 @@ packages: tslib: 2.5.2 dev: false - /react-remove-scroll-bar@2.3.4(@types/react@18.2.14)(react@18.2.0): + /react-remove-scroll-bar@2.3.4(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: @@ -31292,10 +31509,11 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.14)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.15)(react@18.2.0) tslib: 2.5.2 + dev: false /react-remove-scroll@2.5.4(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==} @@ -31316,7 +31534,7 @@ packages: use-sidecar: 1.1.2(@types/react@18.0.37)(react@18.2.0) dev: false - /react-remove-scroll@2.5.4(@types/react@18.2.14)(react@18.2.0): + /react-remove-scroll@2.5.4(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==} engines: {node: '>=10'} peerDependencies: @@ -31326,13 +31544,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.14)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.14)(react@18.2.0) + react-remove-scroll-bar: 2.3.4(@types/react@18.2.15)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.15)(react@18.2.0) tslib: 2.5.2 - use-callback-ref: 1.3.0(@types/react@18.2.14)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.14)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.2.15)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.2.15)(react@18.2.0) dev: false /react-remove-scroll@2.5.5(@types/react@18.0.29)(react@18.2.0): @@ -31352,6 +31570,7 @@ packages: tslib: 2.5.2 use-callback-ref: 1.3.0(@types/react@18.0.29)(react@18.2.0) use-sidecar: 1.1.2(@types/react@18.0.29)(react@18.2.0) + dev: false /react-remove-scroll@2.5.5(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} @@ -31372,7 +31591,7 @@ packages: use-sidecar: 1.1.2(@types/react@18.0.37)(react@18.2.0) dev: false - /react-remove-scroll@2.5.5(@types/react@18.2.14)(react@18.2.0): + /react-remove-scroll@2.5.5(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: @@ -31382,13 +31601,14 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.14)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.14)(react@18.2.0) + react-remove-scroll-bar: 2.3.4(@types/react@18.2.15)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.15)(react@18.2.0) tslib: 2.5.2 - use-callback-ref: 1.3.0(@types/react@18.2.14)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.14)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.2.15)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.2.15)(react@18.2.0) + dev: false /react-resize-detector@7.1.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-zXnPJ2m8+6oq9Nn8zsep/orts9vQv3elrpA+R8XTcW7DVVUJ9vwDwMXaBtykAYjMnkCIaOoK9vObyR7ZgFNlOw==} @@ -31471,6 +31691,7 @@ packages: invariant: 2.2.4 react: 18.2.0 tslib: 2.5.2 + dev: false /react-style-singleton@2.2.1(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} @@ -31489,7 +31710,7 @@ packages: tslib: 2.5.2 dev: false - /react-style-singleton@2.2.1(@types/react@18.2.14)(react@18.2.0): + /react-style-singleton@2.2.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -31499,11 +31720,12 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.14 + '@types/react': 18.2.15 get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 tslib: 2.5.2 + dev: false /react-textarea-autosize@8.5.2(@types/react@18.0.29)(react@18.2.0): resolution: {integrity: sha512-uOkyjkEl0ByEK21eCJMHDGBAAd/BoFQBawYK5XItjAmCTeSbjxghd8qnt7nzsLYzidjnoObu6M26xts0YGKsGg==} @@ -31511,7 +31733,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 react: 18.2.0 use-composed-ref: 1.3.0(react@18.2.0) use-latest: 1.2.1(@types/react@18.0.29)(react@18.2.0) @@ -31525,7 +31747,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 react: 18.2.0 use-composed-ref: 1.3.0(react@18.2.0) use-latest: 1.2.1(@types/react@18.0.37)(react@18.2.0) @@ -31533,16 +31755,16 @@ packages: - '@types/react' dev: false - /react-textarea-autosize@8.5.2(@types/react@18.2.14)(react@18.2.0): + /react-textarea-autosize@8.5.2(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-uOkyjkEl0ByEK21eCJMHDGBAAd/BoFQBawYK5XItjAmCTeSbjxghd8qnt7nzsLYzidjnoObu6M26xts0YGKsGg==} engines: {node: '>=10'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.21.0 react: 18.2.0 use-composed-ref: 1.3.0(react@18.2.0) - use-latest: 1.2.1(@types/react@18.2.14)(react@18.2.0) + use-latest: 1.2.1(@types/react@18.2.15)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false @@ -31567,7 +31789,7 @@ packages: react: '>=16.6.0' react-dom: '>=16.6.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -31710,7 +31932,7 @@ packages: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} engines: {node: '>= 0.10'} dependencies: - resolve: 1.22.4 + resolve: 1.22.2 dev: true /redent@3.0.0: @@ -31751,13 +31973,13 @@ packages: /regenerator-transform@0.15.1: resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 dev: true /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 dev: true /regex-parser@2.2.11: @@ -32023,7 +32245,7 @@ packages: /resolve@1.19.0: resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} dependencies: - is-core-module: 2.13.0 + is-core-module: 2.11.0 path-parse: 1.0.7 dev: true @@ -32035,11 +32257,11 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve@1.22.4: - resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==} + /resolve@1.22.2: + resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} hasBin: true dependencies: - is-core-module: 2.13.0 + is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 @@ -32047,7 +32269,7 @@ packages: resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} hasBin: true dependencies: - is-core-module: 2.13.0 + is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -32256,13 +32478,6 @@ packages: optionalDependencies: fsevents: 2.3.2 - /rollup@3.20.2: - resolution: {integrity: sha512-3zwkBQl7Ai7MFYQE0y1MeQ15+9jsi7XxfrqwTb/9EK8D9C9+//EBR4M+CuA1KODRaNbFez/lWxA5vhEGZp4MUg==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.2 - /rollup@3.25.1: resolution: {integrity: sha512-tywOR+rwIt5m2ZAWSe5AIJcTat8vGlnPFAv15ycCrw33t6iFsXZ6mzHVFh2psSjxQPmI+xgzMZZizUAukBI4aQ==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} @@ -32270,8 +32485,8 @@ packages: optionalDependencies: fsevents: 2.3.2 - /rollup@3.27.2: - resolution: {integrity: sha512-YGwmHf7h2oUHkVBT248x0yt6vZkYQ3/rvE5iQuVBh3WO8GcJ6BNeOkpoX1yMHIiBm18EMLjBPIoUDkhgnyxGOQ==} + /rollup@3.26.2: + resolution: {integrity: sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -32366,7 +32581,7 @@ packages: optional: true dependencies: neo-async: 2.6.2 - webpack: 5.76.2(esbuild@0.18.20) + webpack: 5.76.2(esbuild@0.17.19) dev: true /sass@1.60.0: @@ -32407,7 +32622,7 @@ packages: resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==} engines: {node: '>= 10.13.0'} dependencies: - '@types/json-schema': 7.0.11 + '@types/json-schema': 7.0.12 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) dev: true @@ -32435,11 +32650,11 @@ packages: /semver@6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true + dev: true /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - dev: true /semver@7.0.0: resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} @@ -32462,8 +32677,8 @@ packages: lru-cache: 6.0.0 dev: true - /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + /semver@7.5.3: + resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} engines: {node: '>=10'} hasBin: true dependencies: @@ -32719,6 +32934,7 @@ packages: /slash@4.0.0: resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} engines: {node: '>=12'} + dev: true /slice-ansi@3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} @@ -32938,7 +33154,7 @@ packages: resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} dev: true - /storybook-addon-react-router-v6@1.0.2(@storybook/blocks@7.0.0-rc.10)(@storybook/components@7.2.1)(@storybook/core-events@7.2.1)(@storybook/manager-api@7.2.1)(@storybook/preview-api@7.2.1)(@storybook/theming@7.2.1)(@storybook/types@7.2.1)(react-dom@18.2.0)(react-router-dom@6.11.2)(react-router@6.11.2)(react@18.2.0): + /storybook-addon-react-router-v6@1.0.2(@storybook/blocks@7.0.0-rc.10)(@storybook/components@7.1.0)(@storybook/core-events@7.1.0)(@storybook/manager-api@7.1.0)(@storybook/preview-api@7.1.0)(@storybook/theming@7.1.0)(@storybook/types@7.1.0)(react-dom@18.2.0)(react-router-dom@6.11.2)(react-router@6.11.2)(react@18.2.0): resolution: {integrity: sha512-38W+9D2sIrYAi+oRSbsLhR/umNoLVw2DWF84Jp4f/ZoB8Cg0Qtbvwk043oHqzNOpZrfgj0FaV006oaJBVpE8Kw==} peerDependencies: '@storybook/blocks': ^7.0.0 @@ -32959,12 +33175,12 @@ packages: optional: true dependencies: '@storybook/blocks': 7.0.0-rc.10(react-dom@18.2.0)(react@18.2.0) - '@storybook/components': 7.2.1(@types/react-dom@18.0.11)(@types/react@18.0.29)(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-events': 7.2.1 - '@storybook/manager-api': 7.2.1(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.2.1 - '@storybook/theming': 7.2.1(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.2.1 + '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.1.0 + '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.1.0 + '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.1.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-inspector: 6.0.1(react@18.2.0) @@ -32984,6 +33200,18 @@ packages: - utf-8-validate dev: true + /storybook@7.0.26: + resolution: {integrity: sha512-N6+/QBIahTnOJ3mQFNh+PIimjw+yUUoBlnMq8kE1Rg6QFi8ErEK8xte6uppiTh+7ShpqeLhp9ipuDV6DwJ9Aqg==} + hasBin: true + dependencies: + '@storybook/cli': 7.0.26 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: true + /storybook@7.1.0: resolution: {integrity: sha512-3fnLTeHzK+6cbo3sfanAvVFpi4pauvEaODbHo8I8ui/RNxENQSYHxgCK6ULWets9Zay0cXxCwe3n3G/zeVoCNg==} hasBin: true @@ -33195,7 +33423,7 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.76.2(esbuild@0.18.20) + webpack: 5.76.2(esbuild@0.17.19) dev: true /style-to-object@0.4.1: @@ -33225,8 +33453,8 @@ packages: - utf-8-validate dev: false - /sucrase@3.34.0: - resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} + /sucrase@3.32.0: + resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==} engines: {node: '>=8'} hasBin: true dependencies: @@ -33277,7 +33505,7 @@ packages: mime: 2.6.0 qs: 6.11.2 readable-stream: 3.6.2 - semver: 7.5.4 + semver: 7.5.3 transitivePeerDependencies: - supports-color dev: true @@ -33327,12 +33555,6 @@ packages: dependencies: has-flag: 4.0.0 - /supports-esm@1.0.0: - resolution: {integrity: sha512-96Am8CDqUaC0I2+C/swJ0yEvM8ZnGn4unoers/LSdE4umhX7mELzqyLzx3HnZAluq5PXIsGMKqa7NkqaeHMPcg==} - dependencies: - has-package-exports: 1.3.0 - dev: false - /supports-hyperlinks@2.3.0: resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} engines: {node: '>=8'} @@ -33498,12 +33720,12 @@ packages: tailwindcss: 3.2.7(postcss@8.4.24)(ts-node@10.9.1) dev: false - /tailwindcss-animate@1.0.5(tailwindcss@3.3.3): + /tailwindcss-animate@1.0.5(tailwindcss@3.3.2): resolution: {integrity: sha512-UU3qrOJ4lFQABY+MVADmBm+0KW3xZyhMdRvejwtXqYOL7YjHYxmuREFAZdmVG5LPe5E9CAst846SLC4j5I3dcw==} peerDependencies: tailwindcss: '>=3.0.0 || insiders' dependencies: - tailwindcss: 3.3.3(ts-node@10.9.1) + tailwindcss: 3.3.2(ts-node@10.9.1) dev: true /tailwindcss@3.2.7(postcss@8.4.21)(ts-node@10.9.1): @@ -33519,7 +33741,7 @@ packages: detective: 5.2.1 didyoumean: 1.2.2 dlv: 1.1.3 - fast-glob: 3.3.1 + fast-glob: 3.3.0 glob-parent: 6.0.2 is-glob: 4.0.3 lilconfig: 2.1.0 @@ -33552,7 +33774,7 @@ packages: detective: 5.2.1 didyoumean: 1.2.2 dlv: 1.1.3 - fast-glob: 3.2.12 + fast-glob: 3.3.0 glob-parent: 6.0.2 is-glob: 4.0.3 lilconfig: 2.1.0 @@ -33572,8 +33794,8 @@ packages: transitivePeerDependencies: - ts-node - /tailwindcss@3.3.3(ts-node@10.9.1): - resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==} + /tailwindcss@3.3.2(ts-node@10.9.1): + resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==} engines: {node: '>=14.0.0'} hasBin: true dependencies: @@ -33582,7 +33804,7 @@ packages: chokidar: 3.5.3 didyoumean: 1.2.2 dlv: 1.1.3 - fast-glob: 3.3.1 + fast-glob: 3.3.0 glob-parent: 6.0.2 is-glob: 4.0.3 jiti: 1.19.1 @@ -33597,8 +33819,9 @@ packages: postcss-load-config: 4.0.1(postcss@8.4.27)(ts-node@10.9.1) postcss-nested: 6.0.1(postcss@8.4.27) postcss-selector-parser: 6.0.11 - resolve: 1.22.4 - sucrase: 3.34.0 + postcss-value-parser: 4.2.0 + resolve: 1.22.2 + sucrase: 3.32.0 transitivePeerDependencies: - ts-node @@ -33666,6 +33889,12 @@ packages: memoizerific: 1.11.3 dev: true + /telejson@7.2.0: + resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} + dependencies: + memoizerific: 1.11.3 + dev: true + /temp-dir@2.0.0: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} engines: {node: '>=8'} @@ -33702,7 +33931,7 @@ packages: supports-hyperlinks: 2.3.0 dev: true - /terser-webpack-plugin@5.3.7(esbuild@0.18.20)(webpack@5.76.2): + /terser-webpack-plugin@5.3.7(esbuild@0.17.19)(webpack@5.76.2): resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -33719,12 +33948,12 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.17 - esbuild: 0.18.20 + esbuild: 0.17.19 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.1 terser: 5.16.8 - webpack: 5.76.2(esbuild@0.18.20) + webpack: 5.76.2(esbuild@0.17.19) dev: true /terser-webpack-plugin@5.3.7(webpack@5.76.2): @@ -34283,7 +34512,7 @@ packages: '@types/json5': 0.0.30 '@types/resolve': 1.20.2 json5: 2.2.3 - resolve: 1.22.4 + resolve: 1.22.2 strip-bom: 4.0.0 type-fest: 0.13.1 dev: false @@ -34501,8 +34730,8 @@ packages: /ufo@1.1.1: resolution: {integrity: sha512-MvlCc4GHrmZdAllBc0iUDowff36Q9Ndw/UzqmEKyrfSzokTd9ZCy1i+IIk5hrYKkjoYVQyNbrw7/F8XJ2rEwTg==} - /ufo@1.2.0: - resolution: {integrity: sha512-RsPyTbqORDNDxqAdQPQBpgqhWle1VcTSou/FraClYlHf6TZnQcGslpLcAphNR+sQW4q5lLWLbOsRlh9j24baQg==} + /ufo@1.1.2: + resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==} dev: true /uglify-js@3.17.4: @@ -34708,26 +34937,26 @@ packages: engines: {node: '>=8'} dev: true - /update-browserslist-db@1.0.10(browserslist@4.21.5): - resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} + /update-browserslist-db@1.0.11(browserslist@4.21.10): + resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.5 + browserslist: 4.21.10 escalade: 3.1.1 picocolors: 1.0.0 + dev: true - /update-browserslist-db@1.0.11(browserslist@4.21.10): + /update-browserslist-db@1.0.11(browserslist@4.21.9): resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.10 + browserslist: 4.21.9 escalade: 3.1.1 picocolors: 1.0.0 - dev: true /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -34754,6 +34983,7 @@ packages: '@types/react': 18.0.29 react: 18.2.0 tslib: 2.5.2 + dev: false /use-callback-ref@1.3.0(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} @@ -34770,7 +35000,7 @@ packages: tslib: 2.5.2 dev: false - /use-callback-ref@1.3.0(@types/react@18.2.14)(react@18.2.0): + /use-callback-ref@1.3.0(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: @@ -34780,9 +35010,10 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 tslib: 2.5.2 + dev: false /use-composed-ref@1.3.0(react@18.2.0): resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} @@ -34827,7 +35058,7 @@ packages: react: 18.2.0 dev: false - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.14)(react@18.2.0): + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -34836,7 +35067,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 dev: false @@ -34868,7 +35099,7 @@ packages: use-isomorphic-layout-effect: 1.1.2(@types/react@18.0.37)(react@18.2.0) dev: false - /use-latest@1.2.1(@types/react@18.2.14)(react@18.2.0): + /use-latest@1.2.1(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' @@ -34877,9 +35108,9 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.14 + '@types/react': 18.2.15 react: 18.2.0 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.14)(react@18.2.0) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.15)(react@18.2.0) dev: false /use-query-params@2.2.1(react-dom@18.2.0)(react-router-dom@6.11.2)(react@18.2.0): @@ -34926,6 +35157,7 @@ packages: detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.5.2 + dev: false /use-sidecar@1.1.2(@types/react@18.0.37)(react@18.2.0): resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} @@ -34943,7 +35175,7 @@ packages: tslib: 2.5.2 dev: false - /use-sidecar@1.1.2(@types/react@18.2.14)(react@18.2.0): + /use-sidecar@1.1.2(@types/react@18.2.15)(react@18.2.0): resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -34953,10 +35185,11 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.14 + '@types/react': 18.2.15 detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.5.2 + dev: false /use-sync-external-store@1.2.0(react@18.2.0): resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} @@ -35135,11 +35368,11 @@ packages: cac: 6.7.14 debug: 4.3.4(supports-color@8.1.1) mlly: 1.2.0 - pathe: 1.1.0 + pathe: 1.1.1 picocolors: 1.0.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - '@types/node' - less @@ -35159,9 +35392,9 @@ packages: cac: 6.7.14 debug: 4.3.4(supports-color@8.1.1) mlly: 1.2.0 - pathe: 1.1.0 + pathe: 1.1.1 picocolors: 1.0.0 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - '@types/node' - less @@ -35173,7 +35406,7 @@ packages: - terser dev: true - /vite-node@0.33.0(@types/node@18.15.10)(less@4.2.0): + /vite-node@0.33.0(@types/node@18.15.10)(less@4.1.3): resolution: {integrity: sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==} engines: {node: '>=v14.18.0'} hasBin: true @@ -35183,7 +35416,7 @@ packages: mlly: 1.4.0 pathe: 1.1.1 picocolors: 1.0.0 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - '@types/node' - less @@ -35232,12 +35465,12 @@ packages: chokidar: 3.5.3 commander: 8.3.0 eslint: 8.38.0 - fast-glob: 3.3.1 + fast-glob: 3.3.0 fs-extra: 11.1.1 lodash.debounce: 4.0.8 lodash.pick: 4.4.0 npm-run-path: 4.0.1 - semver: 7.5.4 + semver: 7.5.3 strip-ansi: 6.0.1 tiny-invariant: 1.3.1 typescript: 5.0.2 @@ -35248,7 +35481,7 @@ packages: vscode-uri: 3.0.7 dev: true - /vite-plugin-checker@0.6.1(eslint@8.46.0)(typescript@5.1.6)(vite@4.4.9): + /vite-plugin-checker@0.6.1(eslint@8.44.0)(typescript@5.1.6)(vite@4.4.6): resolution: {integrity: sha512-4fAiu3W/IwRJuJkkUZlWbLunSzsvijDf0eDN6g/MGh6BUK4SMclOTGbLJCPvdAcMOQvVmm8JyJeYLYd4//8CkA==} engines: {node: '>=14.16'} peerDependencies: @@ -35284,17 +35517,17 @@ packages: chalk: 4.1.2 chokidar: 3.5.3 commander: 8.3.0 - eslint: 8.46.0 - fast-glob: 3.3.1 + eslint: 8.44.0 + fast-glob: 3.3.0 fs-extra: 11.1.1 lodash.debounce: 4.0.8 lodash.pick: 4.4.0 npm-run-path: 4.0.1 - semver: 7.5.4 + semver: 7.5.3 strip-ansi: 6.0.1 tiny-invariant: 1.3.1 typescript: 5.1.6 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.8 @@ -35322,7 +35555,7 @@ packages: - supports-color dev: true - /vite-plugin-dts@1.7.3(@types/node@20.4.1)(vite@4.4.9): + /vite-plugin-dts@1.7.3(@types/node@20.4.1)(vite@4.4.6): resolution: {integrity: sha512-u3t45p6fTbzUPMkwYe0ESwuUeiRMlwdPfD3dRyDKUwLe2WmEYcFyVp2o9/ke2EMrM51lQcmNWdV9eLcgjD1/ng==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -35336,7 +35569,7 @@ packages: fs-extra: 10.1.0 kolorist: 1.7.0 ts-morph: 17.0.1 - vite: 4.4.9(@types/node@20.4.1)(less@4.2.0) + vite: 4.4.6(@types/node@20.4.1)(less@4.1.3) transitivePeerDependencies: - '@types/node' - rollup @@ -35355,7 +35588,7 @@ packages: dotenv: 16.0.3 dotenv-expand: 8.0.3 ejs: 3.1.9 - fast-glob: 3.3.1 + fast-glob: 3.3.0 fs-extra: 10.1.0 html-minifier-terser: 6.1.0 node-html-parser: 5.4.2 @@ -35363,7 +35596,7 @@ packages: vite: 4.0.3(@types/node@18.15.10) dev: true - /vite-plugin-mkcert@1.16.0(vite@4.4.9): + /vite-plugin-mkcert@1.16.0(vite@4.4.6): resolution: {integrity: sha512-5r+g8SB9wZzLNUFekGwZo3e0P6QlS6rbxK5p9z/itxNAimsYohgjK/YfVPVxM9EuglP9hjridq0lUejo9v1nVg==} engines: {node: '>=v16.7.0'} peerDependencies: @@ -35373,7 +35606,7 @@ packages: axios: 1.4.0(debug@4.3.4) debug: 4.3.4(supports-color@8.1.1) picocolors: 1.0.0 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - encoding - supports-color @@ -35396,7 +35629,7 @@ packages: - supports-color dev: false - /vite-plugin-terminal@1.1.0(vite@4.4.9): + /vite-plugin-terminal@1.1.0(vite@4.4.6): resolution: {integrity: sha512-W550yBGApBSp67LgqCSSA9u3aMEFFHqTleYMxcVQFf5XCY973bGTSjHW7ZjUsJT3VkiW9mfmc+azhVHvsEMpcg==} engines: {node: '>=14'} peerDependencies: @@ -35407,7 +35640,7 @@ packages: kolorist: 1.7.0 sirv: 2.0.2 ufo: 1.1.1 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - rollup - supports-color @@ -35430,7 +35663,7 @@ packages: - typescript dev: false - /vite-tsconfig-paths@4.0.7(typescript@5.1.6)(vite@4.4.9): + /vite-tsconfig-paths@4.0.7(typescript@5.1.6)(vite@4.4.6): resolution: {integrity: sha512-MwIYaby6kcbQGZqMH+gAK6h0UYQGOkjsuAgw4q6bP/5vWkn8VKvnmLuCQHA2+IzHAJHnE8OFTO4lnJLFMf9+7Q==} peerDependencies: vite: '*' @@ -35441,7 +35674,7 @@ packages: debug: 4.3.4(supports-color@8.1.1) globrex: 0.1.2 tsconfck: 2.1.1(typescript@5.1.6) - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) transitivePeerDependencies: - supports-color - typescript @@ -35474,8 +35707,8 @@ packages: dependencies: '@types/node': 18.15.10 esbuild: 0.15.18 - postcss: 8.4.27 - resolve: 1.22.4 + postcss: 8.4.24 + resolve: 1.22.1 rollup: 2.79.1 optionalDependencies: fsevents: 2.3.2 @@ -35509,7 +35742,7 @@ packages: esbuild: 0.16.17 postcss: 8.4.24 resolve: 1.22.1 - rollup: 3.27.2 + rollup: 3.26.2 optionalDependencies: fsevents: 2.3.2 dev: true @@ -35543,7 +35776,7 @@ packages: esbuild: 0.17.14 postcss: 8.4.24 resolve: 1.22.1 - rollup: 3.27.2 + rollup: 3.26.2 optionalDependencies: fsevents: 2.3.2 dev: true @@ -35577,7 +35810,7 @@ packages: esbuild: 0.17.14 postcss: 8.4.24 resolve: 1.22.1 - rollup: 3.20.2 + rollup: 3.26.2 optionalDependencies: fsevents: 2.3.2 @@ -35613,8 +35846,8 @@ packages: optionalDependencies: fsevents: 2.3.2 - /vite@4.4.9(@types/node@18.15.10)(less@4.2.0): - resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==} + /vite@4.4.6(@types/node@18.15.10)(less@4.1.3): + resolution: {integrity: sha512-EY6Mm8vJ++S3D4tNAckaZfw3JwG3wa794Vt70M6cNJ6NxT87yhq7EC8Rcap3ahyHdo8AhCmV9PTk+vG1HiYn1A==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -35642,15 +35875,15 @@ packages: optional: true dependencies: '@types/node': 18.15.10 - esbuild: 0.18.20 - less: 4.2.0 + esbuild: 0.18.12 + less: 4.1.3 postcss: 8.4.27 - rollup: 3.27.2 + rollup: 3.26.2 optionalDependencies: fsevents: 2.3.2 - /vite@4.4.9(@types/node@20.4.1)(less@4.2.0): - resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==} + /vite@4.4.6(@types/node@20.4.1)(less@4.1.3): + resolution: {integrity: sha512-EY6Mm8vJ++S3D4tNAckaZfw3JwG3wa794Vt70M6cNJ6NxT87yhq7EC8Rcap3ahyHdo8AhCmV9PTk+vG1HiYn1A==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -35678,10 +35911,10 @@ packages: optional: true dependencies: '@types/node': 20.4.1 - esbuild: 0.18.20 - less: 4.2.0 + esbuild: 0.18.12 + less: 4.1.3 postcss: 8.4.27 - rollup: 3.27.2 + rollup: 3.26.2 optionalDependencies: fsevents: 2.3.2 dev: true @@ -35708,7 +35941,7 @@ packages: vite: 4.2.1(@types/node@20.3.2) dev: true - /vitefu@0.2.4(vite@4.4.9): + /vitefu@0.2.4(vite@4.4.6): resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} peerDependencies: vite: ^3.0.0 || ^4.0.0 @@ -35716,7 +35949,7 @@ packages: vite: optional: true dependencies: - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) dev: false /vitest@0.24.5(jsdom@20.0.3): @@ -35806,7 +36039,7 @@ packages: tinybench: 2.4.0 tinypool: 0.3.1 tinyspy: 1.1.1 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) vite-node: 0.28.5(@types/node@18.15.10) why-is-node-running: 2.2.2 transitivePeerDependencies: @@ -35871,7 +36104,7 @@ packages: tinybench: 2.4.0 tinypool: 0.4.0 tinyspy: 1.1.1 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) vite-node: 0.29.8(@types/node@18.15.10) why-is-node-running: 2.2.2 transitivePeerDependencies: @@ -35884,7 +36117,7 @@ packages: - terser dev: true - /vitest@0.33.0(less@4.2.0): + /vitest@0.33.0(less@4.1.3): resolution: {integrity: sha512-1CxaugJ50xskkQ0e969R/hW47za4YXDUfWJDxip1hwbnhUjYolpfUn2AMOulqG/Dtd9WYAtkHmM/m3yKVrEejQ==} engines: {node: '>=v14.18.0'} hasBin: true @@ -35929,15 +36162,15 @@ packages: chai: 4.3.7 debug: 4.3.4(supports-color@8.1.1) local-pkg: 0.4.3 - magic-string: 0.30.2 + magic-string: 0.30.1 pathe: 1.1.1 picocolors: 1.0.0 std-env: 3.3.3 strip-literal: 1.0.1 tinybench: 2.5.0 tinypool: 0.6.0 - vite: 4.4.9(@types/node@18.15.10)(less@4.2.0) - vite-node: 0.33.0(@types/node@18.15.10)(less@4.2.0) + vite: 4.4.6(@types/node@18.15.10)(less@4.1.3) + vite-node: 0.33.0(@types/node@18.15.10)(less@4.1.3) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -35987,7 +36220,7 @@ packages: engines: {vscode: ^1.52.0} dependencies: minimatch: 3.1.2 - semver: 7.5.4 + semver: 7.5.3 vscode-languageserver-protocol: 3.16.0 dev: true @@ -36170,7 +36403,7 @@ packages: '@webassemblyjs/wasm-parser': 1.11.1 acorn: 8.9.0 acorn-import-assertions: 1.8.0(acorn@8.9.0) - browserslist: 4.21.5 + browserslist: 4.21.9 chrome-trace-event: 1.0.3 enhanced-resolve: 5.12.0 es-module-lexer: 0.9.3 @@ -36193,7 +36426,7 @@ packages: - uglify-js dev: true - /webpack@5.76.2(esbuild@0.18.20): + /webpack@5.76.2(esbuild@0.17.19): resolution: {integrity: sha512-Th05ggRm23rVzEOlX8y67NkYCHa9nTNcwHPBhdg+lKG+mtiW7XgggjAeeLnADAe7mLjJ6LUNfgHAuRRh+Z6J7w==} engines: {node: '>=10.13.0'} hasBin: true @@ -36210,7 +36443,7 @@ packages: '@webassemblyjs/wasm-parser': 1.11.1 acorn: 8.9.0 acorn-import-assertions: 1.8.0(acorn@8.9.0) - browserslist: 4.21.5 + browserslist: 4.21.9 chrome-trace-event: 1.0.3 enhanced-resolve: 5.12.0 es-module-lexer: 0.9.3 @@ -36224,7 +36457,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.7(esbuild@0.18.20)(webpack@5.76.2) + terser-webpack-plugin: 5.3.7(esbuild@0.17.19)(webpack@5.76.2) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: diff --git a/services/workflows-service/CHANGELOG.md b/services/workflows-service/CHANGELOG.md index 7cefd7dc91..c92da7754c 100644 --- a/services/workflows-service/CHANGELOG.md +++ b/services/workflows-service/CHANGELOG.md @@ -1,5 +1,19 @@ # @ballerine/workflows-service +## 0.4.32 + +### Patch Changes + +- Updated dependencies [204b5479] + - @ballerine/common@0.5.24 + +## 0.4.31 + +### Patch Changes + +- Updated dependencies [9d0c7f92] + - @ballerine/common@0.5.23 + ## 0.4.30 ### Patch Changes diff --git a/services/workflows-service/package.json b/services/workflows-service/package.json index 7c841726cd..a1aa3a518d 100644 --- a/services/workflows-service/package.json +++ b/services/workflows-service/package.json @@ -1,7 +1,7 @@ { "name": "@ballerine/workflows-service", "private": false, - "version": "0.4.30", + "version": "0.4.32", "description": "workflow-service", "scripts": { "spellcheck": "cspell \"*\"", @@ -41,7 +41,7 @@ "@aws-sdk/client-s3": "3.325.0", "@aws-sdk/lib-storage": "3.325.0", "@aws-sdk/s3-request-presigner": "3.325.0", - "@ballerine/common": "0.5.22", + "@ballerine/common": "0.6.7", "@ballerine/workflow-core": "0.4.30", "@ballerine/workflow-node-sdk": "0.4.16", "@faker-js/faker": "^7.6.0", diff --git a/services/workflows-service/src/common/guards/verify-unified-api-signature.guard.ts b/services/workflows-service/src/common/guards/verify-unified-api-signature.guard.ts index 8a51c3b05d..178fe3a7de 100644 --- a/services/workflows-service/src/common/guards/verify-unified-api-signature.guard.ts +++ b/services/workflows-service/src/common/guards/verify-unified-api-signature.guard.ts @@ -1,7 +1,7 @@ import { CanActivate, ExecutionContext, Injectable, UnauthorizedException } from '@nestjs/common'; import { Request } from 'express'; import { env } from '@/env'; -import { verifySignature } from '@ballerine/common'; +import { verifySignature } from '../utils/verify-signature'; @Injectable() export class VerifyUnifiedApiSignatureGuard implements CanActivate { diff --git a/packages/common/src/utils/verify-signature/index.ts b/services/workflows-service/src/common/utils/verify-signature/index.ts similarity index 100% rename from packages/common/src/utils/verify-signature/index.ts rename to services/workflows-service/src/common/utils/verify-signature/index.ts diff --git a/packages/common/src/utils/verify-signature/verify-signature.test.ts b/services/workflows-service/src/common/utils/verify-signature/verify-signature.test.ts similarity index 95% rename from packages/common/src/utils/verify-signature/verify-signature.test.ts rename to services/workflows-service/src/common/utils/verify-signature/verify-signature.test.ts index 51915746c9..3119be21af 100644 --- a/packages/common/src/utils/verify-signature/verify-signature.test.ts +++ b/services/workflows-service/src/common/utils/verify-signature/verify-signature.test.ts @@ -1,6 +1,4 @@ -import { describe, expect, test } from 'vitest'; - -import { verifySignature } from '@/utils'; +import { verifySignature } from './verify-signature'; const cases: { name: string; diff --git a/packages/common/src/utils/verify-signature/verify-signature.ts b/services/workflows-service/src/common/utils/verify-signature/verify-signature.ts similarity index 100% rename from packages/common/src/utils/verify-signature/verify-signature.ts rename to services/workflows-service/src/common/utils/verify-signature/verify-signature.ts diff --git a/services/workflows-service/src/storage/get-file-storage-manager.ts b/services/workflows-service/src/storage/get-file-storage-manager.ts index 543334e8b4..33db66e2b7 100644 --- a/services/workflows-service/src/storage/get-file-storage-manager.ts +++ b/services/workflows-service/src/storage/get-file-storage-manager.ts @@ -12,6 +12,7 @@ import path from 'path'; import os from 'os'; import { getSignedUrl } from '@aws-sdk/s3-request-presigner'; import { getSignedUrl as getSignedUrlCF } from 'aws-cloudfront-sign'; +import console from 'console'; export const manageFileByProvider = (processEnv: NodeJS.ProcessEnv) => { if (AwsS3FileConfig.isConfigured(processEnv)) { @@ -74,7 +75,7 @@ export const createPresignedUrlWithClient = async ({ service === 'cloudfront' && process.env.AWS_S3_CF_URL && process.env.AWS_S3_CF_KEYPAIR_ID && - process.env.AWS_S3_CF_PRIVATE_KEY + (process.env.AWS_S3_CF_PRIVATE_KEY || process.env.AWS_S3_CF_PRIVATE_KEY_BASE64) ) { return cloudfrontPresignedUrl({ fileNameInBucket, @@ -108,9 +109,21 @@ export const s3PresignedUrl = async ({ }; export const cloudfrontPresignedUrl = ({ fileNameInBucket }: { fileNameInBucket: string }) => { + const cfPrivateKey = + decodeFromBase64(process.env.AWS_S3_CF_PRIVATE_KEY_BASE64) || + (process.env.AWS_S3_CF_PRIVATE_KEY as string); + console.log('CloudFront Private Key: ' + cfPrivateKey); + return getSignedUrlCF(`${process.env.AWS_S3_CF_URL as string}/${fileNameInBucket}`, { keypairId: process.env.AWS_S3_CF_KEYPAIR_ID as string, expireTime: Date.now() + 1800 * 1000, - privateKeyString: process.env.AWS_S3_CF_PRIVATE_KEY as string, + privateKeyString: cfPrivateKey, }); }; + +const decodeFromBase64 = (encodedPrivateKey?: string): string | undefined => { + if (!encodedPrivateKey) { + return; + } + return Buffer.from(encodedPrivateKey, 'base64').toString('utf-8'); +}; diff --git a/services/workflows-service/src/workflow/workflow.service.ts b/services/workflows-service/src/workflow/workflow.service.ts index 8aad092cd1..c75b262283 100644 --- a/services/workflows-service/src/workflow/workflow.service.ts +++ b/services/workflows-service/src/workflow/workflow.service.ts @@ -54,6 +54,7 @@ import { DefaultContextSchema, getDocumentId, getDocumentsByCountry, + isObject, TDefaultSchemaDocumentPage, } from '@ballerine/common'; import { AppLoggerService } from '@/common/app-logger/app-logger.service'; @@ -86,7 +87,10 @@ const ajv = new Ajv({ strict: false, coerceTypes: true, }); -addFormats(ajv, { formats: ['email', 'uri', 'date'] }); +addFormats(ajv, { + formats: ['email', 'uri', 'date', 'date-time'], + keywords: true, +}); addKeywords(ajv); export const ResubmissionReason = { @@ -218,9 +222,33 @@ export class WorkflowService { doc => getDocumentId(doc, false) === getDocumentId(document, false), ); + const propertiesSchema = { + ...(documentByCountry?.propertiesSchema ?? {}), + properties: Object.fromEntries( + Object.entries(documentByCountry?.propertiesSchema?.properties ?? {}).map( + ([key, value]) => { + if (!(key in document.properties)) return [key, value]; + if (!isObject(value) || !Array.isArray(value.enum) || value.type !== 'string') + return [key, value]; + + return [ + key, + { + ...value, + dropdownOptions: value.enum.map(item => ({ + value: item, + label: item, + })), + }, + ]; + }, + ), + ), + }; + return { ...document, - propertiesSchema: documentByCountry?.propertiesSchema ?? {}, + propertiesSchema, }; }, ), @@ -678,10 +706,24 @@ export class WorkflowService { ), }; - this.__validateWorkflowDefinitionContext(workflowDef, context); + this.__validateWorkflowDefinitionContext(workflowDef, { + ...context, + documents: context?.documents?.map( + (document: DefaultContextSchema['documents'][number]) => ({ + ...document, + type: + document?.type === 'unknown' && document?.decision?.status === 'approved' + ? undefined + : document?.type, + }), + ), + }); // @ts-ignore data?.context?.documents?.forEach(({ propertiesSchema, ...document }) => { + if (document?.decision?.status === 'revision' || document?.decision?.status === 'rejected') + return; + if (!Object.keys(propertiesSchema ?? {})?.length) return; const validatePropertiesSchema = ajv.compile(propertiesSchema ?? {}); @@ -1560,7 +1602,9 @@ export class WorkflowService { const workflowData = await this.workflowRuntimeDataRepository.findLastActive(query); - this.logger.log('Last active workflow', { workflowId: workflowData ? workflowData.id : null }); + this.logger.log('Last active workflow: ', { + workflowId: workflowData ? workflowData.id : null, + }); return workflowData ? workflowData : null; } diff --git a/websites/docs/src/pages/en/learn/creating-a-kyc-flow-and-deploying-it.mdx b/websites/docs/src/pages/en/learn/creating-a-kyc-flow-and-deploying-it.mdx index 676ec28e64..92cd08fe88 100644 --- a/websites/docs/src/pages/en/learn/creating-a-kyc-flow-and-deploying-it.mdx +++ b/websites/docs/src/pages/en/learn/creating-a-kyc-flow-and-deploying-it.mdx @@ -27,17 +27,17 @@ In this guide, we will start a new project, create a KYC flow, customize its UI For the purpose of this guide we'll be using a clean Vite + TypeScript template. Run the following command in your working directory to create a new project: - - - @@ -52,19 +52,19 @@ Now, remove everything but `main.ts` and `vite-env.d.ts` from the `src` director Make sure you run the following command in the root of the project we've created in the previous step. - - - ## Creating a KYC flow @@ -117,7 +117,12 @@ flows { name: 'document-selection', id: 'document-selection', - documentOptions: ['id_card'], + documentOptions: [ + { + type: 'id_card', + kind: 'id_card', + } + ], }, { name: 'document-photo', @@ -145,7 +150,11 @@ flows // mount(flowName: string, elementId: string); // flowName matches the flow name specified in uiConfig. // elementId is the id of the element to mount the flow into, the id of the div we've added in index.html. - flows.mount('my-kyc-flow', 'kyc-container', {}).then(); + flows.mount({ + flowName: 'my-kyc-flow', + elementId: 'kyc-container', + useModal: true, + }); });`} /> @@ -209,7 +218,12 @@ flows { name: 'document-selection', id: 'document-selection', - documentOptions: ['id_card'], + documentOptions: [ + { + type: 'id_card', + kind: 'id_card', + } + ], }, { name: 'document-photo', @@ -237,7 +251,11 @@ flows // mount(flowName: string, elementId: string); // flowName matches the flow name specified in uiConfig. // elementId is the id of the element to mount the flow into, the id of the div we've added in index.html. - flows.mount('my-kyc-flow', 'kyc-container', {}).then(); + flows.mount({ + flowName: 'my-kyc-flow', + elementId: 'kyc-container', + useModal: true, + }); });`} /> @@ -302,7 +320,12 @@ flows { name: 'document-selection', id: 'document-selection', - documentOptions: ['id_card'], + documentOptions: [ + { + type: 'id_card', + kind: 'id_card', + } + ], }, { name: 'document-photo', @@ -330,7 +353,11 @@ flows // mount(flowName: string, elementId: string); // flowName matches the flow name specified in uiConfig. // elementId is the id of the element to mount the flow into, the id of the div we've added in index.html. - flows.mount('my-kyc-flow', 'kyc-container', {}).then(); + flows.mount({ + flowName: 'my-kyc-flow', + elementId: 'kyc-container', + useModal: true, + }); });`} /> @@ -344,17 +371,17 @@ Now that we've created our flow, let's deploy it to the web. For the purpose of 1. Build the project - doing so will generate a `dist` directory at the root of the project. - - -